diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app_log.txt b/app_log.txt new file mode 100644 index 0000000..ecca5c8 --- /dev/null +++ b/app_log.txt @@ -0,0 +1,2 @@ +command line: get_report 192.168.3.101 Reports 6 +get_report: stb_init() 192.168.3.101 diff --git a/config/__init__.py b/config/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/config/config.py b/config/config.py new file mode 100644 index 0000000..642cb20 --- /dev/null +++ b/config/config.py @@ -0,0 +1,24 @@ +''' +Config +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + +Config = { + # LOGS + 'runtestLog': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/logs/', + 'streamserverLog': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/logs/streamserverlog.log', + 'stbserverLog': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/logs/stbextractserverlog.log', + 'verificationserverLog': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/logs/verificationserverlog.log', + 'rcuLog': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/logs/rculog.log', + # RCU INFO + 'ipRCU': '10.184.130.13', + 'portRCU': '8000', + # PATHS + 'serverName': 'http://localhost:5000/', + 'STBserverName': 'http://localhost:9898/', + 'stbappPath': "E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe", + 'exctractorappPath': "E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe", + 'streamsLocation': "E:/GeorgiaAdSmart/L4D4/SpecificStreams/", + 'streamSpecs': "-mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1", + 'extractorReports': 'E:/GeorgiaAdSmart/AutoSmart/work/Python/Adsmart-poc/autosmart_v2/servers/stbreports/', +} diff --git a/config/configurators.py b/config/configurators.py new file mode 100644 index 0000000..3ed2779 --- /dev/null +++ b/config/configurators.py @@ -0,0 +1,29 @@ +## Author: Kud01 +## Date: 11/07/2018 + +from ConfigParser import SafeConfigParser +import logging + +config_file="config/config.ini" + +logger = logging.getLogger('autosmart') + +class configurators: + def __init__(self): + try: + self.config = SafeConfigParser() + self.config.read(config_file) + except Exception as err: + logger.error("Error opening config file:" + config_file) + logger.debug(self.config.sections()) + + def get_config(self,section,attribute): + if(self.config.has_option(section,attribute)): + logger.info("Successfully retrieved: [%s][%s]",section,attribute) + return (self.config.get(section,attribute)) + else: + logger.error("config items not found: [%s][%s]",section,attribute) + return None + + + diff --git a/config/verification_config.py b/config/verification_config.py new file mode 100644 index 0000000..c10e3e2 --- /dev/null +++ b/config/verification_config.py @@ -0,0 +1,3 @@ +verification_config = { + "downloaded_assets": "downloaded assets" +} \ No newline at end of file diff --git a/function.py b/function.py new file mode 100644 index 0000000..5c3ff28 --- /dev/null +++ b/function.py @@ -0,0 +1,188 @@ +''' +VERIFICATION FUNCTION - NOT USED IN AUTOMATION FRAMEWORK +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' +#! /usr/bin/python + +from bs4 import BeautifulSoup +import sys +import os + + +class Results: + def __init__(self, file_name): + self.file_name = file_name + self.soup = None + self.tables = [] + self.__create_soup() + + def __create_soup(self): + + fp = open(self.file_name,"r") + content = fp.read() + fp.close() + self.soup = BeautifulSoup(content,"html.parser") #html5lib + + def get_paragraphs(self): + self.paragraphs = self.soup.find_all("p") + return self.paragraphs + + def get_tables(self): + self.tables = self.soup.find_all("table") + return self.tables + + def get_column_names(self,table): + column_names = [i.text for i in table.find_all("th")] + return column_names + + def get_table_rows(self,table): + return table.find_all("tr") + + def get_table_data(self,table_row,ignore=None): + row_data = table_row.find_all("td") + if row_data is not None: + row = [data.text for data in row_data] + return row + else: + return None + + +def get_value_from_para(file_name, str_com): + """ Returns value for the from main paragraph""" + result = Results(file_name) + result_paragraphs = result.get_paragraphs() + + for para_bs_tag in result_paragraphs: + #para_str = str(para_bs_tag.text) + para_str = para_bs_tag.text.encode('utf-8') + + if(para_str.find(str_com)>=0): + + if (str_com == "number of campaigns"): + para_split = para_str.split(":") + return para_split[1] + + elif(str_com == "unique assets"): + para_split = para_str.split() + par_split_colon = para_split[1].split(":") + return par_split_colon[1] + + elif(str_com == "downloaded assets"): + para_split = para_str.split() + par_split_colon = para_split[4].split(":") + return par_split_colon[1] + + elif(str_com == "deleted assets"): + para_split = para_str.split() + par_split_colon = para_split[7].split(":") + return par_split_colon[1] + + elif(str_com == "total assets"): + para_split = para_str.split() + return para_split[11] + + + print("--------------------------------------------") + print (" ", "Incorrect Argument -", str_com) + print("--------------------------------------------") + return None + +def get_value_from_row(file_name, header, unique_id, coloumn): + """ Returns value from any row using above arguments""" + """ example arguments - <901> """ + campaign_found =0 + + cdb_table = {"Campaigns":0, "CRTs":1, "Copy_Rotation":2, "Assets":3} + + tab_col = {'Campaigns' :{"Camp_ID": 0, "Household Cap": 4, "Household Count":5, "Spacing": 7, "Daily Cap":8, "Daily Count":9}, + 'CRTs' :{"Camp_ID": 0, "Expiration Date": 1, "Deletion Time":2, "Daily Count":3, "Household Count": 4}, + 'Copy_Rotation' :{"Camp_ID": 0, "Order Number":5, "Max Impressions":6, "Used Impressions":7, "Start Date":8, "End Date":9, "Last Shown": 10 }} + + if(tab_col.get(header,{}).get(coloumn) == None): + print("Incorrect Arguments - ", header, unique_id, coloumn) + sys.exit(0) + else: + col_idx = tab_col.get(header,{}).get(coloumn) + + for tab_idx in cdb_table: + if(tab_idx == header): + break + + res1 = Results(file_name) + res1_tables = res1.get_tables() + #column_names_1 = res1.get_column_names(res1_tables[cdb_table[tab_idx]]) + res1_table_rows = res1.get_table_rows(res1_tables[cdb_table[tab_idx]]) + + for res1_row in res1_table_rows: + data1 = res1.get_table_data(res1_row) + + if len(data1): + if data1[0] == unique_id: + campaign_found = 1 + return data1[col_idx] + + if campaign_found !=1: + print("------------------------------------") + print (" ", "Argument",unique_id, "not found!") + print("------------------------------------") + sys.exit(0) + + +def get_value_under_table(file_name, header, str_com): + '''Finds the value under specified table for a specific item and returns it's value''' + '''
''' + + values_found=[] + + cdb_table = {"Campaigns":0, "CRTs":1, "Copy Rotation":2} + + for tab_idx in cdb_table: + if tab_idx != header and str_com != "number of campaigns": + print("Incorrect Arguments - ", header, str_com) + sys.exit(0) + + res2 = Results(file_name) + res2_para = res2.get_paragraphs() + for para_bs_tag in res2_para: + para_str = para_bs_tag.text.encode('utf-8') + if para_str.find(str_com) >= 0 and str_com == "number of campaigns": + para_split = para_str.split(":") + values_found.append(para_split[1]) + + if header == "Campaigns" : + return values_found[1] + if header == "CRTs": + return values_found[2] + if header == "Copy Rotation": + return values_found[3] + + +def result_in_html(test_name, Previous_Data,Current_Data, Expected_Data): + + HTMLFILE = 'AdSmart Test result.html' + f = open(HTMLFILE, "a+") + + table_data = [] + table_data.append([test_name, Previous_Data, Current_Data, Expected_Data, "Pass" if(Current_Data == str(Expected_Data)) else "Fail"]) + + if (os.stat(HTMLFILE).st_size ==0): + htmlcode = HTML.table(table_data, + header_row = ['Test Name', 'Previous Data', 'Current Data', 'Expected Data','Result'] , + col_width= ['10%', '10%', '10%', '10%', '10%'], + col_align= ['left', 'center', 'center', 'center', 'center'], + col_styles= ['', '', '', '', 'background-color:green' if(Current_Data == str(Expected_Data)) else 'background-color:red' ]) + else: + htmlcode = HTML.table(table_data, + col_width= ['10%', '10%', '10%', '10%', '10%'], + col_align= ['left', 'center', 'center', 'center', 'center'], + col_styles= ['', '', '', '', 'background-color:green' if(Current_Data == str(Expected_Data)) else 'background-color:red' ]) + + f.write(htmlcode) + #f.write(htmlcode + '

') + + + f.close() + + + + diff --git a/html.py b/html.py new file mode 100644 index 0000000..ba39cd7 --- /dev/null +++ b/html.py @@ -0,0 +1,493 @@ +#!/usr/bin/python +# -*- coding: iso-8859-1 -*- +""" +HTML.py - v0.04 2009-07-28 Philippe Lagadec + +This module provides a few classes to easily generate HTML code such as tables +and lists. + +Project website: http://www.decalage.info/python/html + +License: CeCILL (open-source GPL compatible), see source code for details. + http://www.cecill.info +""" + +__version__ = '0.04' +__date__ = '2009-07-28' +__author__ = 'Philippe Lagadec' + +#--- LICENSE ------------------------------------------------------------------ + +# Copyright Philippe Lagadec - see http://www.decalage.info/contact for contact info +# +# This module provides a few classes to easily generate HTML tables and lists. +# +# This software is governed by the CeCILL license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/or redistribute the software under the terms of the CeCILL +# license as circulated by CEA, CNRS and INRIA at the following URL +# "http://www.cecill.info". +# +# A copy of the CeCILL license is also provided in these attached files: +# Licence_CeCILL_V2-en.html and Licence_CeCILL_V2-fr.html +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# In this respect, the user's attention is drawn to the risks associated +# with loading, using, modifying and/or developing or reproducing the +# software by the user in light of its specific status of free software, +# that may mean that it is complicated to manipulate, and that also +# therefore means that it is reserved for developers and experienced +# professionals having in-depth computer knowledge. Users are therefore +# encouraged to load and test the software's suitability as regards their +# requirements in conditions enabling the security of their systems and/or +# data to be ensured and, more generally, to use and operate it in the +# same conditions as regards security. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL license and that you accept its terms. + + +#--- CHANGES ------------------------------------------------------------------ + +# 2008-10-06 v0.01 PL: - First version +# 2008-10-13 v0.02 PL: - added cellspacing and cellpadding to table +# - added functions to ease one-step creation of tables +# and lists +# 2009-07-21 v0.03 PL: - added column attributes and styles (first attempt) +# (thanks to an idea submitted by Michal Cernoevic) +# 2009-07-28 v0.04 PL: - improved column styles, workaround for Mozilla + + +#------------------------------------------------------------------------------- +#TODO: +# - method to return a generator (yield each row) instead of a single string +# - unicode support (input and output) +# - escape text in cells (optional) +# - constants for standard colors +# - use lxml to generate well-formed HTML ? +# - add classes/functions to generate a HTML page, paragraphs, headings, etc... + + +#--- THANKS -------------------------------------------------------------------- + +# - Michal Cernoevic, for the idea of column styles. + +#--- REFERENCES ---------------------------------------------------------------- + +# HTML 4.01 specs: http://www.w3.org/TR/html4/struct/tables.html + +# Colors: http://www.w3.org/TR/html4/types.html#type-color + +# Columns alignement and style, one of the oldest and trickiest bugs in Mozilla: +# https://bugzilla.mozilla.org/show_bug.cgi?id=915 + + +#--- CONSTANTS ----------------------------------------------------------------- + +# Table style to get thin black lines in Mozilla/Firefox instead of 3D borders +TABLE_STYLE_THINBORDER = "border: 1px solid #000000; border-collapse: collapse;" +#TABLE_STYLE_THINBORDER = "border: 1px solid #000000;" + + +#=== CLASSES =================================================================== + +class TableCell (object): + """ + a TableCell object is used to create a cell in a HTML table. (TD or TH) + + Attributes: + - text: text in the cell (may contain HTML tags). May be any object which + can be converted to a string using str(). + - header: bool, false for a normal data cell (TD), true for a header cell (TH) + - bgcolor: str, background color + - width: str, width + - align: str, horizontal alignement (left, center, right, justify or char) + - char: str, alignment character, decimal point if not specified + - charoff: str, see HTML specs + - valign: str, vertical alignment (top|middle|bottom|baseline) + - style: str, CSS style + - attribs: dict, additional attributes for the TD/TH tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.6 + """ + + def __init__(self, text="", bgcolor=None, header=False, width=None, + align=None, char=None, charoff=None, valign=None, style=None, + attribs=None): + """TableCell constructor""" + self.text = text + self.bgcolor = bgcolor + self.header = header + self.width = width + self.align = align + self.char = char + self.charoff = charoff + self.valign = valign + self.style = style + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table cell as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + if self.width: self.attribs['width'] = self.width + if self.align: self.attribs['align'] = self.align + if self.char: self.attribs['char'] = self.char + if self.charoff: self.attribs['charoff'] = self.charoff + if self.valign: self.attribs['valign'] = self.valign + if self.style: self.attribs['style'] = self.style + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.text: + text = str(self.text) + else: + # An empty cell should at least contain a non-breaking space + text = ' ' + if self.header: + return ' %s\n' % (attribs_str, text) + else: + return ' %s\n' % (attribs_str, text) + +#------------------------------------------------------------------------------- + +class TableRow (object): + """ + a TableRow object is used to create a row in a HTML table. (TR tag) + + Attributes: + - cells: list, tuple or any iterable, containing one string or TableCell + object for each cell + - header: bool, true for a header row (TH), false for a normal data row (TD) + - bgcolor: str, background color + - col_align, col_valign, col_char, col_charoff, col_styles: see Table class + - attribs: dict, additional attributes for the TR tag + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.5 + """ + + def __init__(self, cells=None, bgcolor=None, header=False, attribs=None, + col_align=None, col_valign=None, col_char=None, + col_charoff=None, col_styles=None): + """TableCell constructor""" + self.bgcolor = bgcolor + self.cells = cells + self.header = header + self.col_align = col_align + self.col_valign = col_valign + self.col_char = col_char + self.col_charoff = col_charoff + self.col_styles = col_styles + self.attribs = attribs + if attribs==None: + self.attribs = {} + + def __str__(self): + """return the HTML code for the table row as a string""" + attribs_str = "" + if self.bgcolor: self.attribs['bgcolor'] = self.bgcolor + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = ' \n' % attribs_str + for cell in self.cells: + col = self.cells.index(cell) # cell column index + if not isinstance(cell, TableCell): + cell = TableCell(cell, header=self.header) + # apply column alignment if specified: + if self.col_align and cell.align==None: + cell.align = self.col_align[col] + if self.col_char and cell.char==None: + cell.char = self.col_char[col] + if self.col_charoff and cell.charoff==None: + cell.charoff = self.col_charoff[col] + if self.col_valign and cell.valign==None: + cell.valign = self.col_valign[col] + # apply column style if specified: + if self.col_styles and cell.style==None: + cell.style = self.col_styles[col] + result += str(cell) + result += ' \n' + return result + +#------------------------------------------------------------------------------- + +class Table (object): + """ + a Table object is used to create a HTML table. (TABLE tag) + + Attributes: + - rows: list, tuple or any iterable, containing one iterable or TableRow + object for each row + - header_row: list, tuple or any iterable, containing the header row (optional) + - border: str or int, border width + - style: str, table style in CSS syntax (thin black borders by default) + - width: str, width of the table on the page + - attribs: dict, additional attributes for the TABLE tag + - col_width: list or tuple defining width for each column + - col_align: list or tuple defining horizontal alignment for each column + - col_char: list or tuple defining alignment character for each column + - col_charoff: list or tuple defining charoff attribute for each column + - col_valign: list or tuple defining vertical alignment for each column + - col_styles: list or tuple of HTML styles for each column + + Reference: http://www.w3.org/TR/html4/struct/tables.html#h-11.2.1 + """ + + def __init__(self, rows=None, border='1', style=None, width=None, + cellspacing=None, cellpadding=4, attribs=None, header_row=None, + col_width=None, col_align=None, col_valign=None, + col_char=None, col_charoff=None, col_styles=None): + """TableCell constructor""" + self.border = border + self.style = style + # style for thin borders by default + if style == None: self.style = TABLE_STYLE_THINBORDER + self.width = width + self.cellspacing = cellspacing + self.cellpadding = cellpadding + self.header_row = header_row + self.rows = rows + if not rows: self.rows = [] + self.attribs = attribs + if not attribs: self.attribs = {} + self.col_width = col_width + self.col_align = col_align + self.col_char = col_char + self.col_charoff = col_charoff + self.col_valign = col_valign + self.col_styles = col_styles + + def __str__(self): + """return the HTML code for the table as a string""" + attribs_str = "" + if self.border: self.attribs['border'] = self.border + if self.style: self.attribs['style'] = self.style + if self.width: self.attribs['width'] = self.width + if self.cellspacing: self.attribs['cellspacing'] = self.cellspacing + if self.cellpadding: self.attribs['cellpadding'] = self.cellpadding + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + result = '\n' % attribs_str + # insert column tags and attributes if specified: + if self.col_width: + for width in self.col_width: + result += ' \n' % width + # The following code would also generate column attributes for style + # and alignement according to HTML4 specs, + # BUT it is not supported completely (only width) on Mozilla Firefox: + # see https://bugzilla.mozilla.org/show_bug.cgi?id=915 +## n_cols = max(len(self.col_styles), len(self.col_width), +## len(self.col_align), len(self.col_valign)) +## for i in range(n_cols): +## col = '' +## try: +## if self.col_styles[i]: +## col += ' style="%s"' % self.col_styles[i] +## except: pass +## try: +## if self.col_width[i]: +## col += ' width="%s"' % self.col_width[i] +## except: pass +## try: +## if self.col_align[i]: +## col += ' align="%s"' % self.col_align[i] +## except: pass +## try: +## if self.col_valign[i]: +## col += ' valign="%s"' % self.col_valign[i] +## except: pass +## result += '\n' % col + # First insert a header row if specified: + if self.header_row: + if not isinstance(self.header_row, TableRow): + result += str(TableRow(self.header_row, header=True)) + else: + result += str(self.header_row) + # Then all data rows: + for row in self.rows: + if not isinstance(row, TableRow): + row = TableRow(row) + # apply column alignments and styles to each row if specified: + # (Mozilla bug workaround) + if self.col_align and not row.col_align: + row.col_align = self.col_align + if self.col_char and not row.col_char: + row.col_char = self.col_char + if self.col_charoff and not row.col_charoff: + row.col_charoff = self.col_charoff + if self.col_valign and not row.col_valign: + row.col_valign = self.col_valign + if self.col_styles and not row.col_styles: + row.col_styles = self.col_styles + result += str(row) + result += '' + return result + + +#------------------------------------------------------------------------------- + +class List (object): + """ + a List object is used to create an ordered or unordered list in HTML. + (UL/OL tag) + + Attributes: + - lines: list, tuple or any iterable, containing one string for each line + - ordered: bool, choice between an ordered (OL) or unordered list (UL) + - attribs: dict, additional attributes for the OL/UL tag + + Reference: http://www.w3.org/TR/html4/struct/lists.html + """ + + def __init__(self, lines=None, ordered=False, start=None, attribs=None): + """List constructor""" + if lines: + self.lines = lines + else: + self.lines = [] + self.ordered = ordered + self.start = start + if attribs: + self.attribs = attribs + else: + self.attribs = {} + + def __str__(self): + """return the HTML code for the list as a string""" + attribs_str = "" + if self.start: self.attribs['start'] = self.start + for attr in self.attribs: + attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) + if self.ordered: tag = 'OL' + else: tag = 'UL' + result = '<%s%s>\n' % (tag, attribs_str) + for line in self.lines: + result += '

  • %s\n' % str(line) + result += '\n' % tag + return result + + +##class Link (object): +## """ +## a Link object is used to create link in HTML. ( tag) +## +## Attributes: +## - text: str, text of the link +## - url: str, URL of the link +## - attribs: dict, additional attributes for the A tag +## +## Reference: http://www.w3.org/TR/html4 +## """ +## +## def __init__(self, text, url=None, attribs=None): +## """Link constructor""" +## self.text = text +## self.url = url +## if attribs: +## self.attribs = attribs +## else: +## self.attribs = {} +## +## def __str__(self): +## """return the HTML code for the link as a string""" +## attribs_str = "" +## if self.url: self.attribs['href'] = self.url +## for attr in self.attribs: +## attribs_str += ' %s="%s"' % (attr, self.attribs[attr]) +## return '%s' % (attribs_str, text) + + +#=== FUNCTIONS ================================================================ + +# much simpler definition of a link as a function: +def Link(text, url): + return '%s' % (url, text) + +def link(text, url): + return '%s' % (url, text) + +def table(*args, **kwargs): + 'return HTML code for a table as a string. See Table class for parameters.' + return str(Table(*args, **kwargs)) + +def list(*args, **kwargs): + 'return HTML code for a list as a string. See List class for parameters.' + return str(List(*args, **kwargs)) + + +#=== MAIN ===================================================================== + +# Show sample usage when this file is launched as a script. + +if __name__ == '__main__': + + # open an HTML file to show output in a browser + f = open('test.html', 'w') + + t = Table() + t.rows.append(TableRow(['A', 'B', 'C'], header=True)) + t.rows.append(TableRow(['D', 'E', 'F'])) + t.rows.append(('i', 'j', 'k')) + f.write(str(t) + '

    \n') + print (str(t)) + print ('-'*79) + + t2 = Table([ + ('1', '2'), + ['3', '4'] + ], width='100%', header_row=('col1', 'col2'), + col_width=('', '75%')) + f.write(str(t2) + '

    \n') + print (t2) + print ('-'*79) + + t2.rows.append(['5', '6']) + t2.rows[1][1] = TableCell('new', bgcolor='red') + t2.rows.append(TableRow(['7', '8'], attribs={'align': 'center'})) + f.write(str(t2) + '

    \n') + print (t2) + print ('-'*79) + + # sample table with column attributes and styles: + table_data = [ + ['Smith', 'John', 30, 4.5], + ['Carpenter', 'Jack', 47, 7], + ['Johnson', 'Paul', 62, 10.55], + ] + htmlcode = HTML.table(table_data, + header_row = ['Last name', 'First name', 'Age', 'Score'], + col_width=['', '20%', '10%', '10%'], + col_align=['left', 'center', 'right', 'char'], + col_styles=['font-size: large', '', 'font-size: small', 'background-color:yellow']) + f.write(htmlcode + '

    \n') + print (htmlcode) + print ('-'*79) + + def gen_table_squares(n): + """ + Generator to create table rows for integers from 1 to n + """ +## # First, header row: +## yield TableRow(('x', 'square(x)'), header=True, bgcolor='blue') +## # Then all rows: + for x in range(1, n+1): + yield (x, x*x) + + t = Table(rows=gen_table_squares(10), header_row=('x', 'square(x)')) + f.write(str(t) + '

    \n') + + print ('-'*79) + l = List(['aaa', 'bbb', 'ccc']) + f.write(str(l) + '

    \n') + l.ordered = True + f.write(str(l) + '

    \n') + l.start=10 + f.write(str(l) + '

    \n') + + f.close() diff --git a/logs/__init__.py b/logs/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/logs/rculog.log b/logs/rculog.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/stbextractserverlog.log b/logs/stbextractserverlog.log new file mode 100644 index 0000000..309a1e1 --- /dev/null +++ b/logs/stbextractserverlog.log @@ -0,0 +1,191 @@ +2019-08-13 13:38:28,338 - 8956 - MainProcess - 10184 - ERROR - STB Extractor Application running. Ending process +2019-08-13 13:38:28,354 - 8956 - MainProcess - 10184 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:38:28,354 - 8956 - MainProcess - 10184 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:38:28,572 - 8956 - MainProcess - 10184 - INFO - Command successful +2019-08-13 13:38:28,588 - 8956 - MainProcess - 9048 - ERROR - STB Extractor Application running. Ending process +2019-08-13 13:38:28,619 - 8956 - MainProcess - 9048 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:38:28,619 - 8956 - MainProcess - 9048 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:38:28,619 - 8956 - MainProcess - 9048 - INFO - Command successful +2019-08-13 13:42:37,385 - 8956 - MainProcess - 11200 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:42:37,385 - 8956 - MainProcess - 11200 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:42:37,385 - 8956 - MainProcess - 11200 - INFO - Command successful +2019-08-13 13:42:37,447 - 8956 - MainProcess - 13832 - ERROR - STB Extractor Application running. Ending process +2019-08-13 13:42:37,447 - 8956 - MainProcess - 13832 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:42:37,447 - 8956 - MainProcess - 13832 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:42:37,447 - 8956 - MainProcess - 13832 - INFO - Command successful +2019-08-13 13:46:10,404 - 8956 - MainProcess - 12152 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:46:10,404 - 8956 - MainProcess - 12152 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:46:10,404 - 8956 - MainProcess - 12152 - INFO - Command successful +2019-08-13 13:46:10,467 - 8956 - MainProcess - 8320 - ERROR - STB Extractor Application running. Ending process +2019-08-13 13:46:10,467 - 8956 - MainProcess - 8320 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:46:10,467 - 8956 - MainProcess - 8320 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:46:10,467 - 8956 - MainProcess - 8320 - INFO - Command successful +2019-08-13 13:56:26,346 - 8956 - MainProcess - 10344 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:56:26,346 - 8956 - MainProcess - 10344 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:56:26,346 - 8956 - MainProcess - 10344 - INFO - Command successful +2019-08-13 13:56:26,408 - 8956 - MainProcess - 9760 - ERROR - STB Extractor Application running. Ending process +2019-08-13 13:56:26,408 - 8956 - MainProcess - 9760 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:56:26,408 - 8956 - MainProcess - 9760 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 13:56:26,408 - 8956 - MainProcess - 9760 - INFO - Command successful +2019-08-13 14:05:53,993 - 8956 - MainProcess - 14048 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:05:53,993 - 8956 - MainProcess - 14048 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:05:53,993 - 8956 - MainProcess - 14048 - INFO - Command successful +2019-08-13 14:05:54,056 - 8956 - MainProcess - 7892 - ERROR - STB Extractor Application running. Ending process +2019-08-13 14:05:54,056 - 8956 - MainProcess - 7892 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:05:54,056 - 8956 - MainProcess - 7892 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:05:54,056 - 8956 - MainProcess - 7892 - INFO - Command successful +2019-08-13 14:10:54,740 - 8956 - MainProcess - 11060 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:10:54,740 - 8956 - MainProcess - 11060 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:10:54,756 - 8956 - MainProcess - 11060 - INFO - Command successful +2019-08-13 14:10:54,802 - 8956 - MainProcess - 180 - ERROR - STB Extractor Application running. Ending process +2019-08-13 14:10:54,802 - 8956 - MainProcess - 180 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:10:54,802 - 8956 - MainProcess - 180 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 14:10:54,802 - 8956 - MainProcess - 180 - INFO - Command successful +2019-08-13 15:28:15,947 - 8956 - MainProcess - 15276 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 15:28:15,947 - 8956 - MainProcess - 15276 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 15:28:15,979 - 8956 - MainProcess - 15276 - INFO - Command successful +2019-08-13 15:28:16,042 - 8956 - MainProcess - 10988 - ERROR - STB Extractor Application running. Ending process +2019-08-13 15:28:16,042 - 8956 - MainProcess - 10988 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 15:28:16,042 - 8956 - MainProcess - 10988 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 15:28:16,042 - 8956 - MainProcess - 10988 - INFO - Command successful +2019-08-13 16:45:27,138 - 8956 - MainProcess - 9996 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:45:27,138 - 8956 - MainProcess - 9996 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:45:27,174 - 8956 - MainProcess - 9996 - INFO - Command successful +2019-08-13 16:45:27,230 - 8956 - MainProcess - 12116 - ERROR - STB Extractor Application running. Ending process +2019-08-13 16:45:27,230 - 8956 - MainProcess - 12116 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:45:27,230 - 8956 - MainProcess - 12116 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:45:27,234 - 8956 - MainProcess - 12116 - INFO - Command successful +2019-08-13 16:51:19,992 - 8956 - MainProcess - 9640 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:51:19,993 - 8956 - MainProcess - 9640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:51:19,997 - 8956 - MainProcess - 9640 - INFO - Command successful +2019-08-13 16:51:20,017 - 8956 - MainProcess - 12040 - ERROR - STB Extractor Application running. Ending process +2019-08-13 16:51:20,055 - 8956 - MainProcess - 12040 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:51:20,055 - 8956 - MainProcess - 12040 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:51:20,059 - 8956 - MainProcess - 12040 - INFO - Command successful +2019-08-13 16:57:35,987 - 8956 - MainProcess - 13752 - ERROR - STB Extractor Application running. Ending process +2019-08-13 16:57:35,987 - 8956 - MainProcess - 13752 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:57:35,987 - 8956 - MainProcess - 13752 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:57:35,993 - 8956 - MainProcess - 13752 - INFO - Command successful +2019-08-13 16:57:36,061 - 8956 - MainProcess - 13156 - ERROR - STB Extractor Application running. Ending process +2019-08-13 16:57:36,061 - 8956 - MainProcess - 13156 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:57:36,061 - 8956 - MainProcess - 13156 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 16:57:36,068 - 8956 - MainProcess - 13156 - INFO - Command successful +2019-08-13 17:07:06,887 - 8956 - MainProcess - 13604 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:07:06,887 - 8956 - MainProcess - 13604 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:07:06,891 - 8956 - MainProcess - 13604 - INFO - Command successful +2019-08-13 17:07:06,941 - 8956 - MainProcess - 11276 - ERROR - STB Extractor Application running. Ending process +2019-08-13 17:07:06,944 - 8956 - MainProcess - 11276 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:07:06,946 - 8956 - MainProcess - 11276 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:07:06,950 - 8956 - MainProcess - 11276 - INFO - Command successful +2019-08-13 17:13:21,493 - 8956 - MainProcess - 9460 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:13:21,493 - 8956 - MainProcess - 9460 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:13:21,499 - 8956 - MainProcess - 9460 - INFO - Command successful +2019-08-13 17:13:21,549 - 8956 - MainProcess - 5868 - ERROR - STB Extractor Application running. Ending process +2019-08-13 17:13:21,549 - 8956 - MainProcess - 5868 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:13:21,549 - 8956 - MainProcess - 5868 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-13 17:13:21,555 - 8956 - MainProcess - 5868 - INFO - Command successful +2019-08-14 15:35:08,927 - 8956 - MainProcess - 6584 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:35:08,927 - 8956 - MainProcess - 6584 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:35:08,990 - 8956 - MainProcess - 6584 - INFO - Command successful +2019-08-14 15:35:09,036 - 8956 - MainProcess - 5896 - ERROR - STB Extractor Application running. Ending process +2019-08-14 15:35:09,036 - 8956 - MainProcess - 5896 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:35:09,036 - 8956 - MainProcess - 5896 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:35:09,052 - 8956 - MainProcess - 5896 - INFO - Command successful +2019-08-14 15:41:07,875 - 8956 - MainProcess - 13040 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:41:07,875 - 8956 - MainProcess - 13040 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:41:07,875 - 8956 - MainProcess - 13040 - INFO - Command successful +2019-08-14 15:41:07,938 - 8956 - MainProcess - 10516 - ERROR - STB Extractor Application running. Ending process +2019-08-14 15:41:07,938 - 8956 - MainProcess - 10516 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:41:07,938 - 8956 - MainProcess - 10516 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:41:07,938 - 8956 - MainProcess - 10516 - INFO - Command successful +2019-08-14 15:47:23,683 - 8956 - MainProcess - 13464 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:47:23,683 - 8956 - MainProcess - 13464 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:47:23,683 - 8956 - MainProcess - 13464 - INFO - Command successful +2019-08-14 15:47:23,730 - 8956 - MainProcess - 10536 - ERROR - STB Extractor Application running. Ending process +2019-08-14 15:47:23,730 - 8956 - MainProcess - 10536 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:47:23,730 - 8956 - MainProcess - 10536 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 15:47:23,744 - 8956 - MainProcess - 10536 - INFO - Command successful +2019-08-14 17:19:28,312 - 8956 - MainProcess - 11512 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 17:19:28,312 - 8956 - MainProcess - 11512 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 17:19:28,344 - 8956 - MainProcess - 11512 - INFO - Command successful +2019-08-14 17:19:28,391 - 8956 - MainProcess - 13468 - ERROR - STB Extractor Application running. Ending process +2019-08-14 17:19:28,407 - 8956 - MainProcess - 13468 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 17:19:28,407 - 8956 - MainProcess - 13468 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-14 17:19:28,421 - 8956 - MainProcess - 13468 - INFO - Command successful +2019-08-15 10:40:40,627 - 8956 - MainProcess - 11496 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 10:40:40,627 - 8956 - MainProcess - 11496 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 10:40:40,690 - 8956 - MainProcess - 11496 - INFO - Command successful +2019-08-15 10:40:40,752 - 8956 - MainProcess - 12620 - ERROR - STB Extractor Application running. Ending process +2019-08-15 10:40:40,752 - 8956 - MainProcess - 12620 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 10:40:40,752 - 8956 - MainProcess - 12620 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 10:40:40,752 - 8956 - MainProcess - 12620 - INFO - Command successful +2019-08-15 11:55:52,130 - 8956 - MainProcess - 10924 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 11:55:52,130 - 8956 - MainProcess - 10924 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 11:55:52,161 - 8956 - MainProcess - 10924 - INFO - Command successful +2019-08-15 11:55:52,191 - 8956 - MainProcess - 11628 - ERROR - STB Extractor Application running. Ending process +2019-08-15 11:55:52,223 - 8956 - MainProcess - 11628 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 11:55:52,223 - 8956 - MainProcess - 11628 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 11:55:52,223 - 8956 - MainProcess - 11628 - INFO - Command successful +2019-08-15 12:01:35,937 - 8956 - MainProcess - 11124 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:01:35,937 - 8956 - MainProcess - 11124 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:01:35,937 - 8956 - MainProcess - 11124 - INFO - Command successful +2019-08-15 12:01:36,000 - 8956 - MainProcess - 12876 - ERROR - STB Extractor Application running. Ending process +2019-08-15 12:01:36,000 - 8956 - MainProcess - 12876 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:01:36,000 - 8956 - MainProcess - 12876 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:01:36,000 - 8956 - MainProcess - 12876 - INFO - Command successful +2019-08-15 12:10:57,803 - 8956 - MainProcess - 3496 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:10:57,803 - 8956 - MainProcess - 3496 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:10:57,819 - 8956 - MainProcess - 3496 - INFO - Command successful +2019-08-15 12:10:57,865 - 8956 - MainProcess - 4972 - ERROR - STB Extractor Application running. Ending process +2019-08-15 12:10:57,881 - 8956 - MainProcess - 4972 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:10:57,881 - 8956 - MainProcess - 4972 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:10:57,881 - 8956 - MainProcess - 4972 - INFO - Command successful +2019-08-15 12:15:39,230 - 8956 - MainProcess - 5144 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:15:39,230 - 8956 - MainProcess - 5144 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:15:39,246 - 8956 - MainProcess - 5144 - INFO - Command successful +2019-08-15 12:15:39,292 - 8956 - MainProcess - 11672 - ERROR - STB Extractor Application running. Ending process +2019-08-15 12:15:39,292 - 8956 - MainProcess - 11672 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:15:39,292 - 8956 - MainProcess - 11672 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:15:39,292 - 8956 - MainProcess - 11672 - INFO - Command successful +2019-08-15 12:18:54,323 - 8956 - MainProcess - 13608 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:18:54,323 - 8956 - MainProcess - 13608 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:18:54,323 - 8956 - MainProcess - 13608 - INFO - Command successful +2019-08-15 12:18:54,339 - 8956 - MainProcess - 13708 - ERROR - STB Extractor Application running. Ending process +2019-08-15 12:18:54,371 - 8956 - MainProcess - 13708 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:18:54,371 - 8956 - MainProcess - 13708 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:18:54,387 - 8956 - MainProcess - 13708 - INFO - Command successful +2019-08-15 12:29:17,466 - 8956 - MainProcess - 12376 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:29:17,466 - 8956 - MainProcess - 12376 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:29:17,480 - 8956 - MainProcess - 12376 - INFO - Command successful +2019-08-15 12:29:17,528 - 8956 - MainProcess - 13816 - ERROR - STB Extractor Application running. Ending process +2019-08-15 12:29:17,528 - 8956 - MainProcess - 13816 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:29:17,528 - 8956 - MainProcess - 13816 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 12:29:17,543 - 8956 - MainProcess - 13816 - INFO - Command successful +2019-08-15 14:31:52,970 - 8956 - MainProcess - 1200 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:31:52,970 - 8956 - MainProcess - 1200 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:31:53,017 - 8956 - MainProcess - 1200 - INFO - Command successful +2019-08-15 14:31:53,065 - 8956 - MainProcess - 12204 - ERROR - STB Extractor Application running. Ending process +2019-08-15 14:31:53,065 - 8956 - MainProcess - 12204 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:31:53,065 - 8956 - MainProcess - 12204 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:31:53,079 - 8956 - MainProcess - 12204 - INFO - Command successful +2019-08-15 14:35:55,940 - 8956 - MainProcess - 10336 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:35:55,940 - 8956 - MainProcess - 10336 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:35:55,940 - 8956 - MainProcess - 10336 - INFO - Command successful +2019-08-15 14:35:55,987 - 8956 - MainProcess - 14460 - ERROR - STB Extractor Application running. Ending process +2019-08-15 14:35:56,003 - 8956 - MainProcess - 14460 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:35:56,003 - 8956 - MainProcess - 14460 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 14:35:56,019 - 8956 - MainProcess - 14460 - INFO - Command successful +2019-08-15 15:54:17,211 - 8956 - MainProcess - 12136 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 15:54:17,226 - 8956 - MainProcess - 12136 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 15:54:17,273 - 8956 - MainProcess - 12136 - INFO - Command successful +2019-08-15 15:54:17,351 - 8956 - MainProcess - 9608 - ERROR - STB Extractor Application running. Ending process +2019-08-15 15:54:17,351 - 8956 - MainProcess - 9608 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 15:54:17,351 - 8956 - MainProcess - 9608 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 15:54:17,368 - 8956 - MainProcess - 9608 - INFO - Command successful +2019-08-15 16:31:31,529 - 8956 - MainProcess - 15052 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 16:31:31,529 - 8956 - MainProcess - 15052 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 16:31:31,545 - 8956 - MainProcess - 15052 - INFO - Command successful +2019-08-15 16:31:31,607 - 8956 - MainProcess - 11404 - ERROR - STB Extractor Application running. Ending process +2019-08-15 16:31:31,607 - 8956 - MainProcess - 11404 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 16:31:31,607 - 8956 - MainProcess - 11404 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/Work/STB_Extractor.exe get_report 192.168.2.102 stbreports 100203 +2019-08-15 16:31:31,621 - 8956 - MainProcess - 11404 - INFO - Command successful diff --git a/logs/streamserverlog.log b/logs/streamserverlog.log new file mode 100644 index 0000000..7ceb1e5 --- /dev/null +++ b/logs/streamserverlog.log @@ -0,0 +1,459 @@ +2019-08-15 16:25:32,411 - 12568 - MainProcess - 14752 - INFO - creating +2019-08-15 16:25:50,036 - 12568 - MainProcess - 11640 - INFO - Starting Stream +2019-08-15 16:25:50,036 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:50,036 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:50,036 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:50,036 - 12568 - MainProcess - 11640 - INFO - Stream path found:Automation_clump1.ts +2019-08-15 16:25:50,082 - 12568 - MainProcess - 11640 - INFO - Stream player is already playing. Attempting to stop the stream and restart +2019-08-15 16:25:50,144 - 12568 - MainProcess - 11640 - INFO - we are here +2019-08-15 16:25:50,144 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,144 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,161 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,176 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,176 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,191 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,191 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,207 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,207 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,223 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,223 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,239 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,253 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,253 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,269 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,269 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,286 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,286 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,301 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,316 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,332 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,332 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,348 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,364 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,378 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,394 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,394 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,410 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,410 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,426 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,441 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,457 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,457 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,473 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,473 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,487 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,503 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,519 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,519 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,535 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,551 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,551 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,565 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,582 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,582 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,596 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,612 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,612 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,628 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,628 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,644 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,660 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,660 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,674 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,690 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,690 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,707 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,721 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,721 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,737 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,753 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,769 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,769 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,785 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,785 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,799 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,815 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,815 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,831 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,831 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,846 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,862 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,862 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,878 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,878 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,894 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,908 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,924 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,924 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,940 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,940 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,956 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,956 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,971 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:50,986 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,003 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,003 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,017 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,017 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,033 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,033 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,049 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,049 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,065 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,081 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,081 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,095 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,095 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,111 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,111 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,128 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,128 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,142 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,158 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,158 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,174 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,174 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,190 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,190 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,206 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,206 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,220 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,220 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,236 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,252 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,252 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,267 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,283 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,299 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,315 - 12568 - MainProcess - 11640 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,315 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,329 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,329 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,345 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,345 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,361 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,361 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,377 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,392 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,392 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,407 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,407 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,424 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,424 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,438 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,454 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,454 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,470 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,486 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,486 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,486 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,502 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,516 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,516 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,532 - 12568 - MainProcess - 11640 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Starting Stream +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Stream path found:Automation_clump1.ts +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Stream player is already playing. Attempting to stop the stream and restart +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Killing process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Stream Stopped111 +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - we are here +2019-08-15 16:25:51,549 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,563 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,579 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,579 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,595 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,611 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,611 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,627 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,641 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,641 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,657 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,673 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,673 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,688 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,704 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,704 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,720 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,736 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,736 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,750 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,766 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,766 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,766 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,766 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,782 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,798 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,798 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,813 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,813 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,828 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,845 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,845 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,861 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,861 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,875 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,875 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,891 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,907 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,923 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,923 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,937 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,937 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,953 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,970 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,970 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:51,984 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,000 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,000 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,016 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,032 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,032 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,048 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,062 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,062 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,078 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,078 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,094 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,094 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,109 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,125 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,125 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,141 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,157 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,171 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,171 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,171 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,187 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,203 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,203 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,219 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,234 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,234 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,250 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,266 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,282 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,282 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,282 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,296 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,312 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,312 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,328 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,328 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,344 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,344 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,359 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,375 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,391 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,405 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,421 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,421 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,437 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,437 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,453 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,469 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,469 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,483 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,483 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,500 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,500 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,515 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,530 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,530 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,546 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,546 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,562 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,562 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,578 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,592 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,592 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,608 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,608 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,625 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,640 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,655 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,655 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,655 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,671 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,671 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,687 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,687 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,703 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,703 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,733 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,733 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,733 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,749 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,749 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,765 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,765 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,780 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,780 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,780 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,796 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,796 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,812 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,812 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,826 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,826 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,842 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,842 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,858 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,874 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,890 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,890 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,890 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,904 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,904 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,921 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,921 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,936 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,951 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,951 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,951 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,967 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,967 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,983 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,999 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:52,999 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,013 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,013 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,013 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,029 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,046 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,046 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,061 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,061 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,061 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,076 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,076 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,092 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,092 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,108 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,108 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,124 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,124 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,138 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,138 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,138 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,154 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,170 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,170 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,186 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,186 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,201 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,201 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,201 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,217 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,233 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,233 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,233 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,247 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,247 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,263 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,263 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,263 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,279 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,279 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,295 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,295 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,295 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,311 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,311 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,325 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,325 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,342 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,342 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,358 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,358 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,358 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,372 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,372 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,388 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,388 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,388 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,404 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,404 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,420 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,420 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,420 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,434 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,434 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,450 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,450 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,450 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,467 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,467 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,482 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,497 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,497 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,513 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,513 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,529 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,529 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,529 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,545 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,559 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,559 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,559 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,575 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,575 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,591 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,591 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,607 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,607 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,622 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,622 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,638 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,638 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,654 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,654 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,654 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,668 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,668 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,684 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,684 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,700 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,700 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,716 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,716 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,732 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,732 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,732 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,746 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,746 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,763 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,779 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,779 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,793 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,793 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,809 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,809 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,809 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,825 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,841 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,841 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,857 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,857 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,871 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,871 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,888 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,888 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,888 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,903 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,903 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,918 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,918 - 12568 - MainProcess - 9396 - INFO - Command being run:E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,918 - 12568 - MainProcess - 9396 - INFO - Starting process: E:/GeorgiaAdSmart/AutoSmart/DtPlay/dtplay.exe E:/GeorgiaAdSmart/L4D4/SpecificStreams/Clump_Tests\Automation_clump1.ts -mf 1368 -mt DVBS -mc 2/3 -r 33790850 -t 2107 -i 1 +2019-08-15 16:25:53,934 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:53,934 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:53,934 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:53,934 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. +2019-08-15 16:25:53,934 - 12568 - MainProcess - 9396 - INFO - No stream found in stream directory. diff --git a/logs/verificationserverlog.log b/logs/verificationserverlog.log new file mode 100644 index 0000000..00a21b5 --- /dev/null +++ b/logs/verificationserverlog.log @@ -0,0 +1,9 @@ +2019-08-14 15:57:42,608 - 14428 - MainProcess - 11876 - INFO - Verifying value from top paragraph for slot ID =100201 attribute =downloaded assets expected value = 26 +2019-08-14 15:57:42,979 - 14428 - MainProcess - 11876 - INFO - downloaded assets +2019-08-14 15:57:42,980 - 14428 - MainProcess - 11876 - INFO - Teststep verification passed +2019-08-14 15:57:45,288 - 14428 - MainProcess - 4964 - INFO - Verifying value from top paragraph for slot ID =100201 attribute =downloaded assets expected value = 26 +2019-08-14 15:57:45,641 - 14428 - MainProcess - 4964 - INFO - downloaded assets +2019-08-14 15:57:45,641 - 14428 - MainProcess - 4964 - INFO - Teststep verification passed +2019-08-14 15:59:00,904 - 14428 - MainProcess - 11032 - INFO - Verifying value from top paragraph for slot ID =100201 attribute =downloaded assets expected value = 26 +2019-08-14 15:59:01,325 - 14428 - MainProcess - 11032 - INFO - downloaded assets +2019-08-14 15:59:01,326 - 14428 - MainProcess - 11032 - INFO - Teststep verification passed diff --git a/main.py b/main.py new file mode 100644 index 0000000..284927b --- /dev/null +++ b/main.py @@ -0,0 +1,25 @@ +#! /usr/bin/python +from bs4 import BeautifulSoup +import sys +import function as cdb +import HTML + + +if __name__=="__main__": + + diff = [] + + print(cdb.get_value_from_para("cdb_report1.html", "number of campaigns")) + print(cdb.get_value_from_row("cdb_report1.html", "CRTs", "101", "House_Count")) + + diff.append(cdb.get_value_from_row("cdb_report1.html", "CRTs", "102", "House_Count")) + diff.append(cdb.get_value_from_row("cdb_report2.html", "CRTs", "102", "House_Count")) + print(diff) + + + # cdb.result_in_html("Number of Campaigns 1", cdb.get_value_from_row("cdb_report1.html", "Campaigns", "901", "House_Count"), cdb.get_value_from_row("cdb_report2.html", "Campaigns", "901", "House_Count"),2) + # cdb.result_in_html("Number of Campaigns 2", cdb.get_value_from_row("cdb_report1.html", "Campaigns", "902", "House_Count"), cdb.get_value_from_row("cdb_report2.html", "Campaigns", "902", "House_Count"),3) + # cdb.result_in_html("Number of Campaigns 3", cdb.get_value_from_row("cdb_report1.html", "Campaigns", "910", "House_Count"), cdb.get_value_from_row("cdb_report2.html", "Campaigns", "910", "House_Count"),4) + + + \ No newline at end of file diff --git a/runner.py b/runner.py new file mode 100644 index 0000000..b27c4f6 --- /dev/null +++ b/runner.py @@ -0,0 +1,35 @@ +## Author: Kud01 +## Date: 12/07/2018 + +import subprocess + +class Runner(object): + command_line=None + proc=None + logger=None + +#init assigns the premade command line argument to self. + def __init__(self, logger): + #self.command_line = command + self.proc = None + self.logger = logger + +#if blocking is TRUE then the the command is passed as a descriptor/file object to stdout, if FALSE then the command is passed as a descriptor/file object to stdout and you can use communcate??? + def start_run(self, command, blocking): + self.command_line = command + self.logger.info("Starting process: %s",self.command_line) + if (blocking == True): + self.proc = subprocess.call(self.command_line, shell=False, stdout=subprocess.PIPE) + else: + self.proc = subprocess.Popen(self.command_line, shell=False, stdout=subprocess.PIPE) + # output = self.proc.communicate()[0] + # print output + + def stop_run(self): + self.logger.info("Killing process: %s", self.command_line) + self.proc.kill() + self.proc = None + +# s = subprocess.check_output('tasklist', shell=True) +# if "cmd.exe" in s: +# print s \ No newline at end of file diff --git a/runtest.py b/runtest.py new file mode 100644 index 0000000..73bcbdb --- /dev/null +++ b/runtest.py @@ -0,0 +1,546 @@ +''' +RUN TEST LOCALLY +NOT USED IN AUTOMATION FRAMEWORK +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + +from automationframework.autotest.base.template import Template +from automationframework.autotest.base.decorators import step +import time +import importlib +import requests +import verify_function as cdb +from config import Config + +SERVER_NAME = Config['serverName'] +STB_SERVER_NAME = Config['STBserverName'] +EXTRACTOR_REPORTS = Config['extractorReports'] + +class Test(): + def __init__(self, logger, ip, slotId): + self.logger = createFileLogger(LOG_FILE + logger + '.log') + self.ip = ip + self.slotID = slotId + + def runtest(self, slotID, ip): + ''' + ''' + + self.logger.info("Test Begin") + for testcase in self.test_tree.getroot(): + self.logger.info("Testcases:%s,%s", testcase.tag, testcase.text) + + for test in testcase: + if test.tag == 'teststep': + self.logger.info("Teststep: %s", test.attrib) + for teststeps in test: + if teststeps.tag == 'action': + if teststeps.text == 'PLAY_STREAM': + self.play_stream(test) + elif teststeps.text == 'WAIT': + self.wait(test) + elif teststeps.text == 'EXTRACT_STB': + self.extract_stb(test, ip, slotID) + elif teststeps.text == 'VERIFY': + self.verify(test, slotID) + elif teststeps.text == 'COMMAND': + self.command(test, slotID) + + requests.get(SERVER_NAME + 'stopstream', timeout=60) + self.logger.info(threading.enumerate()) + + def play_stream(self, _clients, stream_name): + self.logger.info("Playing stream: " + stream_name + " for " + _clients + "clients") + requests.get(SERVER_NAME + 'startstream?clients=' + _clients + '&stream=' + stream_name, timeout=60) + + resp = requests.get(SERVER_NAME + 'startstream?clients=' + _clients + '&stream=' + stream_name, timeout=60) + + self.logger.info("The content of the request is:" + resp.content) + + if resp.ok: + self.logger.info("Play stream server worked") + return True + else: + self.logger.error("Player stream server did not work") + return False + + def wait(self, wait_time): + self.logger.info("Wait for step to be completed") # will be removed + time.sleep(int(wait_time) * 60) + return True + + def extract_stb(self): + self.logger.info("Extracting STB") + requests.get(STB_SERVER_NAME + 'stbExtract?ip=' + "192.168.0.106" + '&report_no=' + str(int(self.slotId)), timeout=60) + + resp = requests.get(STB_SERVER_NAME + 'stbExtract?ip=' + self.ip + '&report_no=' + str(int(self.slotId)), timeout=60) + if resp.ok: + self.logger.info("Extract STB complete") + return True + else: + self.logger.error("Unable to extract STB") + return False + + def verify_para(self, attribute, exp_value): + self.logger.info("Verification of top paragraph value") + print(EXTRACTOR_REPORTS + "cdb_report" + str(int(stb.slotId)) + ".html") + value_to_be_verified = cdb.get_value_from_para( + EXTRACTOR_REPORTS + "cdb_report" + str(int(self.slotId)) + ".html", + attribute) + self.logger.info('%s', attribute) + if exp_value != value_to_be_verified: + self.logger.error("Teststep verification Failed") + self.logger.info("Expecting: %s=%s, but, found %s=%s", attribute, exp_value, + attribute, value_to_be_verified) + self.logger.info("Ending test") + #requests.get(SERVER_NAME + 'stopstream') + + else: + self.logger.info("Teststep verification passed") + return True + + def verify_table(self, header, unique_id, column, exp_value): + self.logger.info("Verification of table values") + + value_to_be_verified = cdb.get_value_from_row( + EXTRACTOR_REPORTS + "cdb_report" + str(int(stb.slotId)) + ".html", header, unique_id, + column) + if exp_value != value_to_be_verified: + self.logger.error("Teststep verification Failed") + self.logger.info("Expecting: %s=%s, but, found %s=%s", column, exp_value, + column, value_to_be_verified) + #requests.get(SERVER_NAME + 'stopstream') + else: + self.logger.info("Teststep verification passed") + return True + + def verify_under_table(self, header, attribute, exp_value): + self.logger.info("Verification of value under table") + + value_to_be_verified = cdb.get_value_under_table( + EXTRACTOR_REPORTS + "cdb_report" + str(int(stb.slotId)) + ".html", header, attribute) + if exp_value != value_to_be_verified: + self.logger.error("Teststep verification Failed") + self.logger.info("Expecting: %s %s=%s, but, found %s=%s", header, attribute, exp_value, + header, value_to_be_verified) + self.logger.info("Ending test") + #requests.get(SERVER_NAME + 'stopstream') + + else: + self.logger.info("Teststep verification passed") + return True + + + def command(self, command_type, name_of_command): + rcu = Remote(Config['ipRCU'], Config['portRCU'], self.logger) + self.logger.info("Perform Command") + + if command_type == 'common': + lib = importlib.import_module('autosmart.templates.common') + step = lib.__dict__[name_of_command] + instance = step(self.logger, stb.slotId) + instance.execute(rcu) + return True + elif command_type == 'rcu': + rcu.operate(name_of_command, stb.slotId, 2) + return True + else: + self.logger.info("Incorrect parameter, must be either common or rcu") + + +class StopStream(Template): + """ + Playout prerecorded stream + """ + TAG = "play stream" + + def __init__(self): + Template.__init__(self) + + self.addDescription(self.NAME_DESC, + 'Stopping stream') + + self.addDescription(self.EXP_DESC, + 'Stopping stream') + + self.addDescription(self.PASS_DESC, + 'Stream successfully stopped') + + self.addDescription(self.FAIL_DESC, + 'Stream did not stop') + + def executeCore(self, stb, status): + + self.logger.info('Stopping stream') + requests.get(SERVER_NAME + 'stopstream') + + resp = requests.get(SERVER_NAME + 'stopstream') + if resp.ok: + self.logger.info("Stopping stream complete") + return True + else: + self.logger.error("Unable to stop stream") + return False + + + +# import sys +# import getopt # ???? +# import time +# import logging +# import threading +# import importlib +# import requests +# import json +# import xml.etree.ElementTree as et +# from multiprocessing import Process +# from argparse import ArgumentParser +# from autosmart.utils.utils import createFileLogger +# import function as cdb +# from autosmart.config.config import Config +# from autosmart.rcu import Remote +# import autosmart.templates.common +# +# #from socketIO_client import SocketIO +# +# +# LOG_FILE = Config['runtestLog'] +# TEST_FOLDER = Config['testFolder'] +# BOX_FOLDER = Config['boxFolder'] +# SERVER_NAME = Config['serverName'] +# STB_SERVER_NAME = Config['STBserverName'] +# RCU_LOG = Config['rcuLog'] +# EXTRACTOR_REPORTS = Config['extractorReports'] +# +# class Test(): +# def __init__(self, test_tree, logger): +# self.logger = createFileLogger(LOG_FILE + logger + '.log') +# self.test_tree = et.parse(TEST_FOLDER + test_tree + '.xml') +# +# def runtest(self, slotID, ip): +# ''' +# ''' +# +# self.logger.info("Test Begin") +# for testcase in self.test_tree.getroot(): +# self.logger.info("Testcases:%s,%s", testcase.tag, testcase.text) +# +# for test in testcase: +# if test.tag == 'teststep': +# self.logger.info("Teststep: %s", test.attrib) +# for teststeps in test: +# if teststeps.tag == 'action': +# if teststeps.text == 'PLAY_STREAM': +# self.play_stream(test) +# elif teststeps.text == 'WAIT': +# self.wait(test) +# elif teststeps.text == 'EXTRACT_STB': +# self.extract_stb(test, ip, slotID) +# elif teststeps.text == 'VERIFY': +# self.verify(test, slotID) +# elif teststeps.text == 'COMMAND': +# self.command(test, slotID) +# +# requests.get(SERVER_NAME + 'stopstream', timeout=60) +# self.logger.info(threading.enumerate()) +# +# def play_stream(self, test): +# self.logger.info("Play Stream") +# parameters = [] +# for teststeps in test: +# # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# if teststeps.tag == 'parameter': +# parameters.append(teststeps.text) +# self.logger.info(parameters[0] + " and " + parameters[1]) +# +# # with SocketIO('localhost', 5000) as socketIO: +# # socketIO.emit('Ready to play') +# +# requests.get(SERVER_NAME + 'startstream?folder=' + parameters[0] + '&stream=' + parameters[1], timeout=60) +# self.logger.info("server done") +# +# return True +# +# def wait(self, test): +# self.logger.info("Wait for step to be completed") # will be removed +# for teststeps in test: +# # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# if teststeps.tag == 'parameter': +# wait_time = teststeps.text +# time.sleep(int(wait_time) * 60) +# return True +# +# def extract_stb(self, test, ip, slotID): +# self.logger.info("Extract STB") +# +# requests.get(STB_SERVER_NAME + 'stbExtract?ip=' + ip + '&report_no=' + str(int(slotID)), timeout=60) +# return True +# +# def verify(self, test, slotID): +# self.logger.info("Verify") +# parameters = [] +# for teststeps in test: +# # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# if teststeps.tag == 'parameter': +# parameters.append(teststeps.text) +# +# if parameters[0] == 'para': +# value_to_be_verified = cdb.get_value_from_para( +# EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", +# parameters[1]) # E:/GeorgiaAdSmart/AutoSmart/work/Python/autosmart/servers/stbreports/cdb_report1.html +# self.logger.info('%s', parameters[1]) +# if parameters[2] != value_to_be_verified: +# self.logger.error("Teststep verification Failed !!!") +# self.logger.info("Expecting: %s=%s, but, found %s=%s", parameters[1], parameters[2], +# parameters[1], value_to_be_verified) +# self.logger.info("Ending test") +# +# else: +# self.logger.info("Teststep verification passed") +# +# if parameters[0] == 'table': +# value_to_be_verified = cdb.get_value_from_row(EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", +# parameters[1], parameters[2], parameters[3]) +# if parameters[4] != value_to_be_verified: +# self.logger.error("Teststep verification Failed !!!") +# self.logger.info("Expecting: %s=%s, but, found %s=%s", parameters[3], parameters[4], +# parameters[3], value_to_be_verified) +# # stop test +# else: +# self.logger.info("Teststep verification passed") +# +# if parameters[0] == 'under table': +# value_to_be_verified = cdb.get_value_under_table( +# EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", parameters[1], parameters[2]) +# if parameters[3] != value_to_be_verified: +# self.logger.error("Teststep verification Failed !!!") +# self.logger.info("Expecting: %s %s=%s, but, found %s=%s", parameters[1], parameters[2], parameters[3], +# parameters[1], value_to_be_verified) +# self.logger.info("Ending test") +# +# else: +# self.logger.info("Teststep verification passed") +# +# def command(self, test, slotID): +# parameters = [] +# rculog = createFileLogger(RCU_LOG) +# rcu = Remote(Config['ipRCU'], Config['portRCU'], rculog) +# +# for teststeps in test: +# self.logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# if teststeps.tag == 'parameter': +# parameters.append(teststeps.text) +# if parameters[0] == 'common': +# lib = importlib.import_module('autosmart.templates.common') +# step = lib.__dict__[parameters[1]] +# instance = step(self.logger, slotID) +# instance.execute(rcu) +# return True +# elif parameters[0] == 'rcu': +# rcu.operate(parameters[1], slotID, 2) +# return True +# else: +# self.logger.info("Incorrect parameter, must be either common or rcu") +# +# +# +# +# class TestRunner(): +# def __init__(self): +# None +# +# @property +# def build_parser(self): +# parser = ArgumentParser() +# parser.add_argument("-t", "--test", dest="testname", +# help="Test to be completed") +# parser.add_argument("-o", "--output", dest="logstore", +# help="results and log store") +# parser.add_argument("-b", "--box", dest="box_file", +# help="box ip and soltID/report number") +# return parser +# +# def run(self, slotID, ip, test, log): +# t = Test(test, log + slotID) +# t.runtest(slotID, ip) +# +# def individualTests(self): +# parser = self.build_parser +# args = parser.parse_args() +# +# # for proc in psutil.process_iter(): +# # print proc +# +# print("Get status") +# resp = requests.get(SERVER_NAME + "status", timeout=60) +# print resp.content +# if resp.ok: +# json_resp = resp.json() +# json_resp["data"] +# data = json_resp.get("data", None) +# if data is None: +# print(json_resp.get("error")) +# +# if resp.json()["data"]["status"] == "Playing": +# print('stopping streammmm') +# requests.get(SERVER_NAME + 'stopstream', timeout=60) +# +# print("Load boxes info") +# test_boxes = BOX_FOLDER + args.box_file + '.json' +# +# with open(test_boxes) as test_file: +# json_data = json.load(test_file) +# for key, val in json_data.items(): +# print("Stb details: {}:{}".format(key, val)) +# proc = Process(target=self.run, args=(key, val, args.testname, args.logstore)) +# print("starting proc:{}".format(proc)) +# proc.start() +# +# print("Wait for all of tests to finish") +# proc.join() +# print("Finished!") +# +# +# if __name__ == "__main__": +# TestRunner().individualTests() +# +# # python runtest.py -t firstfeature -o autosmart -b boxips +# +# +# # s = subprocess.check_output('tasklist', shell=True) +# # for app_name in ("DtPlay.exe", "StreamXpress.exe"): +# # if app_name in s: +# # resp = requests.get(SERVER_NAME + 'stopstream', timeout=60) +# # if res.ok: +# # break +# +# +# # class Test(): +# # def __init__(self, test_tree, logger): +# # self.logger = createFileLogger(LOG_FILE + logger + '.log') +# # self.test_tree = et.parse(TEST_FOLDER + test_tree + '.xml') +# # +# # def runtest(self, slotID, ip): +# # ''' +# # ''' +# # +# # self.logger.info("Test Begin") +# # for testcase in self.test_tree.getroot(): +# # self.logger.info("Testcases:%s,%s", testcase.tag, testcase.text) +# # +# # for test in testcase: +# # if test.tag == 'teststep': +# # self.logger.info("Teststep: %s", test.attrib) +# # for teststeps in test: +# # if teststeps.tag == 'action': +# # if teststeps.text == 'PLAY_STREAM': +# # self.play_stream(test) +# # elif teststeps.text == 'WAIT': +# # self.wait(test) +# # elif teststeps.text == 'EXTRACT_STB': +# # self.extract_stb(test, ip, slotID) +# # elif teststeps.text == 'VERIFY': +# # self.verify(test, slotID) +# # elif teststeps.text == 'COMMAND': +# # self.command(test, slotID) +# # +# # requests.get(SERVER_NAME + 'stopstream', timeout=60) +# # self.logger.info(threading.enumerate()) +# # +# # def play_stream(self, test): +# # self.logger.info("Play Stream") +# # parameters = [] +# # for teststeps in test: +# # # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# # if teststeps.tag == 'parameter': +# # parameters.append(teststeps.text) +# # self.logger.info(parameters[0] + " and " + parameters[1]) +# # +# # # with SocketIO('localhost', 5000) as socketIO: +# # # socketIO.emit('Ready to play') +# # +# # requests.get(SERVER_NAME + 'startstream?folder=' + parameters[0] + '&stream=' + parameters[1], timeout=60) +# # self.logger.info("server done") +# # +# # return True +# # +# # def wait(self, test): +# # self.logger.info("Wait for step to be completed") # will be removed +# # for teststeps in test: +# # # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# # if teststeps.tag == 'parameter': +# # wait_time = teststeps.text +# # time.sleep(int(wait_time) * 60) +# # return True +# # +# # def extract_stb(self, test, ip, slotID): +# # self.logger.info("Extract STB") +# # +# # requests.get(STB_SERVER_NAME + 'stbExtract?ip=' + ip + '&report_no=' + str(int(slotID)), timeout=60) +# # return True +# # +# # def verify(self, test, slotID): +# # self.logger.info("Verify") +# # parameters = [] +# # for teststeps in test: +# # # logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# # if teststeps.tag == 'parameter': +# # parameters.append(teststeps.text) +# # +# # if parameters[0] == 'para': +# # value_to_be_verified = cdb.get_value_from_para( +# # EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", +# # parameters[1]) # E:/GeorgiaAdSmart/AutoSmart/work/Python/autosmart/servers/stbreports/cdb_report1.html +# # self.logger.info('%s', parameters[1]) +# # if parameters[2] != value_to_be_verified: +# # self.logger.error("Teststep verification Failed !!!") +# # self.logger.info("Expecting: %s=%s, but, found %s=%s", parameters[1], parameters[2], +# # parameters[1], value_to_be_verified) +# # self.logger.info("Ending test") +# # +# # else: +# # self.logger.info("Teststep verification passed") +# # +# # if parameters[0] == 'table': +# # value_to_be_verified = cdb.get_value_from_row(EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", +# # parameters[1], parameters[2], parameters[3]) +# # if parameters[4] != value_to_be_verified: +# # self.logger.error("Teststep verification Failed !!!") +# # self.logger.info("Expecting: %s=%s, but, found %s=%s", parameters[3], parameters[4], +# # parameters[3], value_to_be_verified) +# # # stop test +# # else: +# # self.logger.info("Teststep verification passed") +# # +# # if parameters[0] == 'under table': +# # value_to_be_verified = cdb.get_value_under_table( +# # EXTRACTOR_REPORTS + "cdb_report" + str(int(slotID)) + ".html", parameters[1], parameters[2]) +# # if parameters[3] != value_to_be_verified: +# # self.logger.error("Teststep verification Failed !!!") +# # self.logger.info("Expecting: %s %s=%s, but, found %s=%s", parameters[1], parameters[2], parameters[3], +# # parameters[1], value_to_be_verified) +# # self.logger.info("Ending test") +# # +# # else: +# # self.logger.info("Teststep verification passed") +# # +# # def command(self, test, slotID): +# # parameters = [] +# # rculog = createFileLogger(RCU_LOG) +# # rcu = Remote(Config['ipRCU'], Config['portRCU'], rculog) +# # +# # for teststeps in test: +# # self.logger.info("Reading params: %s,%s,%s", teststeps.tag, teststeps.attrib, teststeps.text) +# # if teststeps.tag == 'parameter': +# # parameters.append(teststeps.text) +# # if parameters[0] == 'common': +# # lib = importlib.import_module('autosmart.templates.common') +# # step = lib.__dict__[parameters[1]] +# # instance = step(self.logger, slotID) +# # instance.execute(rcu) +# # return True +# # elif parameters[0] == 'rcu': +# # rcu.operate(parameters[1], slotID, 2) +# # return True +# # else: +# # self.logger.info("Incorrect parameter, must be either common or rcu") diff --git a/servers/__init__.py b/servers/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/CDB1.DB b/servers/stbreports/CDB1.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/CDB100201.DB b/servers/stbreports/CDB100201.DB new file mode 100644 index 0000000..21cb10d Binary files /dev/null and b/servers/stbreports/CDB100201.DB differ diff --git a/servers/stbreports/CDB100202.DB b/servers/stbreports/CDB100202.DB new file mode 100644 index 0000000..d8c8b42 Binary files /dev/null and b/servers/stbreports/CDB100202.DB differ diff --git a/servers/stbreports/CDB100203.DB b/servers/stbreports/CDB100203.DB new file mode 100644 index 0000000..20cb2b6 Binary files /dev/null and b/servers/stbreports/CDB100203.DB differ diff --git a/servers/stbreports/CDB100204.DB b/servers/stbreports/CDB100204.DB new file mode 100644 index 0000000..d8c8b42 Binary files /dev/null and b/servers/stbreports/CDB100204.DB differ diff --git a/servers/stbreports/CDB2.DB b/servers/stbreports/CDB2.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/CDB3.DB b/servers/stbreports/CDB3.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/CDB4.DB b/servers/stbreports/CDB4.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/CDB60902.DB b/servers/stbreports/CDB60902.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/PCAT1.DB b/servers/stbreports/PCAT1.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/PCAT100201.DB b/servers/stbreports/PCAT100201.DB new file mode 100644 index 0000000..fe40ec3 Binary files /dev/null and b/servers/stbreports/PCAT100201.DB differ diff --git a/servers/stbreports/PCAT100202.DB b/servers/stbreports/PCAT100202.DB new file mode 100644 index 0000000..89eb352 Binary files /dev/null and b/servers/stbreports/PCAT100202.DB differ diff --git a/servers/stbreports/PCAT100203.DB b/servers/stbreports/PCAT100203.DB new file mode 100644 index 0000000..8a2a7d2 Binary files /dev/null and b/servers/stbreports/PCAT100203.DB differ diff --git a/servers/stbreports/PCAT100204.DB b/servers/stbreports/PCAT100204.DB new file mode 100644 index 0000000..1f44478 Binary files /dev/null and b/servers/stbreports/PCAT100204.DB differ diff --git a/servers/stbreports/PCAT2.DB b/servers/stbreports/PCAT2.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/PCAT3.DB b/servers/stbreports/PCAT3.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/PCAT4.DB b/servers/stbreports/PCAT4.DB new file mode 100644 index 0000000..e69de29 diff --git a/servers/stbreports/PCAT60902.DB b/servers/stbreports/PCAT60902.DB new file mode 100644 index 0000000..a2adb29 Binary files /dev/null and b/servers/stbreports/PCAT60902.DB differ diff --git a/servers/stbreports/cdb_report1.html b/servers/stbreports/cdb_report1.html new file mode 100644 index 0000000..aff09a5 --- /dev/null +++ b/servers/stbreports/cdb_report1.html @@ -0,0 +1,99 @@ + + + + +192.168.0.106 CDB Report + + + +

    +

    box name:192.168.0.106   ip address:192.168.0.106

    +

    report from:t1.html   created at:1970-02-24 18:19:10   generated at:2019-05-14 15:37:54

    +

    number of campaigns:0

    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets: 0

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    +

    number of campaigns:0

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    +

    number of campaigns:0

    +Top +

    Assets

    + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets:0

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report100201.html b/servers/stbreports/cdb_report100201.html new file mode 100644 index 0000000..dbc81f4 --- /dev/null +++ b/servers/stbreports/cdb_report100201.html @@ -0,0 +1,8027 @@ + + + + +192.168.0.100 CDB Report + + + +
    +

    box name:192.168.0.100   ip address:192.168.0.100

    +

    report from:t100201.html   created at:1970-02-24 18:19:10   generated at:2019-08-13 11:09:53

    +

    number of campaigns:92

    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets: 26

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    10112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10812010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    20112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20512010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20612010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30112010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30212010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30312010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30512010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30712010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30812010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31012010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31112010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    31212010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    31412010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    40112010-08-10 06:00:002020-12-30 23:59:59100-550NoAdvFalseSubstitution
    40212010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40312010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    40512010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40612010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40712010-08-10 06:00:002020-12-30 23:59:59100-450NoAdvFalseSubstitution
    40812010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41012010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41112010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    41212010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41312010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    41412010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    50512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    60012010-08-10 06:00:002020-12-30 23:59:5900-000NoAdvFalseLive
    90112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90512010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    90612010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    90712010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    90812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91412010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    91512010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    91612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    91712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92112010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    92212010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    92312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    92412010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92512010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92612010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    100012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100212010-08-10 06:00:002020-12-30 23:59:5910012018-05-10 17:16:0501001NoAdvFalseChild
    100412010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100612010-08-10 06:00:002020-12-30 23:59:5930-0100NoAdvFalseChild
    100812010-08-10 06:00:002020-12-30 23:59:59100-030NoAdvFalseChild
    101012010-08-10 06:00:002020-12-30 23:59:591000-31000NoAdvFalseChild
    101212010-08-10 06:00:002020-12-30 23:59:59990-50500NoAdvFalseChild
    101512010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    101812010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    +

    number of campaigns:92

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    90151624834319567461HDRound Robin200---True
    9015162483431956746334SDRound Robin200---True
    9015162483443129152034SDRound Robin000---True
    90151624834431291521HDRound Robin000---True
    90151624834231291522HDRound Robin100---True
    9015162483423129152334SDRound Robin100---True
    90266513911431291522HDRound Robin100---True
    9026651391143129152334SDRound Robin100---True
    90266513911819567461HDRound Robin200---True
    9026651391181956746334SDRound Robin200---True
    9025162483413129152034SDRound Robin000---True
    90251624834131291521HDRound Robin000---True
    90366513911519567461HDRound Robin200---True
    9036651391151956746334SDRound Robin200---True
    9036651391163129152034SDRound Robin000---True
    90366513911631291521HDRound Robin000---True
    90366513911731291522HDRound Robin100---True
    9036651391173129152334SDRound Robin100---True
    90456613820331291522HDRound Robin500---True
    9045661382033129152334SDRound Robin500---True
    90456613820219567461HDRound Robin1000---True
    9045661382021956746334SDRound Robin1000---True
    9045661382013129152034SDRound Robin100---True
    90456613820131291521HDRound Robin100---True
    905108157822119567461HDRound Robin200---True
    90510815782211956746334SDRound Robin200---True
    9055661382053129152034SDRound Robin000---True
    90556613820531291521HDRound Robin000---True
    90556613820431291522HDRound Robin100---True
    9055661382043129152334SDRound Robin100---True
    906108157822431291522HDRound Robin100---True
    90610815782243129152334SDRound Robin100---True
    906108157822219567461HDRound Robin200---True
    90610815782221956746334SDRound Robin200---True
    90610815782253129152034SDRound Robin000---True
    906108157822531291521HDRound Robin000---True
    907146111351919567461HDRound Robin200---True
    90714611135191956746334SDRound Robin200---True
    90710815782233129152034SDRound Robin000---True
    907108157822331291521HDRound Robin000---True
    907146111351831291522HDRound Robin100---True
    90714611135183129152334SDRound Robin100---True
    90868513023219567462HDRound Robin1000---True
    9086851302321956746534SDRound Robin1000---True
    9086851302361956746434SDRound Robin25500---True
    90868513023630883208HDRound Robin25500---True
    908146111352131291522HDRound Robin200---True
    90814611135213129152334SDRound Robin200---True
    908146111352019567461HDRound Robin500---True
    90814611135201956746334SDRound Robin500---True
    90814611135223129152034SDRound Robin000---True
    908146111352231291521HDRound Robin000---True
    9106851302333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9106851302343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    911179660016431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91117966001643129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9116851302353129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91168513023531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016619567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001661956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001683129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91217966001673129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91320501015133129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151519567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91320501015151956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91317966001653129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    913179660016531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91420501015143129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151431291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91420501015173129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    915126648870231291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91512664887023129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91520501015163129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    915205010151631291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91612664887053129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91612664887033129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    917126648870631291522HDCapped130---True
    91712664887063129152334SDCapped130---True
    91749913950919567461HDCapped230---True
    9174991395091956746334SDCapped230---True
    91712664887043129152034SDCapped030---True
    917126648870431291521HDCapped030---True
    91849913951219567461HDCapped530---True
    9184991395121956746334SDCapped530---True
    9184991395103129152034SDCapped130---True
    91849913951031291521HDCapped130---True
    91849913951131291522HDCapped330---True
    9184991395113129152334SDCapped330---True
    919130346672019567462HDCapped330---True
    91913034667201956746534SDCapped330---True
    91913034667211956746434SDCapped430---True
    919130346672130883208HDCapped430---True
    919130346671831291522HDCapped130---True
    91913034667183129152334SDCapped130---True
    919130346672219567461HDCapped230---True
    91913034667221956746334SDCapped230---True
    9194991395133129152034SDCapped030---True
    91949913951331291521HDCapped030---True
    91913034667192138164534SDCapped530---True
    919130346671921381647HDCapped530---True
    920102357980019567461HDCapped230---True
    92010235798001956746334SDCapped230---True
    920102357980131291522HDCapped130---True
    92010235798013129152334SDCapped130---True
    92010235797993129152034SDCapped030---True
    920102357979931291521HDCapped030---True
    921174650401619567461HDCapped230---True
    92117465040161956746334SDCapped230---True
    921102357980231291522HDCapped130---True
    92110235798023129152334SDCapped130---True
    92110235798033129152034SDCapped030---True
    921102357980331291521HDCapped030---True
    922174650401819567461HDCapped230---True
    92217465040181956746334SDCapped230---True
    922174650401931291522HDCapped130---True
    92217465040193129152334SDCapped130---True
    92217465040173129152034SDCapped030---True
    922174650401731291521HDCapped030---True
    923174650401819567461HDCapped230---True
    92317465040181956746334SDCapped230---True
    923174650401931291522HDCapped130---True
    92317465040193129152334SDCapped130---True
    92317465040173129152034SDCapped030---True
    923174650401731291521HDCapped030---True
    92479217059320256780HDCapped810---True
    9247921705932025678134SDCapped810---True
    92479217059421991070HDCapped710---True
    9247921705942199107234SDCapped710---True
    9247921705903088321034SDCapped610---True
    92479217059030883212HDCapped610---True
    9242409500783088320934SDCapped510---True
    92424095007830883211HDCapped510---True
    9242409500761956746434SDCapped410---True
    92424095007630883208HDCapped410---True
    92424095007719567462HDCapped310---True
    9242409500771956746534SDCapped310---True
    92479217059220256782HDCapped910---True
    9247921705922025678334SDCapped910---True
    92424095007519567461HDCapped210---True
    9242409500751956746334SDCapped210---True
    92424095007431291522HDCapped110---True
    9242409500743129152334SDCapped110---True
    92417465040203129152034SDCapped010---True
    924174650402031291521HDCapped010---True
    92536822458620256780HDRound Robin800---True
    9253682245862025678134SDRound Robin800---True
    92536822458521991070HDRound Robin700---True
    9253682245852199107234SDRound Robin700---True
    9253682245843088321034SDRound Robin600---True
    92536822458430883212HDRound Robin600---True
    92517461458113088320934SDRound Robin500---True
    925174614581130883211HDRound Robin500---True
    92517461458131956746434SDRound Robin400---True
    925174614581330883208HDRound Robin400---True
    925174614581219567462HDRound Robin300---True
    92517461458121956746534SDRound Robin300---True
    925174614581419567461HDRound Robin200---True
    92517461458141956746334SDRound Robin200---True
    925174614581031291522HDRound Robin100---True
    92517461458103129152334SDRound Robin100---True
    9257921705913129152034SDRound Robin000---True
    92579217059131291521HDRound Robin000---True
    92536822458720256782HDRound Robin900---True
    9253682245872025678334SDRound Robin900---True
    926170828723720256780HDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    92617082872372025678134SDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    926170828723621991070HDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872362199107234SDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872353088321034SDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    926170828723530883212HDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    92617117179753088320934SDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    926171171797530883211HDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    92617117179741956746434SDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797430883208HDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797719567462HDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    92617117179771956746534SDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    926171171797619567461HDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    92617117179761956746334SDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    926171171797331291522HDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    92617117179733129152334SDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    9263682245883129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92636822458831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    926170828723820256782HDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    92617082872382025678334SDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    +

    number of campaigns:192

    +Top +

    Assets

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    16940983893129152010134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    169409838931291521101HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    169409838831291522102HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    16940983883129152310234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    169409839019567461103HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    16940983901956746310334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    169409838719567462104HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    16940983871956746510434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    20083005711956746410534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    200830057130883208105HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    20083005743088320910634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    200830057430883211106HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    20083005753088321010734SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    200830057530883212107HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    200830057221991069108HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    200830057321991071110HD120s15 S19 2018-05-10 16:08:452018-05-10 16:32:36
    75995981621991070111HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    7599598162199107211134SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    7599598182025677911234SD10s14 S17 2018-05-10 16:08:402018-05-10 16:31:14
    75995981821991073112HD10s14 S24 2018-05-10 16:08:582018-05-10 17:04:14
    75995981920256780113HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    7599598192025678111334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    75995981720256782114HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    7599598172025678311434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    7599598203129152020134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    75995982031291521201HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    39200445831291522202HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    3920044583129152320234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    39200446219567461203HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    3920044621956746320334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    39200446019567462204HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    3920044601956746520434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    3920044611956746420534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    39200446130883208205HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    3920044593088320920634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    39200445930883211206HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    6716669353088321020734SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    67166693530883212207HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    67166693921991069208HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    67166693821991071210HD120s15 S19 2018-05-10 16:08:452018-05-10 16:32:36
    67166693721991070211HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    6716669372199107221134SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    6716669362025677921234SD10s14 S17 2018-05-10 16:08:402018-05-10 16:31:14
    67166693621991073212HD10s14 S24 2018-05-10 16:08:582018-05-10 17:04:14
    197387495120256780213HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    19738749512025678121334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    197387495420256782214HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    19738749542025678321434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    19738749553129152030134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    197387495531291521301HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    197387495231291522302HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    19738749523129152330234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    197387495319567461303HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    19738749531956746330334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    17101428919567462304HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    1710142891956746530434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    1710142901956746430534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    17101429030883208305HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    1710142913088320930634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    17101429130883211306HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    1710142923088321030734SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    17101429230883212307HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    17101429321991069308HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    68150616821991071310HD120s15 S19 2018-05-10 16:08:452018-05-10 16:32:36
    68150617121991070311HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    6815061712199107231134SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    6815061702025677931234SD10s14 S17 2018-05-10 16:08:402018-05-10 16:31:14
    68150617021991073312HD10s14 S24 2018-05-10 16:08:582018-05-10 17:04:14
    68150616920256780313HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    6815061692025678131334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    68150617220256782314HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    6815061722025678331434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    6313771843129152040134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    63137718431291521401HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    63137718831291522402HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    6313771883129152340234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    63137718519567461403HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6313771851956746340334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    63137718719567462404HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    6313771871956746540434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    6313771861956746440534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    63137718630883208405HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    4610872823088320940634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    46108728230883211406HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    4610872863088321040734SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    46108728630883212407HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    46108728421991069408HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    46108728521991071410HD120s15 S19 2018-05-10 16:08:452018-05-10 16:32:36
    46108728321991070411HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    4610872832199107241134SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    8087174982025677941234SD10s14 S17 2018-05-10 16:08:402018-05-10 16:31:14
    80871749821991073412HD10s14 S24 2018-05-10 16:08:582018-05-10 17:04:14
    80871750120256780413HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    8087175012025678141334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    80871750020256782414HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    8087175002025678341434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    17873549731956746450534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    178735497330883208505HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    17873549743088320950634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    178735497430883211506HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    17873549753088321050734SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    178735497530883212507HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    137982908521991071510HD120s15 S19 2018-05-10 16:08:452018-05-10 16:32:36
    51624834231291522901HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    5162483423129152390134SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    51624834319567461901HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    5162483431956746390134SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    5162483443129152090134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    51624834431291521901HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    5162483413129152090234SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    51624834131291521902HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    66513911431291522902HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    6651391143129152390234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    66513911819567461902HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6651391181956746390234SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    66513911519567461903HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6651391151956746390334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    6651391163129152090334SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    66513911631291521903HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    66513911731291522903HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    6651391173129152390334SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    5661382013129152090434SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    56613820131291521904HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    56613820219567461904HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    5661382021956746390434SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    56613820331291522904HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    5661382033129152390434SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    56613820431291522905HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    5661382043129152390534SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    5661382053129152090534SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    56613820531291521905HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    108157822119567461905HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10815782211956746390534SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    108157822219567461906HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10815782221956746390634SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    108157822431291522906HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    10815782243129152390634SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    10815782253129152090634SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    108157822531291521906HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    10815782233129152090734SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    108157822331291521907HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    146111351831291522907HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    14611135183129152390734SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    146111351919567461907HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    14611135191956746390734SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    68513023219567462908HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    6851302321956746590834SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    6851302361956746490834SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    68513023630883208908HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    146111352019567461908HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    14611135201956746390834SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    146111352131291522908HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    14611135213129152390834SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    14611135223129152090834SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    146111352231291521908HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    6851302333129152091034SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    68513023331291521910HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    68513023431291522910HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    6851302343129152391034SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    6851302353129152091134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    68513023531291521911HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    179660016431291522911HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17966001643129152391134SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    179660016619567461912HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17966001661956746391234SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    179660016731291522912HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17966001673129152391234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17966001683129152091234SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    179660016831291521912HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    17966001653129152091334SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    179660016531291521913HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    205010151331291522913HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    20501015133129152391334SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    205010151519567461913HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    20501015151956746391334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    20501015143129152091434SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    205010151431291521914HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    205010151731291522914HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    20501015173129152391434SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    126648870231291522915HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    12664887023129152391534SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    20501015163129152091534SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    205010151631291521915HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    126648870331291522916HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    12664887033129152391634SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    12664887053129152091634SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    126648870531291521916HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    49913950919567461917HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    4991395091956746391734SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    12664887043129152091734SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    126648870431291521917HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    126648870631291522917HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    12664887063129152391734SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    4991395103129152091834SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    49913951031291521918HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    49913951131291522918HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    4991395113129152391834SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    49913951219567461918HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    4991395121956746391834SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    4991395133129152091934SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    49913951331291521919HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    130346671831291522919HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    13034667183129152391934SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    13034667192138164591934SD30s11 S11 2018-05-10 16:08:242018-05-10 16:24:40
    130346671921381647919HD30s11 S12 2018-05-10 16:08:272018-05-10 16:25:50
    130346672019567462919HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    13034667201956746591934SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    13034667211956746491934SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    130346672130883208919HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    130346672219567461919HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    13034667221956746391934SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    10235797993129152092034SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    102357979931291521920HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    102357980019567461920HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10235798001956746392034SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    102357980131291522920HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    10235798013129152392034SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    102357980231291522921HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    10235798023129152392134SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    10235798033129152092134SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    102357980331291521921HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401619567461921HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040161956746392134SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    17465040173129152092234SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    174650401731291521922HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401819567461922HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040181956746392234SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    174650401931291522922HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17465040193129152392234SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17465040173129152092334SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    174650401731291521923HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401819567461923HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040181956746392334SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    174650401931291522923HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17465040193129152392334SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    24095007431291522924HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    2409500743129152392434SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    24095007519567461924HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    2409500751956746392434SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    2409500761956746492434SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    24095007630883208924HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    24095007719567462924HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    2409500771956746592434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    2409500783088320992434SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    24095007830883211924HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    7921705903088321092434SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    79217059030883212924HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    79217059220256782924HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    7921705922025678392434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    79217059320256780924HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    7921705932025678192434SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    79217059421991070924HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    7921705942199107292434SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    17465040203129152092434SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    174650402031291521924HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    3682245843088321092534SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    36822458430883212925HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    36822458521991070925HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    3682245852199107292534SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    36822458620256780925HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    3682245862025678192534SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    36822458720256782925HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    3682245872025678392534SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    7921705913129152092534SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    79217059131291521925HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174614581031291522925HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17461458103129152392534SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17461458113088320992534SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    174614581130883211925HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    174614581219567462925HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    17461458121956746592534SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    17461458131956746492534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    174614581330883208925HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    174614581419567461925HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17461458141956746392534SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    3682245883129152092634SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    36822458831291521926HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    17082872353088321092634SD9s18 S16 2018-05-10 16:08:372018-05-10 16:30:48
    170828723530883212926HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    170828723621991070926HD10s17 S13 2018-05-10 16:08:292018-05-10 16:28:58
    17082872362199107292634SD10s17 S14 2018-05-10 16:08:322018-05-10 16:29:54
    170828723720256780926HD10s17 S18 2018-05-10 16:08:422018-05-10 16:31:40
    17082872372025678192634SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    170828723820256782926HD10s17 S20 2018-05-10 16:08:472018-05-10 16:56:12
    17082872382025678392634SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    171171797331291522926HD30s129 S5 2018-05-10 16:08:112018-05-10 16:13:50
    17117179733129152392634SD30s129 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17117179741956746492634SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    171171797430883208926HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    17117179753088320992634SD10s18 S8 2018-05-10 16:08:162018-05-10 16:18:00
    171171797530883211926HD10s18 S23 2018-05-10 16:08:552018-05-10 17:03:06
    171171797619567461926HD30s124 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17117179761956746392634SD30s124 S25 2018-05-10 16:09:002018-05-10 17:05:10
    171171797719567462926HD30s19 S21 2018-05-10 16:08:502018-05-10 16:56:50
    17117179771956746592634SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    11576563931291520100034SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    115765639312915211000HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    11576563631291520100234SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    115765636312915211002HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    11576563731291520100434SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    115765637312915211004HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497631291520100634SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    1096854976312915211006HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685498031291520100834SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    1096854980312915211008HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497831291520101034SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    1096854978312915211010HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497931291520101234SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    1096854979312915211012HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497731291520101534SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    1096854977312915211015HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    92025709231291520101834SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    92025709331291520102034SD30s139 S26 2018-05-10 16:09:032018-05-10 17:06:20
    920257093312915211020HD30s138 S22 2018-05-10 16:08:532018-05-10 16:59:58
    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets:26

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report100202.html b/servers/stbreports/cdb_report100202.html new file mode 100644 index 0000000..b5b3102 --- /dev/null +++ b/servers/stbreports/cdb_report100202.html @@ -0,0 +1,8611 @@ + + + + +192.168.1.102 CDB Report + + + +
    +

    box name:192.168.1.102   ip address:192.168.1.102

    +

    report from:t100202.html   created at:1970-02-24 18:19:10   generated at:2019-08-13 11:09:48

    +

    number of campaigns:98

    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets: 26

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    10112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10812010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    20112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20512010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20612010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30112010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30212010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30312010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30512010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30712010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30812010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31012010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31112010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    31212010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    31412010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    40112010-08-10 06:00:002020-12-30 23:59:59100-550NoAdvFalseSubstitution
    40212010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40312010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    40512010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40612010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40712010-08-10 06:00:002020-12-30 23:59:59100-450NoAdvFalseSubstitution
    40812010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41012010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41112010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    41212010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41312010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    41412010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    50512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    60012010-08-10 06:00:002020-12-30 23:59:5900-000NoAdvFalseLive
    90112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90512010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    90612010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    90712010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    90812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91412010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    91512010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    91612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    91712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92112010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    92212010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    92312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    92412010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92512010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92612010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    100012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100212010-08-10 06:00:002020-12-30 23:59:5910012018-05-10 17:16:0501001NoAdvFalseChild
    100412010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100612010-08-10 06:00:002020-12-30 23:59:5930-0100NoAdvFalseChild
    100812010-08-10 06:00:002020-12-30 23:59:59100-030NoAdvFalseChild
    101012010-08-10 06:00:002020-12-30 23:59:591000-31000NoAdvFalseChild
    101212010-08-10 06:00:002020-12-30 23:59:59990-50500NoAdvFalseChild
    101512010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    101812010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102312010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    +

    number of campaigns:98

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    90151624834319567461HDRound Robin200---True
    9015162483431956746334SDRound Robin200---True
    9015162483443129152034SDRound Robin000---True
    90151624834431291521HDRound Robin000---True
    90151624834231291522HDRound Robin100---True
    9015162483423129152334SDRound Robin100---True
    90266513911431291522HDRound Robin100---True
    9026651391143129152334SDRound Robin100---True
    90266513911819567461HDRound Robin200---True
    9026651391181956746334SDRound Robin200---True
    9025162483413129152034SDRound Robin000---True
    90251624834131291521HDRound Robin000---True
    90366513911519567461HDRound Robin200---True
    9036651391151956746334SDRound Robin200---True
    9036651391163129152034SDRound Robin000---True
    90366513911631291521HDRound Robin000---True
    90366513911731291522HDRound Robin100---True
    9036651391173129152334SDRound Robin100---True
    90456613820331291522HDRound Robin500---True
    9045661382033129152334SDRound Robin500---True
    90456613820219567461HDRound Robin1000---True
    9045661382021956746334SDRound Robin1000---True
    9045661382013129152034SDRound Robin100---True
    90456613820131291521HDRound Robin100---True
    905108157822119567461HDRound Robin200---True
    90510815782211956746334SDRound Robin200---True
    9055661382053129152034SDRound Robin000---True
    90556613820531291521HDRound Robin000---True
    90556613820431291522HDRound Robin100---True
    9055661382043129152334SDRound Robin100---True
    906108157822431291522HDRound Robin100---True
    90610815782243129152334SDRound Robin100---True
    906108157822219567461HDRound Robin200---True
    90610815782221956746334SDRound Robin200---True
    90610815782253129152034SDRound Robin000---True
    906108157822531291521HDRound Robin000---True
    907146111351919567461HDRound Robin200---True
    90714611135191956746334SDRound Robin200---True
    90710815782233129152034SDRound Robin000---True
    907108157822331291521HDRound Robin000---True
    907146111351831291522HDRound Robin100---True
    90714611135183129152334SDRound Robin100---True
    90868513023219567462HDRound Robin1000---True
    9086851302321956746534SDRound Robin1000---True
    9086851302361956746434SDRound Robin25500---True
    90868513023630883208HDRound Robin25500---True
    908146111352131291522HDRound Robin200---True
    90814611135213129152334SDRound Robin200---True
    908146111352019567461HDRound Robin500---True
    90814611135201956746334SDRound Robin500---True
    90814611135223129152034SDRound Robin000---True
    908146111352231291521HDRound Robin000---True
    9106851302333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9106851302343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    911179660016431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91117966001643129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9116851302353129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91168513023531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016619567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001661956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001683129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91217966001673129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91320501015133129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151519567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91320501015151956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91317966001653129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    913179660016531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91420501015143129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151431291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91420501015173129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    915126648870231291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91512664887023129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91520501015163129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    915205010151631291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91612664887053129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91612664887033129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    917126648870631291522HDCapped130---True
    91712664887063129152334SDCapped130---True
    91749913950919567461HDCapped230---True
    9174991395091956746334SDCapped230---True
    91712664887043129152034SDCapped030---True
    917126648870431291521HDCapped030---True
    91849913951219567461HDCapped530---True
    9184991395121956746334SDCapped530---True
    9184991395103129152034SDCapped130---True
    91849913951031291521HDCapped130---True
    91849913951131291522HDCapped330---True
    9184991395113129152334SDCapped330---True
    919130346672019567462HDCapped330---True
    91913034667201956746534SDCapped330---True
    91913034667211956746434SDCapped430---True
    919130346672130883208HDCapped430---True
    919130346671831291522HDCapped130---True
    91913034667183129152334SDCapped130---True
    919130346672219567461HDCapped230---True
    91913034667221956746334SDCapped230---True
    9194991395133129152034SDCapped030---True
    91949913951331291521HDCapped030---True
    91913034667192138164534SDCapped530---True
    919130346671921381647HDCapped530---True
    920102357980019567461HDCapped230---True
    92010235798001956746334SDCapped230---True
    920102357980131291522HDCapped130---True
    92010235798013129152334SDCapped130---True
    92010235797993129152034SDCapped030---True
    920102357979931291521HDCapped030---True
    921174650401619567461HDCapped230---True
    92117465040161956746334SDCapped230---True
    921102357980231291522HDCapped130---True
    92110235798023129152334SDCapped130---True
    92110235798033129152034SDCapped030---True
    921102357980331291521HDCapped030---True
    922174650401819567461HDCapped230---True
    92217465040181956746334SDCapped230---True
    922174650401931291522HDCapped130---True
    92217465040193129152334SDCapped130---True
    92217465040173129152034SDCapped030---True
    922174650401731291521HDCapped030---True
    923174650401819567461HDCapped230---True
    92317465040181956746334SDCapped230---True
    923174650401931291522HDCapped130---True
    92317465040193129152334SDCapped130---True
    92317465040173129152034SDCapped030---True
    923174650401731291521HDCapped030---True
    92479217059320256780HDCapped810---True
    9247921705932025678134SDCapped810---True
    92479217059421991070HDCapped710---True
    9247921705942199107234SDCapped710---True
    9247921705903088321034SDCapped610---True
    92479217059030883212HDCapped610---True
    9242409500783088320934SDCapped510---True
    92424095007830883211HDCapped510---True
    9242409500761956746434SDCapped410---True
    92424095007630883208HDCapped410---True
    92424095007719567462HDCapped310---True
    9242409500771956746534SDCapped310---True
    92479217059220256782HDCapped910---True
    9247921705922025678334SDCapped910---True
    92424095007519567461HDCapped210---True
    9242409500751956746334SDCapped210---True
    92424095007431291522HDCapped110---True
    9242409500743129152334SDCapped110---True
    92417465040203129152034SDCapped010---True
    924174650402031291521HDCapped010---True
    92536822458620256780HDRound Robin800---True
    9253682245862025678134SDRound Robin800---True
    92536822458521991070HDRound Robin700---True
    9253682245852199107234SDRound Robin700---True
    9253682245843088321034SDRound Robin600---True
    92536822458430883212HDRound Robin600---True
    92517461458113088320934SDRound Robin500---True
    925174614581130883211HDRound Robin500---True
    92517461458131956746434SDRound Robin400---True
    925174614581330883208HDRound Robin400---True
    925174614581219567462HDRound Robin300---True
    92517461458121956746534SDRound Robin300---True
    925174614581419567461HDRound Robin200---True
    92517461458141956746334SDRound Robin200---True
    925174614581031291522HDRound Robin100---True
    92517461458103129152334SDRound Robin100---True
    9257921705913129152034SDRound Robin000---True
    92579217059131291521HDRound Robin000---True
    92536822458720256782HDRound Robin900---True
    9253682245872025678334SDRound Robin900---True
    926170828723720256780HDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    92617082872372025678134SDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    926170828723621991070HDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872362199107234SDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872353088321034SDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    926170828723530883212HDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    92617117179753088320934SDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    926171171797530883211HDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    92617117179741956746434SDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797430883208HDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797719567462HDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    92617117179771956746534SDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    926171171797619567461HDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    92617117179761956746334SDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    926171171797331291522HDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    92617117179733129152334SDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    9263682245883129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92636822458831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    926170828723820256782HDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    92617082872382025678334SDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    927193598863219567461HDRound Robin200---True
    92719359886321956746334SDRound Robin200---True
    927193598863131291522HDRound Robin100---True
    92719359886313129152334SDRound Robin100---True
    92717082872393129152034SDRound Robin000---True
    927170828723931291521HDRound Robin000---True
    928193598863431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    928193598863331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92911576563819567461HDCapped230---True
    9291157656381956746334SDCapped230---True
    92911576563531291522HDCapped130---True
    9291157656353129152334SDCapped130---True
    92919359886353129152034SDCapped030---True
    929193598863531291521HDCapped030---True
    +

    number of campaigns:208

    +Top +

    Assets

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    16940983893129152010134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    169409838931291521101HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    169409838831291522102HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    16940983883129152310234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    169409839019567461103HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    16940983901956746310334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    169409838719567462104HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    16940983871956746510434SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    20083005711956746410534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    200830057130883208105HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    20083005743088320910634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    200830057430883211106HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    20083005753088321010734SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    200830057530883212107HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    200830057221991069108HD29s14 S3 2018-05-10 16:08:332018-05-10 16:10:48
    200830057321991071110HD120s15 S18 2018-05-10 16:09:102018-05-10 16:32:36
    75995981621991070111HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    7599598162199107211134SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    7599598182025677911234SD10s15 S16 2018-05-10 16:09:052018-05-10 16:31:14
    75995981821991073112HD10s15 S23 2018-05-10 16:09:232018-05-10 17:04:14
    75995981920256780113HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    7599598192025678111334SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    75995981720256782114HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    7599598172025678311434SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    7599598203129152020134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    75995982031291521201HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    39200445831291522202HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    3920044583129152320234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    39200446219567461203HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    3920044621956746320334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    39200446019567462204HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    3920044601956746520434SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    3920044611956746420534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    39200446130883208205HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    3920044593088320920634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    39200445930883211206HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    6716669353088321020734SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    67166693530883212207HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    67166693921991069208HD29s14 S3 2018-05-10 16:08:332018-05-10 16:10:48
    67166693821991071210HD120s15 S18 2018-05-10 16:09:102018-05-10 16:32:36
    67166693721991070211HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    6716669372199107221134SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    6716669362025677921234SD10s15 S16 2018-05-10 16:09:052018-05-10 16:31:14
    67166693621991073212HD10s15 S23 2018-05-10 16:09:232018-05-10 17:04:14
    197387495120256780213HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    19738749512025678121334SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    197387495420256782214HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    19738749542025678321434SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    19738749553129152030134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    197387495531291521301HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    197387495231291522302HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    19738749523129152330234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    197387495319567461303HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    19738749531956746330334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    17101428919567462304HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    1710142891956746530434SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    1710142901956746430534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    17101429030883208305HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    1710142913088320930634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    17101429130883211306HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    1710142923088321030734SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    17101429230883212307HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    17101429321991069308HD29s14 S3 2018-05-10 16:08:332018-05-10 16:10:48
    68150616821991071310HD120s15 S18 2018-05-10 16:09:102018-05-10 16:32:36
    68150617121991070311HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    6815061712199107231134SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    6815061702025677931234SD10s15 S16 2018-05-10 16:09:052018-05-10 16:31:14
    68150617021991073312HD10s15 S23 2018-05-10 16:09:232018-05-10 17:04:14
    68150616920256780313HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    6815061692025678131334SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    68150617220256782314HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    6815061722025678331434SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    6313771843129152040134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    63137718431291521401HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    63137718831291522402HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    6313771883129152340234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    63137718519567461403HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    6313771851956746340334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    63137718719567462404HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    6313771871956746540434SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    6313771861956746440534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    63137718630883208405HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    4610872823088320940634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    46108728230883211406HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    4610872863088321040734SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    46108728630883212407HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    46108728421991069408HD29s14 S3 2018-05-10 16:08:332018-05-10 16:10:48
    46108728521991071410HD120s15 S18 2018-05-10 16:09:102018-05-10 16:32:36
    46108728321991070411HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    4610872832199107241134SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    8087174982025677941234SD10s15 S16 2018-05-10 16:09:052018-05-10 16:31:14
    80871749821991073412HD10s15 S23 2018-05-10 16:09:232018-05-10 17:04:14
    80871750120256780413HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    8087175012025678141334SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    80871750020256782414HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    8087175002025678341434SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    17873549731956746450534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    178735497330883208505HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    17873549743088320950634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    178735497430883211506HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    17873549753088321050734SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    178735497530883212507HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    137982908521991071510HD120s15 S18 2018-05-10 16:09:102018-05-10 16:32:36
    13798290862025677951234SD10s15 S16 2018-05-10 16:09:052018-05-10 16:31:14
    137982908621991073512HD10s15 S23 2018-05-10 16:09:232018-05-10 17:04:14
    75315121121991070515HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    7531512112199107251534SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    51624834231291522901HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    5162483423129152390134SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    51624834319567461901HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    5162483431956746390134SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    5162483443129152090134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    51624834431291521901HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    5162483413129152090234SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    51624834131291521902HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    66513911431291522902HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    6651391143129152390234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    66513911819567461902HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    6651391181956746390234SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    66513911519567461903HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    6651391151956746390334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    6651391163129152090334SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    66513911631291521903HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    66513911731291522903HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    6651391173129152390334SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    5661382013129152090434SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    56613820131291521904HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    56613820219567461904HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    5661382021956746390434SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    56613820331291522904HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    5661382033129152390434SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    56613820431291522905HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    5661382043129152390534SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    5661382053129152090534SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    56613820531291521905HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    108157822119567461905HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    10815782211956746390534SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    108157822219567461906HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    10815782221956746390634SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    108157822431291522906HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    10815782243129152390634SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    10815782253129152090634SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    108157822531291521906HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    10815782233129152090734SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    108157822331291521907HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    146111351831291522907HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    14611135183129152390734SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    146111351919567461907HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    14611135191956746390734SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    68513023219567462908HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    6851302321956746590834SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    6851302361956746490834SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    68513023630883208908HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    146111352019567461908HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    14611135201956746390834SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    146111352131291522908HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    14611135213129152390834SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    14611135223129152090834SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    146111352231291521908HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    6851302333129152091034SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    68513023331291521910HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    68513023431291522910HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    6851302343129152391034SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    6851302353129152091134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    68513023531291521911HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    179660016431291522911HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17966001643129152391134SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    179660016619567461912HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17966001661956746391234SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    179660016731291522912HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17966001673129152391234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    17966001683129152091234SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    179660016831291521912HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    17966001653129152091334SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    179660016531291521913HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    205010151331291522913HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    20501015133129152391334SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    205010151519567461913HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    20501015151956746391334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    20501015143129152091434SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    205010151431291521914HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    205010151731291522914HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    20501015173129152391434SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    126648870231291522915HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    12664887023129152391534SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    20501015163129152091534SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    205010151631291521915HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    126648870331291522916HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    12664887033129152391634SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    12664887053129152091634SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    126648870531291521916HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    49913950919567461917HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    4991395091956746391734SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    12664887043129152091734SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    126648870431291521917HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    126648870631291522917HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    12664887063129152391734SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    4991395103129152091834SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    49913951031291521918HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    49913951131291522918HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    4991395113129152391834SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    49913951219567461918HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    4991395121956746391834SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    4991395133129152091934SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    49913951331291521919HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    130346671831291522919HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    13034667183129152391934SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    13034667192138164591934SD30s11 S10 2018-05-10 16:08:492018-05-10 16:24:40
    130346671921381647919HD30s11 S11 2018-05-10 16:08:522018-05-10 16:25:50
    130346672019567462919HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    13034667201956746591934SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    13034667211956746491934SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    130346672130883208919HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    130346672219567461919HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    13034667221956746391934SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    10235797993129152092034SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    102357979931291521920HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    102357980019567461920HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    10235798001956746392034SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    102357980131291522920HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    10235798013129152392034SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    102357980231291522921HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    10235798023129152392134SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    10235798033129152092134SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    102357980331291521921HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    174650401619567461921HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17465040161956746392134SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    17465040173129152092234SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    174650401731291521922HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    174650401819567461922HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17465040181956746392234SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    174650401931291522922HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17465040193129152392234SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    17465040173129152092334SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    174650401731291521923HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    174650401819567461923HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17465040181956746392334SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    174650401931291522923HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17465040193129152392334SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    24095007431291522924HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    2409500743129152392434SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    24095007519567461924HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    2409500751956746392434SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    2409500761956746492434SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    24095007630883208924HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    24095007719567462924HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    2409500771956746592434SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    2409500783088320992434SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    24095007830883211924HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    7921705903088321092434SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    79217059030883212924HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    79217059220256782924HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    7921705922025678392434SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    79217059320256780924HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    7921705932025678192434SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    79217059421991070924HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    7921705942199107292434SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    17465040203129152092434SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    174650402031291521924HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    3682245843088321092534SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    36822458430883212925HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    36822458521991070925HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    3682245852199107292534SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    36822458620256780925HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    3682245862025678192534SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    36822458720256782925HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    3682245872025678392534SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    7921705913129152092534SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    79217059131291521925HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    174614581031291522925HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17461458103129152392534SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    17461458113088320992534SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    174614581130883211925HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    174614581219567462925HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    17461458121956746592534SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    17461458131956746492534SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    174614581330883208925HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    174614581419567461925HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17461458141956746392534SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    3682245883129152092634SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    36822458831291521926HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    17082872353088321092634SD9s18 S15 2018-05-10 16:09:022018-05-10 16:30:48
    170828723530883212926HD9s18 S6 2018-05-10 16:08:392018-05-10 16:16:58
    170828723621991070926HD10s18 S12 2018-05-10 16:08:542018-05-10 16:28:58
    17082872362199107292634SD10s18 S13 2018-05-10 16:08:572018-05-10 16:29:54
    170828723720256780926HD10s17 S17 2018-05-10 16:09:072018-05-10 16:31:40
    17082872372025678192634SD10s17 S14 2018-05-10 16:08:592018-05-10 16:30:20
    170828723820256782926HD10s17 S19 2018-05-10 16:09:122018-05-10 16:56:12
    17082872382025678392634SD10s17 S1 2018-05-10 16:08:282018-05-10 16:09:26
    171171797331291522926HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    17117179733129152392634SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    17117179741956746492634SD30s110 S2 2018-05-10 16:08:312018-05-10 16:09:42
    171171797430883208926HD30s110 S9 2018-05-10 16:08:462018-05-10 16:21:36
    17117179753088320992634SD10s18 S7 2018-05-10 16:08:412018-05-10 16:18:00
    171171797530883211926HD10s18 S22 2018-05-10 16:09:202018-05-10 17:03:06
    171171797619567461926HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    17117179761956746392634SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    171171797719567462926HD30s19 S20 2018-05-10 16:09:152018-05-10 16:56:50
    17117179771956746592634SD30s19 S27 2018-05-10 16:25:162018-05-10 17:08:42
    17082872393129152092734SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    170828723931291521927HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    193598863131291522927HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    19359886313129152392734SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    193598863219567461927HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    19359886321956746392734SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    19359886333129152092834SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    193598863331291521928HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    193598863431291522928HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    19359886343129152392834SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    11576563531291522929HD30s132 S4 2018-05-10 16:08:362018-05-10 16:13:50
    1157656353129152392934SD30s132 S26 2018-05-10 16:09:302018-05-10 17:07:30
    11576563819567461929HD30s126 S8 2018-05-10 16:08:442018-05-10 16:18:28
    1157656381956746392934SD30s126 S24 2018-05-10 16:09:252018-05-10 17:05:10
    19359886353129152092934SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    193598863531291521929HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    11576563931291520100034SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    115765639312915211000HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    11576563631291520100234SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    115765636312915211002HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    11576563731291520100434SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    115765637312915211004HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    109685497631291520100634SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    1096854976312915211006HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    109685498031291520100834SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    1096854980312915211008HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    109685497831291520101034SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    1096854978312915211010HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    109685497931291520101234SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    1096854979312915211012HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    109685497731291520101534SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    1096854977312915211015HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    92025709231291520101834SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    92025709331291520102034SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    920257093312915211020HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    92025709531291520102334SD30s143 S25 2018-05-10 16:09:282018-05-10 17:06:20
    920257095312915211023HD30s142 S21 2018-05-10 16:09:172018-05-10 16:59:58
    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets:26

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report100203.html b/servers/stbreports/cdb_report100203.html new file mode 100644 index 0000000..49eed74 --- /dev/null +++ b/servers/stbreports/cdb_report100203.html @@ -0,0 +1,8611 @@ + + + + +192.168.2.102 CDB Report + + + +
    +

    box name:192.168.2.102   ip address:192.168.2.102

    +

    report from:t100203.html   created at:1970-02-24 18:19:10   generated at:2019-08-15 16:31:32

    +

    number of campaigns:98

    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets: 26

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    10112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10812010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    20112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20512010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20612010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30112010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30212010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30312010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30512010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30712010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30812010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31012010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31112010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    31212010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    31412010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    40112010-08-10 06:00:002020-12-30 23:59:59100-550NoAdvFalseSubstitution
    40212010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40312010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    40512010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40612010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40712010-08-10 06:00:002020-12-30 23:59:59100-450NoAdvFalseSubstitution
    40812010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41012010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41112010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    41212010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41312010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    41412010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    50512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    60012010-08-10 06:00:002020-12-30 23:59:5900-000NoAdvFalseLive
    90112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90512010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    90612010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    90712010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    90812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91412010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    91512010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    91612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    91712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92112010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    92212010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    92312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    92412010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92512010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92612010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    100012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100212010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100412010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100612010-08-10 06:00:002020-12-30 23:59:5930-0100NoAdvFalseChild
    100812010-08-10 06:00:002020-12-30 23:59:59100-030NoAdvFalseChild
    101012010-08-10 06:00:002020-12-30 23:59:5910022018-05-10 17:30:0531002NoAdvFalseChild
    101212010-08-10 06:00:002020-12-30 23:59:59990-50500NoAdvFalseChild
    101512010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    101812010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102312010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    +

    number of campaigns:98

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    90151624834319567461HDRound Robin200---True
    9015162483431956746334SDRound Robin200---True
    9015162483443129152034SDRound Robin000---True
    90151624834431291521HDRound Robin000---True
    90151624834231291522HDRound Robin100---True
    9015162483423129152334SDRound Robin100---True
    90266513911431291522HDRound Robin100---True
    9026651391143129152334SDRound Robin100---True
    90266513911819567461HDRound Robin200---True
    9026651391181956746334SDRound Robin200---True
    9025162483413129152034SDRound Robin000---True
    90251624834131291521HDRound Robin000---True
    90366513911519567461HDRound Robin200---True
    9036651391151956746334SDRound Robin200---True
    9036651391163129152034SDRound Robin000---True
    90366513911631291521HDRound Robin000---True
    90366513911731291522HDRound Robin100---True
    9036651391173129152334SDRound Robin100---True
    90456613820331291522HDRound Robin500---True
    9045661382033129152334SDRound Robin500---True
    90456613820219567461HDRound Robin1000---True
    9045661382021956746334SDRound Robin1000---True
    9045661382013129152034SDRound Robin100---True
    90456613820131291521HDRound Robin100---True
    905108157822119567461HDRound Robin200---True
    90510815782211956746334SDRound Robin200---True
    9055661382053129152034SDRound Robin000---True
    90556613820531291521HDRound Robin000---True
    90556613820431291522HDRound Robin100---True
    9055661382043129152334SDRound Robin100---True
    906108157822431291522HDRound Robin100---True
    90610815782243129152334SDRound Robin100---True
    906108157822219567461HDRound Robin200---True
    90610815782221956746334SDRound Robin200---True
    90610815782253129152034SDRound Robin000---True
    906108157822531291521HDRound Robin000---True
    907146111351919567461HDRound Robin200---True
    90714611135191956746334SDRound Robin200---True
    90710815782233129152034SDRound Robin000---True
    907108157822331291521HDRound Robin000---True
    907146111351831291522HDRound Robin100---True
    90714611135183129152334SDRound Robin100---True
    90868513023219567462HDRound Robin1000---True
    9086851302321956746534SDRound Robin1000---True
    9086851302361956746434SDRound Robin25500---True
    90868513023630883208HDRound Robin25500---True
    908146111352131291522HDRound Robin200---True
    90814611135213129152334SDRound Robin200---True
    908146111352019567461HDRound Robin500---True
    90814611135201956746334SDRound Robin500---True
    90814611135223129152034SDRound Robin000---True
    908146111352231291521HDRound Robin000---True
    9106851302333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9106851302343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    911179660016431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91117966001643129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9116851302353129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91168513023531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016619567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001661956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001683129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91217966001673129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91320501015133129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151519567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91320501015151956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91317966001653129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    913179660016531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91420501015143129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151431291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91420501015173129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    915126648870231291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91512664887023129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91520501015163129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    915205010151631291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91612664887053129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91612664887033129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    917126648870631291522HDCapped130---True
    91712664887063129152334SDCapped130---True
    91749913950919567461HDCapped230---True
    9174991395091956746334SDCapped230---True
    91712664887043129152034SDCapped030---True
    917126648870431291521HDCapped030---True
    91849913951219567461HDCapped530---True
    9184991395121956746334SDCapped530---True
    9184991395103129152034SDCapped130---True
    91849913951031291521HDCapped130---True
    91849913951131291522HDCapped330---True
    9184991395113129152334SDCapped330---True
    919130346672019567462HDCapped330---True
    91913034667201956746534SDCapped330---True
    91913034667211956746434SDCapped430---True
    919130346672130883208HDCapped430---True
    919130346671831291522HDCapped130---True
    91913034667183129152334SDCapped130---True
    919130346672219567461HDCapped230---True
    91913034667221956746334SDCapped230---True
    9194991395133129152034SDCapped030---True
    91949913951331291521HDCapped030---True
    91913034667192138164534SDCapped530---True
    919130346671921381647HDCapped530---True
    920102357980019567461HDCapped230---True
    92010235798001956746334SDCapped230---True
    920102357980131291522HDCapped130---True
    92010235798013129152334SDCapped130---True
    92010235797993129152034SDCapped030---True
    920102357979931291521HDCapped030---True
    921174650401619567461HDCapped230---True
    92117465040161956746334SDCapped230---True
    921102357980231291522HDCapped130---True
    92110235798023129152334SDCapped130---True
    92110235798033129152034SDCapped030---True
    921102357980331291521HDCapped030---True
    922174650401819567461HDCapped230---True
    92217465040181956746334SDCapped230---True
    922174650401931291522HDCapped130---True
    92217465040193129152334SDCapped130---True
    92217465040173129152034SDCapped030---True
    922174650401731291521HDCapped030---True
    923174650401819567461HDCapped230---True
    92317465040181956746334SDCapped230---True
    923174650401931291522HDCapped130---True
    92317465040193129152334SDCapped130---True
    92317465040173129152034SDCapped030---True
    923174650401731291521HDCapped030---True
    92479217059320256780HDCapped810---True
    9247921705932025678134SDCapped810---True
    92479217059421991070HDCapped710---True
    9247921705942199107234SDCapped710---True
    9247921705903088321034SDCapped610---True
    92479217059030883212HDCapped610---True
    9242409500783088320934SDCapped510---True
    92424095007830883211HDCapped510---True
    9242409500761956746434SDCapped410---True
    92424095007630883208HDCapped410---True
    92424095007719567462HDCapped310---True
    9242409500771956746534SDCapped310---True
    92479217059220256782HDCapped910---True
    9247921705922025678334SDCapped910---True
    92424095007519567461HDCapped210---True
    9242409500751956746334SDCapped210---True
    92424095007431291522HDCapped110---True
    9242409500743129152334SDCapped110---True
    92417465040203129152034SDCapped010---True
    924174650402031291521HDCapped010---True
    92536822458620256780HDRound Robin800---True
    9253682245862025678134SDRound Robin800---True
    92536822458521991070HDRound Robin700---True
    9253682245852199107234SDRound Robin700---True
    9253682245843088321034SDRound Robin600---True
    92536822458430883212HDRound Robin600---True
    92517461458113088320934SDRound Robin500---True
    925174614581130883211HDRound Robin500---True
    92517461458131956746434SDRound Robin400---True
    925174614581330883208HDRound Robin400---True
    925174614581219567462HDRound Robin300---True
    92517461458121956746534SDRound Robin300---True
    925174614581419567461HDRound Robin200---True
    92517461458141956746334SDRound Robin200---True
    925174614581031291522HDRound Robin100---True
    92517461458103129152334SDRound Robin100---True
    9257921705913129152034SDRound Robin000---True
    92579217059131291521HDRound Robin000---True
    92536822458720256782HDRound Robin900---True
    9253682245872025678334SDRound Robin900---True
    926170828723720256780HDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    92617082872372025678134SDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    926170828723621991070HDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872362199107234SDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872353088321034SDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    926170828723530883212HDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    92617117179753088320934SDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    926171171797530883211HDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    92617117179741956746434SDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797430883208HDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797719567462HDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    92617117179771956746534SDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    926171171797619567461HDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    92617117179761956746334SDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    926171171797331291522HDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    92617117179733129152334SDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    9263682245883129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92636822458831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    926170828723820256782HDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    92617082872382025678334SDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    927193598863219567461HDRound Robin200---True
    92719359886321956746334SDRound Robin200---True
    927193598863131291522HDRound Robin100---True
    92719359886313129152334SDRound Robin100---True
    92717082872393129152034SDRound Robin000---True
    927170828723931291521HDRound Robin000---True
    928193598863431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    928193598863331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92911576563819567461HDCapped230---True
    9291157656381956746334SDCapped230---True
    92911576563531291522HDCapped130---True
    9291157656353129152334SDCapped130---True
    92919359886353129152034SDCapped030---True
    929193598863531291521HDCapped030---True
    +

    number of campaigns:208

    +Top +

    Assets

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    16940983893129152010134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    169409838931291521101HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    169409838831291522102HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    16940983883129152310234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    169409839019567461103HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    16940983901956746310334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    169409838719567462104HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    16940983871956746510434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    20083005711956746410534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    200830057130883208105HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    20083005743088320910634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    200830057430883211106HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    20083005753088321010734SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    200830057530883212107HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    200830057221991069108HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    200830057321991071110HD120s15 S19 2018-05-10 16:08:462018-05-10 16:32:36
    75995981621991070111HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    7599598162199107211134SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    7599598182025677911234SD10s15 S17 2018-05-10 16:08:402018-05-10 16:31:14
    75995981821991073112HD10s15 S24 2018-05-10 16:08:592018-05-10 17:04:14
    75995981920256780113HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    7599598192025678111334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    75995981720256782114HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    7599598172025678311434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    7599598203129152020134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    75995982031291521201HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    39200445831291522202HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    3920044583129152320234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    39200446219567461203HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    3920044621956746320334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    39200446019567462204HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    3920044601956746520434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    3920044611956746420534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    39200446130883208205HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    3920044593088320920634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    39200445930883211206HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    6716669353088321020734SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    67166693530883212207HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    67166693921991069208HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    67166693821991071210HD120s15 S19 2018-05-10 16:08:462018-05-10 16:32:36
    67166693721991070211HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    6716669372199107221134SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    6716669362025677921234SD10s15 S17 2018-05-10 16:08:402018-05-10 16:31:14
    67166693621991073212HD10s15 S24 2018-05-10 16:08:592018-05-10 17:04:14
    197387495120256780213HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    19738749512025678121334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    197387495420256782214HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    19738749542025678321434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    19738749553129152030134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    197387495531291521301HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    197387495231291522302HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    19738749523129152330234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    197387495319567461303HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    19738749531956746330334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    17101428919567462304HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    1710142891956746530434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    1710142901956746430534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    17101429030883208305HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    1710142913088320930634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    17101429130883211306HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    1710142923088321030734SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    17101429230883212307HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    17101429321991069308HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    68150616821991071310HD120s15 S19 2018-05-10 16:08:462018-05-10 16:32:36
    68150617121991070311HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    6815061712199107231134SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    6815061702025677931234SD10s15 S17 2018-05-10 16:08:402018-05-10 16:31:14
    68150617021991073312HD10s15 S24 2018-05-10 16:08:592018-05-10 17:04:14
    68150616920256780313HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    6815061692025678131334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    68150617220256782314HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    6815061722025678331434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    6313771843129152040134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    63137718431291521401HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    63137718831291522402HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    6313771883129152340234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    63137718519567461403HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6313771851956746340334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    63137718719567462404HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    6313771871956746540434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    6313771861956746440534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    63137718630883208405HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    4610872823088320940634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    46108728230883211406HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    4610872863088321040734SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    46108728630883212407HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    46108728421991069408HD29s14 S4 2018-05-10 16:08:092018-05-10 16:10:48
    46108728521991071410HD120s15 S19 2018-05-10 16:08:462018-05-10 16:32:36
    46108728321991070411HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    4610872832199107241134SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    8087174982025677941234SD10s15 S17 2018-05-10 16:08:402018-05-10 16:31:14
    80871749821991073412HD10s15 S24 2018-05-10 16:08:592018-05-10 17:04:14
    80871750120256780413HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    8087175012025678141334SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    80871750020256782414HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    8087175002025678341434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    17873549731956746450534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    178735497330883208505HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    17873549743088320950634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    178735497430883211506HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    17873549753088321050734SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    178735497530883212507HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    137982908521991071510HD120s15 S19 2018-05-10 16:08:462018-05-10 16:32:36
    13798290862025677951234SD10s15 S17 2018-05-10 16:08:402018-05-10 16:31:14
    137982908621991073512HD10s15 S24 2018-05-10 16:08:592018-05-10 17:04:14
    75315121121991070515HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    7531512112199107251534SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    51624834231291522901HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    5162483423129152390134SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    51624834319567461901HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    5162483431956746390134SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    5162483443129152090134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    51624834431291521901HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    5162483413129152090234SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    51624834131291521902HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    66513911431291522902HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    6651391143129152390234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    66513911819567461902HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6651391181956746390234SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    66513911519567461903HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    6651391151956746390334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    6651391163129152090334SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    66513911631291521903HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    66513911731291522903HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    6651391173129152390334SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    5661382013129152090434SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    56613820131291521904HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    56613820219567461904HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    5661382021956746390434SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    56613820331291522904HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    5661382033129152390434SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    56613820431291522905HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    5661382043129152390534SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    5661382053129152090534SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    56613820531291521905HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    108157822119567461905HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10815782211956746390534SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    108157822219567461906HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10815782221956746390634SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    108157822431291522906HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    10815782243129152390634SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    10815782253129152090634SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    108157822531291521906HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    10815782233129152090734SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    108157822331291521907HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    146111351831291522907HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    14611135183129152390734SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    146111351919567461907HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    14611135191956746390734SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    68513023219567462908HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    6851302321956746590834SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    6851302361956746490834SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    68513023630883208908HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    146111352019567461908HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    14611135201956746390834SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    146111352131291522908HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    14611135213129152390834SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    14611135223129152090834SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    146111352231291521908HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    6851302333129152091034SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    68513023331291521910HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    68513023431291522910HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    6851302343129152391034SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    6851302353129152091134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    68513023531291521911HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    179660016431291522911HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17966001643129152391134SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    179660016619567461912HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17966001661956746391234SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    179660016731291522912HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17966001673129152391234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17966001683129152091234SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    179660016831291521912HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    17966001653129152091334SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    179660016531291521913HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    205010151331291522913HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    20501015133129152391334SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    205010151519567461913HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    20501015151956746391334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    20501015143129152091434SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    205010151431291521914HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    205010151731291522914HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    20501015173129152391434SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    126648870231291522915HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    12664887023129152391534SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    20501015163129152091534SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    205010151631291521915HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    126648870331291522916HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    12664887033129152391634SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    12664887053129152091634SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    126648870531291521916HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    49913950919567461917HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    4991395091956746391734SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    12664887043129152091734SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    126648870431291521917HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    126648870631291522917HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    12664887063129152391734SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    4991395103129152091834SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    49913951031291521918HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    49913951131291522918HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    4991395113129152391834SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    49913951219567461918HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    4991395121956746391834SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    4991395133129152091934SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    49913951331291521919HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    130346671831291522919HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    13034667183129152391934SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    13034667192138164591934SD30s11 S11 2018-05-10 16:08:252018-05-10 16:24:40
    130346671921381647919HD30s11 S12 2018-05-10 16:08:272018-05-10 16:25:50
    130346672019567462919HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    13034667201956746591934SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    13034667211956746491934SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    130346672130883208919HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    130346672219567461919HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    13034667221956746391934SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    10235797993129152092034SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    102357979931291521920HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    102357980019567461920HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    10235798001956746392034SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    102357980131291522920HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    10235798013129152392034SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    102357980231291522921HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    10235798023129152392134SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    10235798033129152092134SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    102357980331291521921HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401619567461921HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040161956746392134SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    17465040173129152092234SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    174650401731291521922HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401819567461922HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040181956746392234SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    174650401931291522922HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17465040193129152392234SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17465040173129152092334SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    174650401731291521923HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174650401819567461923HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17465040181956746392334SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    174650401931291522923HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17465040193129152392334SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    24095007431291522924HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    2409500743129152392434SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    24095007519567461924HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    2409500751956746392434SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    2409500761956746492434SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    24095007630883208924HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    24095007719567462924HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    2409500771956746592434SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    2409500783088320992434SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    24095007830883211924HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    7921705903088321092434SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    79217059030883212924HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    79217059220256782924HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    7921705922025678392434SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    79217059320256780924HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    7921705932025678192434SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    79217059421991070924HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    7921705942199107292434SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    17465040203129152092434SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    174650402031291521924HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    3682245843088321092534SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    36822458430883212925HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    36822458521991070925HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    3682245852199107292534SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    36822458620256780925HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    3682245862025678192534SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    36822458720256782925HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    3682245872025678392534SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    7921705913129152092534SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    79217059131291521925HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    174614581031291522925HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17461458103129152392534SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17461458113088320992534SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    174614581130883211925HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    174614581219567462925HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    17461458121956746592534SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    17461458131956746492534SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    174614581330883208925HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    174614581419567461925HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17461458141956746392534SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    3682245883129152092634SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    36822458831291521926HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    17082872353088321092634SD9s18 S16 2018-05-10 16:08:382018-05-10 16:30:48
    170828723530883212926HD9s18 S7 2018-05-10 16:08:142018-05-10 16:16:58
    170828723621991070926HD10s18 S13 2018-05-10 16:08:302018-05-10 16:28:58
    17082872362199107292634SD10s18 S14 2018-05-10 16:08:322018-05-10 16:29:54
    170828723720256780926HD10s17 S18 2018-05-10 16:08:432018-05-10 16:31:40
    17082872372025678192634SD10s17 S15 2018-05-10 16:08:352018-05-10 16:30:20
    170828723820256782926HD10s17 S20 2018-05-10 16:08:482018-05-10 16:56:12
    17082872382025678392634SD10s17 S2 2018-05-10 16:08:042018-05-10 16:09:26
    171171797331291522926HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    17117179733129152392634SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    17117179741956746492634SD30s110 S3 2018-05-10 16:08:062018-05-10 16:09:42
    171171797430883208926HD30s110 S10 2018-05-10 16:08:222018-05-10 16:21:36
    17117179753088320992634SD10s18 S8 2018-05-10 16:08:172018-05-10 16:18:00
    171171797530883211926HD10s18 S23 2018-05-10 16:08:562018-05-10 17:03:06
    171171797619567461926HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    17117179761956746392634SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    171171797719567462926HD30s19 S21 2018-05-10 16:08:512018-05-10 16:56:50
    17117179771956746592634SD30s19 S1 2018-05-10 16:08:012018-05-10 16:08:16
    17082872393129152092734SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    170828723931291521927HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    193598863131291522927HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    19359886313129152392734SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    193598863219567461927HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    19359886321956746392734SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    19359886333129152092834SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    193598863331291521928HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    193598863431291522928HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    19359886343129152392834SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    11576563531291522929HD30s132 S5 2018-05-10 16:08:122018-05-10 16:13:50
    1157656353129152392934SD30s132 S27 2018-05-10 16:09:062018-05-10 17:07:30
    11576563819567461929HD30s126 S9 2018-05-10 16:08:192018-05-10 16:18:28
    1157656381956746392934SD30s126 S25 2018-05-10 16:09:012018-05-10 17:05:10
    19359886353129152092934SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    193598863531291521929HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    11576563931291520100034SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    115765639312915211000HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    11576563631291520100234SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    115765636312915211002HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    11576563731291520100434SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    115765637312915211004HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497631291520100634SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    1096854976312915211006HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685498031291520100834SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    1096854980312915211008HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497831291520101034SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    1096854978312915211010HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497931291520101234SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    1096854979312915211012HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    109685497731291520101534SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    1096854977312915211015HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    92025709231291520101834SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    92025709331291520102034SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    920257093312915211020HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    92025709531291520102334SD30s143 S26 2018-05-10 16:09:042018-05-10 17:06:20
    920257095312915211023HD30s142 S22 2018-05-10 16:08:532018-05-10 16:59:58
    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets:26

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report100204.html b/servers/stbreports/cdb_report100204.html new file mode 100644 index 0000000..f19db5c --- /dev/null +++ b/servers/stbreports/cdb_report100204.html @@ -0,0 +1,8611 @@ + + + + +192.168.3.100 CDB Report + + + +
    +

    box name:192.168.3.100   ip address:192.168.3.100

    +

    report from:t100204.html   created at:1970-02-24 18:19:10   generated at:2019-08-13 11:09:55

    +

    number of campaigns:98

    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets: 26

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    10112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    10812010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11112010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11312010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    11412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    20112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20512010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20612010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    20812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    21412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30112010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30212010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30312010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvFalseSubstitution
    30512010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    30612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    30712010-08-10 06:00:002020-12-30 23:59:59599990-5599990NoAdvFalseSubstitution
    30812010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31012010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31112010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    31212010-08-10 06:00:002020-12-30 23:59:59599990-2599990NoAdvFalseSubstitution
    31312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvFalseSubstitution
    31412010-08-10 06:00:002020-12-30 23:59:59599990-1599990NoAdvFalseSubstitution
    40112010-08-10 06:00:002020-12-30 23:59:59100-550NoAdvFalseSubstitution
    40212010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40312010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40412010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    40512010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    40612010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    40712010-08-10 06:00:002020-12-30 23:59:59100-450NoAdvFalseSubstitution
    40812010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41012010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41112010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    41212010-08-10 06:00:002020-12-30 23:59:59100-250NoAdvFalseSubstitution
    41312010-08-10 06:00:002020-12-30 23:59:59100-350NoAdvFalseSubstitution
    41412010-08-10 06:00:002020-12-30 23:59:59100-150NoAdvFalseSubstitution
    50512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50612010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    50712010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51012010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51212010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    51512010-08-10 06:00:002020-12-30 23:59:59100-050NoAdvFalseSubstitution
    60012010-08-10 06:00:002020-12-30 23:59:5900-000NoAdvFalseLive
    90112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90412010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    90512010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    90612010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    90712010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    90812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91112010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91212010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91312010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91412010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    91512010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    91612010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    91712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    91912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92012010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92112010-08-10 06:00:002020-12-30 23:59:5930-050NoAdvTrueSubstitution
    92212010-08-10 06:00:002020-12-30 23:59:5950-030NoAdvTrueSubstitution
    92312010-08-10 06:00:002020-12-30 23:59:59599990-3599990NoAdvTrueSubstitution
    92412010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92512010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92612010-08-10 06:00:002020-12-30 23:59:59200-0200NoAdvTrueSubstitution
    92712010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92812010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    92912010-08-10 06:00:002020-12-30 23:59:59599990-0599990NoAdvTrueSubstitution
    100012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100212010-08-10 06:00:002020-12-30 23:59:5910012018-05-10 17:16:0501001NoAdvFalseChild
    100412010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    100612010-08-10 06:00:002020-12-30 23:59:5930-0100NoAdvFalseChild
    100812010-08-10 06:00:002020-12-30 23:59:59100-030NoAdvFalseChild
    101012010-08-10 06:00:002020-12-30 23:59:591000-31000NoAdvFalseChild
    101212010-08-10 06:00:002020-12-30 23:59:59990-50500NoAdvFalseChild
    101512010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    101812010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102012010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    102312010-08-10 06:00:002020-12-30 23:59:591000-01000NoAdvFalseChild
    +

    number of campaigns:98

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    90151624834319567461HDRound Robin200---True
    9015162483431956746334SDRound Robin200---True
    9015162483443129152034SDRound Robin000---True
    90151624834431291521HDRound Robin000---True
    90151624834231291522HDRound Robin100---True
    9015162483423129152334SDRound Robin100---True
    90266513911431291522HDRound Robin100---True
    9026651391143129152334SDRound Robin100---True
    90266513911819567461HDRound Robin200---True
    9026651391181956746334SDRound Robin200---True
    9025162483413129152034SDRound Robin000---True
    90251624834131291521HDRound Robin000---True
    90366513911519567461HDRound Robin200---True
    9036651391151956746334SDRound Robin200---True
    9036651391163129152034SDRound Robin000---True
    90366513911631291521HDRound Robin000---True
    90366513911731291522HDRound Robin100---True
    9036651391173129152334SDRound Robin100---True
    90456613820331291522HDRound Robin500---True
    9045661382033129152334SDRound Robin500---True
    90456613820219567461HDRound Robin1000---True
    9045661382021956746334SDRound Robin1000---True
    9045661382013129152034SDRound Robin100---True
    90456613820131291521HDRound Robin100---True
    905108157822119567461HDRound Robin200---True
    90510815782211956746334SDRound Robin200---True
    9055661382053129152034SDRound Robin000---True
    90556613820531291521HDRound Robin000---True
    90556613820431291522HDRound Robin100---True
    9055661382043129152334SDRound Robin100---True
    906108157822431291522HDRound Robin100---True
    90610815782243129152334SDRound Robin100---True
    906108157822219567461HDRound Robin200---True
    90610815782221956746334SDRound Robin200---True
    90610815782253129152034SDRound Robin000---True
    906108157822531291521HDRound Robin000---True
    907146111351919567461HDRound Robin200---True
    90714611135191956746334SDRound Robin200---True
    90710815782233129152034SDRound Robin000---True
    907108157822331291521HDRound Robin000---True
    907146111351831291522HDRound Robin100---True
    90714611135183129152334SDRound Robin100---True
    90868513023219567462HDRound Robin1000---True
    9086851302321956746534SDRound Robin1000---True
    9086851302361956746434SDRound Robin25500---True
    90868513023630883208HDRound Robin25500---True
    908146111352131291522HDRound Robin200---True
    90814611135213129152334SDRound Robin200---True
    908146111352019567461HDRound Robin500---True
    90814611135201956746334SDRound Robin500---True
    90814611135223129152034SDRound Robin000---True
    908146111352231291521HDRound Robin000---True
    9106851302333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91068513023431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9106851302343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    911179660016431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91117966001643129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    9116851302353129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91168513023531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016619567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001661956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91217966001683129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    912179660016731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91217966001673129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91320501015133129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    913205010151519567461HDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91320501015151956746334SDDate Bound0002018-05-12 00:00:012018-05-13 00:00:00-False
    91317966001653129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    913179660016531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91420501015143129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151431291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    914205010151731291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91420501015173129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    915126648870231291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91512664887023129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91520501015163129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    915205010151631291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    91612664887053129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870531291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    916126648870331291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    91612664887033129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    917126648870631291522HDCapped130---True
    91712664887063129152334SDCapped130---True
    91749913950919567461HDCapped230---True
    9174991395091956746334SDCapped230---True
    91712664887043129152034SDCapped030---True
    917126648870431291521HDCapped030---True
    91849913951219567461HDCapped530---True
    9184991395121956746334SDCapped530---True
    9184991395103129152034SDCapped130---True
    91849913951031291521HDCapped130---True
    91849913951131291522HDCapped330---True
    9184991395113129152334SDCapped330---True
    919130346672019567462HDCapped330---True
    91913034667201956746534SDCapped330---True
    91913034667211956746434SDCapped430---True
    919130346672130883208HDCapped430---True
    919130346671831291522HDCapped130---True
    91913034667183129152334SDCapped130---True
    919130346672219567461HDCapped230---True
    91913034667221956746334SDCapped230---True
    9194991395133129152034SDCapped030---True
    91949913951331291521HDCapped030---True
    91913034667192138164534SDCapped530---True
    919130346671921381647HDCapped530---True
    920102357980019567461HDCapped230---True
    92010235798001956746334SDCapped230---True
    920102357980131291522HDCapped130---True
    92010235798013129152334SDCapped130---True
    92010235797993129152034SDCapped030---True
    920102357979931291521HDCapped030---True
    921174650401619567461HDCapped230---True
    92117465040161956746334SDCapped230---True
    921102357980231291522HDCapped130---True
    92110235798023129152334SDCapped130---True
    92110235798033129152034SDCapped030---True
    921102357980331291521HDCapped030---True
    922174650401819567461HDCapped230---True
    92217465040181956746334SDCapped230---True
    922174650401931291522HDCapped130---True
    92217465040193129152334SDCapped130---True
    92217465040173129152034SDCapped030---True
    922174650401731291521HDCapped030---True
    923174650401819567461HDCapped230---True
    92317465040181956746334SDCapped230---True
    923174650401931291522HDCapped130---True
    92317465040193129152334SDCapped130---True
    92317465040173129152034SDCapped030---True
    923174650401731291521HDCapped030---True
    92479217059320256780HDCapped810---True
    9247921705932025678134SDCapped810---True
    92479217059421991070HDCapped710---True
    9247921705942199107234SDCapped710---True
    9247921705903088321034SDCapped610---True
    92479217059030883212HDCapped610---True
    9242409500783088320934SDCapped510---True
    92424095007830883211HDCapped510---True
    9242409500761956746434SDCapped410---True
    92424095007630883208HDCapped410---True
    92424095007719567462HDCapped310---True
    9242409500771956746534SDCapped310---True
    92479217059220256782HDCapped910---True
    9247921705922025678334SDCapped910---True
    92424095007519567461HDCapped210---True
    9242409500751956746334SDCapped210---True
    92424095007431291522HDCapped110---True
    9242409500743129152334SDCapped110---True
    92417465040203129152034SDCapped010---True
    924174650402031291521HDCapped010---True
    92536822458620256780HDRound Robin800---True
    9253682245862025678134SDRound Robin800---True
    92536822458521991070HDRound Robin700---True
    9253682245852199107234SDRound Robin700---True
    9253682245843088321034SDRound Robin600---True
    92536822458430883212HDRound Robin600---True
    92517461458113088320934SDRound Robin500---True
    925174614581130883211HDRound Robin500---True
    92517461458131956746434SDRound Robin400---True
    925174614581330883208HDRound Robin400---True
    925174614581219567462HDRound Robin300---True
    92517461458121956746534SDRound Robin300---True
    925174614581419567461HDRound Robin200---True
    92517461458141956746334SDRound Robin200---True
    925174614581031291522HDRound Robin100---True
    92517461458103129152334SDRound Robin100---True
    9257921705913129152034SDRound Robin000---True
    92579217059131291521HDRound Robin000---True
    92536822458720256782HDRound Robin900---True
    9253682245872025678334SDRound Robin900---True
    926170828723720256780HDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    92617082872372025678134SDDate Bound0002018-05-11 04:00:002018-05-11 05:00:00-False
    926170828723621991070HDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872362199107234SDDate Bound0002018-05-11 03:00:002018-05-11 03:30:00-False
    92617082872353088321034SDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    926170828723530883212HDDate Bound0002018-05-11 02:30:002018-05-11 03:00:00-False
    92617117179753088320934SDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    926171171797530883211HDDate Bound0002018-05-11 02:00:002018-05-11 02:30:00-False
    92617117179741956746434SDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797430883208HDDate Bound0002018-05-11 01:30:002018-05-11 02:00:00-False
    926171171797719567462HDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    92617117179771956746534SDDate Bound0002018-05-11 01:00:002018-05-11 01:30:00-False
    926171171797619567461HDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    92617117179761956746334SDDate Bound0002018-05-11 00:30:002018-05-11 01:00:00-False
    926171171797331291522HDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    92617117179733129152334SDDate Bound0002018-05-11 00:01:002018-05-11 00:30:00-False
    9263682245883129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92636822458831291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    926170828723820256782HDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    92617082872382025678334SDDate Bound0002018-05-11 05:00:002018-05-11 06:00:00-False
    927193598863219567461HDRound Robin200---True
    92719359886321956746334SDRound Robin200---True
    927193598863131291522HDRound Robin100---True
    92719359886313129152334SDRound Robin100---True
    92717082872393129152034SDRound Robin000---True
    927170828723931291521HDRound Robin000---True
    928193598863431291522HDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886343129152334SDDate Bound0002018-05-11 00:00:012018-05-12 00:00:00-False
    92819359886333129152034SDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    928193598863331291521HDDate Bound0002018-05-10 00:00:002018-05-11 00:00:00-False
    92911576563819567461HDCapped230---True
    9291157656381956746334SDCapped230---True
    92911576563531291522HDCapped130---True
    9291157656353129152334SDCapped130---True
    92919359886353129152034SDCapped030---True
    929193598863531291521HDCapped030---True
    +

    number of campaigns:208

    +Top +

    Assets

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    16940983893129152010134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    169409838931291521101HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    169409838831291522102HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    16940983883129152310234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    169409839019567461103HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    16940983901956746310334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    169409838719567462104HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    16940983871956746510434SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    20083005711956746410534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    200830057130883208105HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    20083005743088320910634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    200830057430883211106HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    20083005753088321010734SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    200830057530883212107HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    200830057221991069108HD29s14 S3 2018-05-10 16:09:012018-05-10 16:10:48
    200830057321991071110HD120s15 S18 2018-05-10 16:09:372018-05-10 16:32:36
    75995981621991070111HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    7599598162199107211134SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    7599598182025677911234SD10s15 S16 2018-05-10 16:09:322018-05-10 16:31:14
    75995981821991073112HD10s15 S23 2018-05-10 16:09:502018-05-10 17:04:14
    75995981920256780113HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    7599598192025678111334SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    75995981720256782114HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    7599598172025678311434SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    7599598203129152020134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    75995982031291521201HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    39200445831291522202HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    3920044583129152320234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    39200446219567461203HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    3920044621956746320334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    39200446019567462204HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    3920044601956746520434SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    3920044611956746420534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    39200446130883208205HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    3920044593088320920634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    39200445930883211206HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    6716669353088321020734SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    67166693530883212207HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    67166693921991069208HD29s14 S3 2018-05-10 16:09:012018-05-10 16:10:48
    67166693821991071210HD120s15 S18 2018-05-10 16:09:372018-05-10 16:32:36
    67166693721991070211HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    6716669372199107221134SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    6716669362025677921234SD10s15 S16 2018-05-10 16:09:322018-05-10 16:31:14
    67166693621991073212HD10s15 S23 2018-05-10 16:09:502018-05-10 17:04:14
    197387495120256780213HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    19738749512025678121334SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    197387495420256782214HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    19738749542025678321434SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    19738749553129152030134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    197387495531291521301HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    197387495231291522302HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    19738749523129152330234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    197387495319567461303HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    19738749531956746330334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    17101428919567462304HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    1710142891956746530434SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    1710142901956746430534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    17101429030883208305HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    1710142913088320930634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    17101429130883211306HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    1710142923088321030734SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    17101429230883212307HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    17101429321991069308HD29s14 S3 2018-05-10 16:09:012018-05-10 16:10:48
    68150616821991071310HD120s15 S18 2018-05-10 16:09:372018-05-10 16:32:36
    68150617121991070311HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    6815061712199107231134SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    6815061702025677931234SD10s15 S16 2018-05-10 16:09:322018-05-10 16:31:14
    68150617021991073312HD10s15 S23 2018-05-10 16:09:502018-05-10 17:04:14
    68150616920256780313HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    6815061692025678131334SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    68150617220256782314HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    6815061722025678331434SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    6313771843129152040134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    63137718431291521401HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    63137718831291522402HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    6313771883129152340234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    63137718519567461403HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    6313771851956746340334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    63137718719567462404HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    6313771871956746540434SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    6313771861956746440534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    63137718630883208405HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    4610872823088320940634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    46108728230883211406HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    4610872863088321040734SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    46108728630883212407HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    46108728421991069408HD29s14 S3 2018-05-10 16:09:012018-05-10 16:10:48
    46108728521991071410HD120s15 S18 2018-05-10 16:09:372018-05-10 16:32:36
    46108728321991070411HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    4610872832199107241134SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    8087174982025677941234SD10s15 S16 2018-05-10 16:09:322018-05-10 16:31:14
    80871749821991073412HD10s15 S23 2018-05-10 16:09:502018-05-10 17:04:14
    80871750120256780413HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    8087175012025678141334SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    80871750020256782414HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    8087175002025678341434SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    17873549731956746450534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    178735497330883208505HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    17873549743088320950634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    178735497430883211506HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    17873549753088321050734SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    178735497530883212507HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    137982908521991071510HD120s15 S18 2018-05-10 16:09:372018-05-10 16:32:36
    13798290862025677951234SD10s15 S16 2018-05-10 16:09:322018-05-10 16:31:14
    137982908621991073512HD10s15 S23 2018-05-10 16:09:502018-05-10 17:04:14
    75315121121991070515HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    7531512112199107251534SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    51624834231291522901HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    5162483423129152390134SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    51624834319567461901HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    5162483431956746390134SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    5162483443129152090134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    51624834431291521901HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    5162483413129152090234SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    51624834131291521902HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    66513911431291522902HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    6651391143129152390234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    66513911819567461902HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    6651391181956746390234SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    66513911519567461903HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    6651391151956746390334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    6651391163129152090334SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    66513911631291521903HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    66513911731291522903HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    6651391173129152390334SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    5661382013129152090434SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    56613820131291521904HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    56613820219567461904HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    5661382021956746390434SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    56613820331291522904HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    5661382033129152390434SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    56613820431291522905HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    5661382043129152390534SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    5661382053129152090534SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    56613820531291521905HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    108157822119567461905HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    10815782211956746390534SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    108157822219567461906HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    10815782221956746390634SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    108157822431291522906HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    10815782243129152390634SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    10815782253129152090634SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    108157822531291521906HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    10815782233129152090734SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    108157822331291521907HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    146111351831291522907HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    14611135183129152390734SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    146111351919567461907HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    14611135191956746390734SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    68513023219567462908HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    6851302321956746590834SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    6851302361956746490834SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    68513023630883208908HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    146111352019567461908HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    14611135201956746390834SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    146111352131291522908HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    14611135213129152390834SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    14611135223129152090834SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    146111352231291521908HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    6851302333129152091034SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    68513023331291521910HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    68513023431291522910HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    6851302343129152391034SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    6851302353129152091134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    68513023531291521911HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    179660016431291522911HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17966001643129152391134SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    179660016619567461912HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17966001661956746391234SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    179660016731291522912HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17966001673129152391234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    17966001683129152091234SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    179660016831291521912HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    17966001653129152091334SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    179660016531291521913HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    205010151331291522913HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    20501015133129152391334SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    205010151519567461913HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    20501015151956746391334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    20501015143129152091434SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    205010151431291521914HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    205010151731291522914HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    20501015173129152391434SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    126648870231291522915HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    12664887023129152391534SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    20501015163129152091534SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    205010151631291521915HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    126648870331291522916HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    12664887033129152391634SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    12664887053129152091634SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    126648870531291521916HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    49913950919567461917HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    4991395091956746391734SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    12664887043129152091734SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    126648870431291521917HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    126648870631291522917HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    12664887063129152391734SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    4991395103129152091834SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    49913951031291521918HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    49913951131291522918HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    4991395113129152391834SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    49913951219567461918HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    4991395121956746391834SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    4991395133129152091934SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    49913951331291521919HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    130346671831291522919HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    13034667183129152391934SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    13034667192138164591934SD30s11 S10 2018-05-10 16:09:162018-05-10 16:24:40
    130346671921381647919HD30s11 S11 2018-05-10 16:09:192018-05-10 16:25:50
    130346672019567462919HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    13034667201956746591934SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    13034667211956746491934SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    130346672130883208919HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    130346672219567461919HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    13034667221956746391934SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    10235797993129152092034SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    102357979931291521920HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    102357980019567461920HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    10235798001956746392034SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    102357980131291522920HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    10235798013129152392034SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    102357980231291522921HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    10235798023129152392134SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    10235798033129152092134SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    102357980331291521921HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    174650401619567461921HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17465040161956746392134SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    17465040173129152092234SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    174650401731291521922HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    174650401819567461922HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17465040181956746392234SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    174650401931291522922HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17465040193129152392234SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    17465040173129152092334SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    174650401731291521923HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    174650401819567461923HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17465040181956746392334SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    174650401931291522923HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17465040193129152392334SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    24095007431291522924HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    2409500743129152392434SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    24095007519567461924HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    2409500751956746392434SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    2409500761956746492434SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    24095007630883208924HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    24095007719567462924HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    2409500771956746592434SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    2409500783088320992434SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    24095007830883211924HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    7921705903088321092434SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    79217059030883212924HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    79217059220256782924HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    7921705922025678392434SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    79217059320256780924HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    7921705932025678192434SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    79217059421991070924HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    7921705942199107292434SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    17465040203129152092434SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    174650402031291521924HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    3682245843088321092534SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    36822458430883212925HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    36822458521991070925HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    3682245852199107292534SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    36822458620256780925HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    3682245862025678192534SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    36822458720256782925HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    3682245872025678392534SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    7921705913129152092534SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    79217059131291521925HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    174614581031291522925HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17461458103129152392534SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    17461458113088320992534SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    174614581130883211925HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    174614581219567462925HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    17461458121956746592534SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    17461458131956746492534SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    174614581330883208925HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    174614581419567461925HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17461458141956746392534SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    3682245883129152092634SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    36822458831291521926HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    17082872353088321092634SD9s18 S15 2018-05-10 16:09:292018-05-10 16:30:48
    170828723530883212926HD9s18 S6 2018-05-10 16:09:062018-05-10 16:16:58
    170828723621991070926HD10s18 S12 2018-05-10 16:09:222018-05-10 16:28:58
    17082872362199107292634SD10s18 S13 2018-05-10 16:09:242018-05-10 16:29:54
    170828723720256780926HD10s17 S17 2018-05-10 16:09:352018-05-10 16:31:40
    17082872372025678192634SD10s17 S14 2018-05-10 16:09:272018-05-10 16:30:20
    170828723820256782926HD10s17 S19 2018-05-10 16:09:402018-05-10 16:56:12
    17082872382025678392634SD10s17 S1 2018-05-10 16:08:562018-05-10 16:09:26
    171171797331291522926HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    17117179733129152392634SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    17117179741956746492634SD30s110 S2 2018-05-10 16:08:582018-05-10 16:09:42
    171171797430883208926HD30s110 S9 2018-05-10 16:09:142018-05-10 16:21:36
    17117179753088320992634SD10s18 S7 2018-05-10 16:09:092018-05-10 16:18:00
    171171797530883211926HD10s18 S22 2018-05-10 16:09:482018-05-10 17:03:06
    171171797619567461926HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    17117179761956746392634SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    171171797719567462926HD30s19 S20 2018-05-10 16:09:432018-05-10 16:56:50
    17117179771956746592634SD30s19 S27 2018-05-10 16:10:012018-05-10 17:08:42
    17082872393129152092734SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    170828723931291521927HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    193598863131291522927HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    19359886313129152392734SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    193598863219567461927HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    19359886321956746392734SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    19359886333129152092834SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    193598863331291521928HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    193598863431291522928HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    19359886343129152392834SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    11576563531291522929HD30s132 S4 2018-05-10 16:09:032018-05-10 16:13:50
    1157656353129152392934SD30s132 S26 2018-05-10 16:09:582018-05-10 17:07:30
    11576563819567461929HD30s126 S8 2018-05-10 16:09:112018-05-10 16:18:28
    1157656381956746392934SD30s126 S24 2018-05-10 16:09:532018-05-10 17:05:10
    19359886353129152092934SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    193598863531291521929HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    11576563931291520100034SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    115765639312915211000HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    11576563631291520100234SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    115765636312915211002HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    11576563731291520100434SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    115765637312915211004HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    109685497631291520100634SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    1096854976312915211006HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    109685498031291520100834SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    1096854980312915211008HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    109685497831291520101034SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    1096854978312915211010HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    109685497931291520101234SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    1096854979312915211012HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    109685497731291520101534SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    1096854977312915211015HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    92025709231291520101834SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    92025709331291520102034SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    920257093312915211020HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    92025709531291520102334SD30s143 S25 2018-05-10 16:09:562018-05-10 17:06:20
    920257095312915211023HD30s142 S21 2018-05-10 16:09:452018-05-10 16:59:58
    +

    unique assets:26   downloaded assets:26   deleted assets:0   total assets:26

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report2.html b/servers/stbreports/cdb_report2.html new file mode 100644 index 0000000..392e1bb --- /dev/null +++ b/servers/stbreports/cdb_report2.html @@ -0,0 +1,99 @@ + + + + +192.168.1.102 CDB Report + + + +
    +

    box name:192.168.1.102   ip address:192.168.1.102

    +

    report from:t2.html   created at:1970-02-24 18:19:10   generated at:2019-05-14 15:37:54

    +

    number of campaigns:0

    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets: 0

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    +

    number of campaigns:0

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    +

    number of campaigns:0

    +Top +

    Assets

    + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets:0

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report3.html b/servers/stbreports/cdb_report3.html new file mode 100644 index 0000000..49985b4 --- /dev/null +++ b/servers/stbreports/cdb_report3.html @@ -0,0 +1,99 @@ + + + + +192.168.2.102 CDB Report + + + +
    +

    box name:192.168.2.102   ip address:192.168.2.102

    +

    report from:t3.html   created at:1970-02-24 18:19:10   generated at:2019-05-14 15:37:54

    +

    number of campaigns:0

    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets: 0

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    +

    number of campaigns:0

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    +

    number of campaigns:0

    +Top +

    Assets

    + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets:0

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report4.html b/servers/stbreports/cdb_report4.html new file mode 100644 index 0000000..38415c7 --- /dev/null +++ b/servers/stbreports/cdb_report4.html @@ -0,0 +1,99 @@ + + + + +192.168.3.101 CDB Report + + + +
    +

    box name:192.168.3.101   ip address:192.168.3.101

    +

    report from:t4.html   created at:1970-02-24 18:19:10   generated at:2019-05-14 15:37:54

    +

    number of campaigns:0

    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets: 0

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    +

    number of campaigns:0

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    +

    number of campaigns:0

    +Top +

    Assets

    + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets:0

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbreports/cdb_report60902.html b/servers/stbreports/cdb_report60902.html new file mode 100644 index 0000000..70c2927 --- /dev/null +++ b/servers/stbreports/cdb_report60902.html @@ -0,0 +1,99 @@ + + + + +10.64.155.9 CDB Report + + + +
    +

    box name:10.64.155.9   ip address:10.64.155.9

    +

    report from:t60902.html   created at:1970-02-24 18:19:10   generated at:2019-05-21 15:16:10

    +

    number of campaigns:0

    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets: 0

    +CRTs

      

    +Copy Rotation

      

    +Assets

      

    +MFDs

    Campaigns

    + + + + + + + + + + + + + + + +
    Campaign IDVersionStart TimeEnd TimeHousehold CapHousehold CountLast ShownSpacingDaily CapDaily CountBARB ReportAdv/PromoCopy RotationType
    +

    number of campaigns:0

    +Top +

    CRTs

    + + + + + + +
    Campaign IDExpiration DateDeletion TimeDaily CountHousehold Count
    +

    number of campaigns:0

    +Top +

    Copy Rotation

    + + + + + + + + + + + + + +
    Campaign IDAd IDUpidEncodingRotation MethodOrder NumberMaximum ImpressionsUsed ImpressionsStart DateEnd DateLast ShownEnforce All
    +

    number of campaigns:0

    +Top +

    Assets

    + + + + + + + + + + + +
    Ad IDUpidCampaign IDEncodingDurationAvailableRef CountLocationBooking TimeStart Time
    +

    unique assets:0   downloaded assets:0   deleted assets:0   total assets:0

    +Top

    Marked for Deletion

    + + + + + + +
    UPIDBooking IDDurationBooking TimeStart Time
    +

    number of MFDs:0

    +Top +
    diff --git a/servers/stbserver.py b/servers/stbserver.py new file mode 100644 index 0000000..341900f --- /dev/null +++ b/servers/stbserver.py @@ -0,0 +1,82 @@ +''' +STB EXTRACTOR SERVER +CREATOR: GBL06 +''' + +import psutil +import os +from flask import Flask, request, jsonify +from autosmart_v2.runner import Runner +from autosmart_v2.utils.utils import createFileLogger +from autosmart_v2.config.config import Config + +VERSION = 1.2 +LOG_FILE = Config['stbserverLog'] +APP_PATH = Config['stbappPath'] +REPORT_PATH = Config['extractorReports'] + +logger = createFileLogger(LOG_FILE) +app = Flask(__name__) + +IP_CHANGE = { + "10.184.130.78": "192.168.0.100", #TITAN + "10.184.130.81": "192.168.1.102", #XWING + "10.184.130.13": "192.168.2.102", #FALCONV2 + "10.184.130.12": "192.168.3.100" #FALCOND1 +} + + +@app.route('/stbExtract', methods=['GET']) +def stbExtract(): + # ip = IP_CHANGE[str(request.args['ip'])] + ip_recieved = request.args['ip'] + ip = str(ip_recieved) + report_no = request.args['report_no'] + dos_command = APP_PATH + " get_report " + IP_CHANGE[ip] + " stbreports " + report_no + response = {} + print("Stb extract") + try: + for proc in psutil.process_iter(): + if proc.name == 'STB_Extractor.exe': + logger.error('STB Extractor Application running. Ending process') + proc.kill() + + logger.info('Command being run:' + dos_command) + extractor_runner = Runner(logger) + extractor_runner.start_run(dos_command, False) + logger.info('Command successful') + response["data"] = { + "name": ip, + "status": "Report Extracted" + } + except Exception as exc: + logger.error('Command failed') + response["error"] = { + "name": ip, + "status": "Report unable to extract" + } + + return jsonify(response) + + +@app.route('/extractorFiles') +def extractor_files(): + files = [] + # r=root, d=directories, f = files + for r, d, f in os.walk(REPORT_PATH): + for f_name in f: + if f_name.endswith('.html'): + + files.append(f_name) + + # with os.scandir(STREAMS_LOC) as entries: + # for entry in entries: + # if entry.is_dir(): + # files.append(entry.name) + + return files + +if __name__ == '__main__': + app.run(debug=True, host='0.0.0.0', port=9898) + +# http://localhost:5000/stbExtract?ip=192.168.3.101&report_no=1 diff --git a/servers/streamserver.py b/servers/streamserver.py new file mode 100644 index 0000000..677c63c --- /dev/null +++ b/servers/streamserver.py @@ -0,0 +1,151 @@ +''' +STREAM EXPRESS SERVER +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + + +from flask import Flask, request, jsonify +import traceback, os +from autosmart_v2.utils.utils import createFileLogger +from autosmart_v2.streamplayer import StreamPlayer +from autosmart_v2.config.config import Config + +VERSION = 1.5 +LOG_FILE = Config['streamserverLog'] +STREAMS_LOC = Config['streamsLocation'] +# DEBUG = os.getenviron("FLASK_DEBUG") +logger = createFileLogger(LOG_FILE) +app = Flask(__name__) + + +class Controller(): + def __init__(self): + logger.info("creating") + self.player = StreamPlayer( + name="player1", + status="Created", + stream="No stream selected", + logger=logger, + counter = 0 + ) + + +controller = Controller() + + +@app.route('/status', methods=['GET']) +def status(): + print("status") + response = {} + + try: + controller.player.status() + + response["data"] = { + "name": controller.player.name, + "status": controller.player.status, + "stream": controller.player.stream, + "clients": controller.player.counter + + } + except Exception as exc: + response["error"] = [ + str(exc), + traceback.format_exc() + ] + + return jsonify(response) + + +@app.route('/startstream', methods=['GET']) +def startstream(): + clients = request.args['clients'] + stream_name = request.args['stream'] + '.ts' + # controller.counter += 1 + logger.info("Starting Stream") + response = {} + try: + for path, dirs, files in os.walk(STREAMS_LOC): + check_stream = 0 + if stream_name in files: + check_stream += 1 + stream_path = os.path.join(path, stream_name) + logger.info('Stream path found:' + stream_name) + controller.player.counter += 1 + + if controller.player.status != "Playing" and controller.player.counter == int(clients): + controller.player.start_run(stream_path, int(clients)) + + else: + logger.info("Stream player is already playing. Attempting to stop the stream and restart") + controller.player.stop_run() + logger.info("we are here") + controller.player.start_run(stream_path, controller.player.counter) + response["data"] = { + "name": controller.player.name, + "status": controller.player.status, + "stream path": stream_path, + "stream": controller.player.stream, + "clients": controller.player.counter + } + elif check_stream == 0: + logger.info('No stream found in stream directory.') + + except Exception as exc: + response["error"] = [ + str(exc), + traceback.format_exc() + ] + # if DEBUG: + # raise exc + + return jsonify(response) + + +@app.route('/stopstream', methods=['GET']) +def stopstream(): + response = {} + + try: + controller.player.stop_run() + controller.counter = 0 + response["data"] = { + "name": controller.player.name, + "status": controller.player.status, + "stream": controller.player.stream, + "clients": controller.player.counter + } + except Exception as exc: + response["error"] = [ + str(exc), + traceback.format_exc() + ] + # if DEBUG: + # raise exc + + return jsonify(response) + + +@app.route('/streams', methods=['GET']) +def streams(): + response = {"data": controller.player.streams} + + return jsonify(response) + +@app.route('/system_information') +def server_information(): + response = { + "System": "StreamXpress Server", + "Version": VERSION, + "Uptime": " " + } + + return jsonify(response) + + + +if __name__ == '__main__': + # socket_io.run(app, debug=True, port=5000) + app.run(debug=True, host='0.0.0.0', port=5000) + +# http://localhost:5000/streamexp?folder=L2&stream=V2-AdSmart-Multiple-TPT diff --git a/servers/verificationserver.py b/servers/verificationserver.py new file mode 100644 index 0000000..e00c50e --- /dev/null +++ b/servers/verificationserver.py @@ -0,0 +1,142 @@ +''' +not complete +VERIFICATION SERVER +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + +import traceback +from flask import Flask, request, jsonify +import autosmart_v2.function as cdb +from autosmart_v2.utils.utils import createFileLogger +from autosmart_v2.config.config import Config +from autosmart_v2.config.verification_config import verification_config + +VERSION = 1.2 +LOG_FILE = Config['verificationserverLog'] +EXTRACTOR_REPORTS = Config['extractorReports'] + +logger = createFileLogger(LOG_FILE) +app = Flask(__name__) + + + +@app.route('/verifyPara', methods=['GET']) +def verifyPara(): + slotId = request.args['slotId'] + attrib = request.args['attribute'] + attribute = verification_config[attrib] + exp_value = request.args['exp_value'] + + logger.info("Verifying value from top paragraph for slot ID =" + slotId + " attribute =" + attribute + " expected value = " + exp_value) + # response = {} + + print(EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html") + path = EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html" + value_to_be_verified = cdb.get_value_from_para(path, attribute) + logger.info('%s', attribute) + if exp_value != value_to_be_verified: + logger.error("Teststep verification Failed") + logger.info("Expecting: %s=%s, but, found %s=%s", attribute, exp_value, + attribute, value_to_be_verified) + logger.info("Ending test") + response = "incorrect" + + else: + logger.info("Teststep verification passed") + response = "correct" + + return response + + # try: + # print(EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html") + # path = EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html" + # value_to_be_verified = cdb.get_value_from_para(path, + # attribute) + # logger.info('%s', attribute) + # if exp_value != value_to_be_verified: + # logger.error("Teststep verification Failed") + # logger.info("Expecting: %s=%s, but, found %s=%s", attribute, exp_value, + # attribute, value_to_be_verified) + # logger.info("Ending test") + # response = "incorrect" + # + # else: + # logger.info("Teststep verification passed") + # response = "correct" + # + # except Exception as exc: + # response["error"] = [ + # str(exc), + # traceback.format_exc() + # ] + # return jsonify(response) + # if DEBUG: + # raise exc + + +@app.route('/verifyTable', methods=['GET']) +def verifyTable(): + slotId = request.args['slotId'] + header = request.args['header'] + unique_id = request.args['unique_id'] + column = request.args['column'] + exp_value = request.args['exp_value'] + + logger.info("Verification of table values") + response = {} + try: + value_to_be_verified = cdb.get_value_from_row( + EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html", header, unique_id, + column) + if exp_value != value_to_be_verified: + logger.error("Teststep verification Failed") + logger.info("Expecting: %s=%s, but, found %s=%s", column, exp_value, + column, value_to_be_verified) + return False + else: + logger.info("Teststep verification passed") + return True + + except Exception as exc: + response["error"] = [ + str(exc), + traceback.format_exc() + ] + return jsonify(response) + + +@app.route('/verifyUnderTable', methods=['GET']) +def verifyUnderTable(): + slotId = request.args['slotId'] + header = request.args['header'] + attribute = request.args['attribute'] + exp_value = request.args['exp_value'] + self.logger.info("Verification of value under table") + response = {} + + try: + value_to_be_verified = cdb.get_value_under_table( + EXTRACTOR_REPORTS + "cdb_report" + str(int(slotId)) + ".html", header, attribute) + if exp_value != value_to_be_verified: + logger.error("Teststep verification Failed") + logger.info("Expecting: %s %s=%s, but, found %s=%s", header, attribute, exp_value, + header, value_to_be_verified) + logger.info("Ending test") + response = "incorrect" + + else: + logger.info("Teststep verification passed") + response = "correct" + + except Exception as exc: + response["error"] = [ + str(exc), + traceback.format_exc() + ] + return jsonify(response) + + +if __name__ == '__main__': + app.run(debug=True, host='0.0.0.0', port=8989) + + diff --git a/streamplayer.py b/streamplayer.py new file mode 100644 index 0000000..1ce1b19 --- /dev/null +++ b/streamplayer.py @@ -0,0 +1,134 @@ +''' +STREAM PLAYER FUNCTION +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + + +import psutil, os +from autosmart_v2.runner import Runner +from autosmart_v2.config.config import Config + +APP_PATH = Config['exctractorappPath'] +STREAM_SPECS = Config['streamSpecs'] +STREAMS_LOC = Config['streamsLocation'] + + +class StreamPlayer(Runner): + + def __init__(self, name, status, stream, logger, counter): + super(StreamPlayer, self).__init__(logger=logger) + self.name = name + self._status = status + self.stream = stream + self.logger = logger + self.counter = counter + + @property + def status(self): + """ + """ + if not self.proc: + print("Player status") + for proc in psutil.process_iter(): + if proc.name == 'StreamXpress.exe' or proc.name == 'DtPlay.exe': + self._status = "Playing" + self.logger.error("Already playing {}, stopping before start of test".format(proc.name)) + proc.kill() + # else: + # self.logger.info("Process is not already playing. Continue with test.") + + return self._status + + + def start_run(self, stream_file, clients): + """ + """ + if self.counter == clients: + command = APP_PATH + ' ' + stream_file + ' ' + STREAM_SPECS + print("yeeeeeeeee") + super(StreamPlayer, self).start_run(command, False) + + for proc in psutil.process_iter(): + if proc.name == 'DtPlay.exe': + self._status = "Playing" + self.stream = stream_file + self.logger.info('Command being run:' + command) + else: + if self.counter == clients: + super(StreamPlayer, self).start_run(command, False) + + + + def stop_run(self): + if self.proc: + super(StreamPlayer, self).stop_run() + self._status = "Stopped" + self.logger.info("Stream Stopped111") + else: + for proc in psutil.process_iter(): + if proc.name == 'StreamXpress.exe' or proc.name == 'DtPlay.exe': + self.logger.info("The process is:" + proc) + proc.kill() + self._status = "Stopped" + self.stream = "No stream selected" + self.counter = 0 + self.logger.info("Stream Stopped") + + + @property + def streams(self): + files = [] + # r=root, d=directories, f = files + for r, d, f in os.walk(STREAMS_LOC): + for f_name in f: + if f_name.endswith('.ts'): + files.append(f_name) + + # with os.scandir(STREAMS_LOC) as entries: + # for entry in entries: + # if entry.is_dir(): + # files.append(entry.name) + + return files + + # for f in files: + # print(f) + + # elif self._status == "Playing": + # try: + # for proc in psutil.process_iter(): + # if (proc.name() == 'StreamXpress.exe' or proc.name() == 'DtPlay.exe'): + # print proc + # proc.kill() + # print stoppedd + # self._status = "Stopped" + # self.logger.info("Stream Stopped") + # except Exception as exc: + # self.logger.error("cannot stop {}".format(exc)) + # traceback.format_exc() + # self.logger.error("Stream player couldn't be stopped") + +# from win32com.client import GetObject +# WMI = GetObject('winmgmts:') +# processes = WMI.InstancesOf('Win32_Process') + +# if "python.exe" in [process.Properties_('Name').Value for process in processes]: +# #do the thing + +# s = subprocess.check_output('tasklist', shell=True) +# if "cmd.exe" in s: +# print s + +# s = subprocess.check_output('tasklist', shell=True) +# for app_name in ("StreamXpress.exe *32"): +# if app_name in s: +# os.system("taskkill /f /im StreamXpress.exe") + +# for proc in psutil.process_iter(): +# if proc.name() == "StreamXpress.exe" +# self.logger.info("Killing StreamXpress as open on computer.") + +# raise Exception("Streamplayer is not running so cant stop it") + +# s = subprocess.check_output('tasklist', shell=True) +# if not (DtPlay.exe) in s: diff --git a/templates/__init__.py b/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/templates/common.py b/templates/common.py new file mode 100644 index 0000000..0ac4938 --- /dev/null +++ b/templates/common.py @@ -0,0 +1,362 @@ +''' +COMMON COMMANDS - NOT USED IN AUTOMATION FRAMEWORK +AUTHOR: GEORGIA BLANCO-LITCHFIELD GBL06 +''' + +from autosmart.rcu import Remote +from autosmart_v2.utils.utils import createFileLogger +from autosmart_v2.config.config import Config +import automationframework.sut.stb.base.actionnames as ACTIONS +from automationframework.autotest.base.template import Template + +RCU_LOG = Config['rcuLog'] +logger = createFileLogger(RCU_LOG) + + +''' +Check tune HD for correct way of formatting each template!!!!!!!!! +''' + + +# class Template(): +# """ +# Base class for steps +# """ +# +# def __init__(self): +# None +# +# def execute(self, stb): +# """ +# """ +# status = self.executeCore(stb) +# return status +# +# def executeCore(self, stb): +# raise NotImplmentedError("Template::execute") + + +class FSR(Template): + """ + Perform FSR for stb + """ + TAG = "fsr" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('FSR being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate(ACTIONS.HOME, {"delay": 2}) + stb.operate(ACTIONS.HOME, {"delay": 1}) + for x in range(12): + stb.operate(ACTIONS.DOWN, {"delay": 1}) + stb.operate(ACTIONS.NUM_0, {"delay": 1}) + stb.operate(ACTIONS.NUM_0, {"delay": 1}) + stb.operate(ACTIONS.NUM_1, {"delay": 1}) + stb.operate(ACTIONS.SELECT, {"delay": 1}) + for x in range(2): + stb.operate(ACTIONS.DOWN, {"delay": 1}) + stb.operate(ACTIONS.RIGHT, {"delay": 1}) + stb.operate(ACTIONS.DOWN, {"delay": 1}) + stb.operate(ACTIONS.SELECT, {"delay": 1}) + stb.operate(ACTIONS.LEFT, {"delay": 1}) + stb.operate(ACTIONS.SELECT, {"delay": 1}) + + return True + + +class PowerUp(Template): + """ + Perform Power up for stb + """ + TAG = "powerUp" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('Power up from standby exccuted') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Home', self.slotID, 2) + stb.operate('Back', self.slotID, 1) + + return True + + +class TuneHD(Template): + """ + Perform tunig to HD AdSmrt channel 561 for stb + """ + TAG = "hd" + + def __init__(self): + Template.__init__(self) + logger.info('Tune to channel 561 HD being executed') + + def executeCore(self, stb, status): + stb.operate(ACTIONS.HOME, timeParams={"delay": 2}) + stb.operate(ACTIONS.BACK, timeParams={"delay": 1}) + stb.operate(ACTIONS.NUM_5, timeParams={"delay": 1}) + stb.operate(ACTIONS.NUM_6, timeParams={"delay": 1}) + stb.operate(ACTIONS.NUM_1, timeParams={"delay": 1}) + return True + + +class TuneSD(Template): + """ + Perform tunig to SD AdSmrt channel 531 for stb + """ + TAG = "fsr" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('Tune to channel 531 SD being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Home', self.slotID, 5) + stb.operate('Back', self.slotID, 1) + stb.operate('5', self.slotID, 1) + stb.operate('3', self.slotID, 1) + stb.operate('1', self.slotID, 1) + + return True + + +class PlayRec(Template): + """ + Perform Play out a recording for stb + """ + TAG = "playRec" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('Play out recording being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Sky', self.slotID, 1) + stb.operate('Right', self.slotID, 1) + stb.operate('Select', self.slotID, 1) + stb.operate('Select', self.slotID, 1) + + return True + + +class StopRec(Template): + """ + Perform Play out a recording for stb + """ + TAG = "stopRec" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('Stop recording being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Back', self.slotID, 1) + stb.operate('Back', self.slotID, 1) + + return True + + +class DeleteRec(Template): + """ + Perform delete a recording for stb + """ + TAG = "deleteRec" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('Delete recording being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Sky', self.slotID, 3) + stb.operate('Right', self.slotID, 1) + stb.operate('Select', self.slotID, 1) + stb.operate('Right', self.slotID, 1) + stb.operate('Down', self.slotID, 1) + stb.operate('Select', self.slotID, 1) + for x in range(6): + stb.operate('Down', self.slotID, 1) + stb.operate('Right', self.slotID, 1) + for x in range(2): + stb.operate('Down', self.slotID, 1) + for x in range(2): + stb.operate('Right', self.slotID, 1) + stb.operate('Down', self.slotID, 1) + stb.operate('Select', self.slotID, 1) + stb.operate('Home', self.slotID, 1) + stb.operate('Back', self.slotID, 1) + + return True + + +class FFx2(Template): + """ + Perform FFX2 for stb + """ + TAG = "FFx2" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('FFx2 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Forward', self.slotID, 1) + + return True + + +class FFx6(Template): + """ + Perform FFX6 for stb + """ + TAG = "FFx6" + + def __init__(self, logger): + Template.__init__(self, logger, slotID) + self.logger.info('FFx6 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + + return True + + +class FFx12(Template): + """ + Perform FFX12 for stb + """ + TAG = "FFx12" + + def __init__(self, logger): + Template.__init__(self, logger, slotID) + self.logger.info('FFx12 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + return True + + +class FFx30(Template): + """ + Perform FFX30 for stb + """ + TAG = "FFx30" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('FFx30 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + stb.operate('Forward', self.slotID, 1) + + return True + + +class RWx2(Template): + """ + Perform RWX2 for stb + """ + TAG = "RWx2" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('RWx2 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Rewind', self.slotID, 1) + + return True + + +class RWx6(Template): + """ + Perform RWX6 for stb + """ + TAG = "RWx6" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('RWx6 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + + return True + + +class RWx12(Template): + """ + Perform RWX12 for stb + """ + TAG = "RWx12" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('RWx12 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + + return True + + +class RWx30(Template): + """ + Perform RWX30 for stb + """ + TAG = "RWx30" + + def __init__(self, logger, slotID): + Template.__init__(self, logger) + self.logger.info('RWx30 being executed') + self.slotID = slotID + + def executeCore(self, stb): + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + stb.operate('Rewind', self.slotID, 1) + + return True + + +''' +if __name__ == "__main__": + + rcu = Remote(Config['ipRCU'], Config['portRCU'], '03', rculog) + + step = TuneSD(rculog) + + step.execute(rcu) +''' + +# step = FSR() +# step.execute(rcu) + + +# rcu = Remote(Config['ipRCU'], Config['portRCU'], '03') +# rcu.operate('Sky', 2) +# rcu.operate('Back', 0.5) diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/utils/utils.py b/utils/utils.py new file mode 100644 index 0000000..7b24527 --- /dev/null +++ b/utils/utils.py @@ -0,0 +1,19 @@ +import time +import logging + +def createFileLogger(log_file_name): + + logger = logging.Logger('') + logger.setLevel(logging.DEBUG) + fileh = logging.FileHandler(log_file_name, mode='w') + fileh.setLevel(logging.DEBUG) + formatter = logging.Formatter('%(asctime)s - %(process)d - %(processName)s - %(thread)d - %(levelname)s - %(message)s') + fileh.setFormatter(formatter) + logger.addHandler(fileh) + return logger + + + # logger = logging.basicConfig(filename=log_file_name, + # format='%(asctime)s - %(process)d - %(levelname)s - %(message)s', + # level=logging.DEBUG) + # return logger \ No newline at end of file