Main Content

Excel to PDF

This example shows how to create a PDF report from a Microsoft® Excel® spreadsheet by using MATLAB® Report Generator™. In this example, the Excel spreadsheet summarizes annual food imports by food category. The source of the spreadsheet is the Economic Research Service, U.S. Department of Agriculture. The spreadsheet is available at U.S. Food Imports. The example uses a local copy of the spreadsheet.

Import Excel Data

Import the data from the spreadsheet, Alltables.xlsx, into MATLAB® cell arrays.

xlsfile = "Alltables.xlsx";
years = readcell(xlsfile, "Sheet","FOOD$","Range","D2:V2");
data = readcell(xlsfile, "Sheet","FOOD$","Range","D7:V21");
types = readcell(xlsfile, "Sheet","FOOD$","Range","A7:A21");
units = readtable(xlsfile, "Sheet","FOOD$","Range",...
    "K3:K3","ReadVariableNames",false);

Create a Report

Import the DOM and Report API packages so that you do not have to use long, fully-qualified class names.

import mlreportgen.report.*
import mlreportgen.dom.*

Create a container to hold the report content for a PDF report.

rpt = Report("Food Imports Report","pdf");

Create the Title Page

Create and add a title page to the report.

tp = TitlePage();
tp.Title = "Food Imports Report Based on Multi-Year Data from the USDA";
tp.Image = "peppers.png";
tp.Author = "John Doe";
tp.PubDate = string(datetime("today"));
add(rpt,tp);

A variety of colorful vegetables including bell peppers, chili peppers, and garlic arranged on a purple surface. The text above reads "Food Imports Report Based on Multi-Year Data from the USDA" with the author's name and date below.

Create the Table of Contents

Create and add a table of contents by using the mlreportgen.report.TableofContents reporter. This reporter automatically creates the table of contents based on the chapter and section titles in the report.

toc = TableOfContents();
add(rpt,toc);

Document screenshot showing a table of contents with four sections: "Imports Summary Graph," "Data from 1999 to 2005," "Data from 2006 to 2012," and "Data from 2013 to 2017," each followed by corresponding page numbers.

Plot the Data in MATLAB

Create and format a line plot of the annual imports by food category.

fig = figure("Color","w");
ax = axes(fig,"FontSize",12);
t = str2double(years);
for i = 1:size(data,1)
    hold on;
    plot(ax,t,[data{i,:}],"LineWidth",1);
end
xlabel("Years");
ylabel(units.Var1{:});
legend(types,"Location","northeastoutside");
title("Food Imports");

Figure contains an axes object. The axes object with title Food Imports, xlabel Years, ylabel Million $ contains 15 objects of type line. These objects represent Live meat animals, Meats, Fish and shellfish 2/, Dairy, Vegetables, Fruits, Nuts, Coffee, tea, and spices, Grains, Vegetable oils, Sugar and candy, Cocoa and chocolate, Other edible products, Beverages 3/, Liquors.

Add the Plot to the Report

Create a chapter and add the line plot to it.

ch = Chapter("Imports Summary Graph");
fig = Figure(fig);
add(ch,fig);
add(rpt,ch);
Warning: Graphics timeout occurred. To share details of this issue with MathWorks technical support, please include that this is a graphics handshaking issue with your service request.
Warning: drawnow timeout: waited 600 seconds for HTMLCanvasImpl(/graphics/C26/returnACTCanvas) ACT 2. Client may not be connected.
Last 400 messages:

 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.095680"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.111673"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.112676"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.112676"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.112676"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.127281"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.143289"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.158796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.174796"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.175797"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.175797"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.175797"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.175797"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.190319"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.206452"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.207314"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.221825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.237825"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.253456"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.254443"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.254443"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.269445"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.284959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.285959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.285959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.285959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.285959"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.300960"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.301956"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.317473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.318473"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.331474"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.347476"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.362436"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.362436"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.363012"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/C26\\\/returnACTCanvas\",\"Event\":\"Timeout\",\"EventData\":{\"ACT\":\"2\",\"Timeout\":\"600\"},\"LogType\":\"Server\",\"Source\":\"HTMLCanvasImpl\"}","TimeStamp":"2025-Feb-26 14:56:38.377995"}
Warning: Graphics timeout occurred. To share details of this issue with MathWorks technical support, please include that this is a graphics handshaking issue with your service request.
Warning: drawnow timeout: waited 600 seconds for HTMLCanvasImpl(/graphics/C26/returnACTCanvas) ACT 3. Client may not be connected.
Last 400 messages:

 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.401549"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.402055"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.402055"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.402055"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.417399"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.432909"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.448907"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.464426"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.480429"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.496181"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.512175"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.513174"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.527693"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.543706"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.544686"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.559210"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.575211"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.590727"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.606731"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.622243"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.638239"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.653799"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.669777"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:06:39.685287"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/C26\\\/returnACTCanvas\",\"Event\":\"Timeout\",\"EventData\":{\"ACT\":\"3\",\"Timeout\":\"600\"},\"LogType\":\"Server\",\"Source\":\"HTMLCanvasImpl\"}","TimeStamp":"2025-Feb-26 15:06:39.686292"}
Warning: Graphics timeout occurred. To share details of this issue with MathWorks technical support, please include that this is a graphics handshaking issue with your service request.
Warning: drawnow timeout: waited 600 seconds for HTMLCanvasImpl(/graphics/C26/returnACTCanvas) ACT 4. Client may not be connected.
Last 400 messages:

 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.517781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.518781"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.533302"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.549304"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.564815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.580815"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.596333"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.612328"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.627872"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.643867"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.659380"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.675389"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.691016"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.707015"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.708035"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.722524"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.723521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.738521"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.739520"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.753699"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.754247"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769095"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769438"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769952"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769952"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.769952"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.784848"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.785354"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F65\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F64\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F63\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F60\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F47\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F46\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F45\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F44\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F43\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F42\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F41\\\/returnACT\",\"Event\":\"All drawnow tokens discarded\",\"EventData\":{},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}
 {"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/C26\\\/returnACTCanvas\",\"Event\":\"Timeout\",\"EventData\":{\"ACT\":\"4\",\"Timeout\":\"600\"},\"LogType\":\"Server\",\"Source\":\"HTMLCanvasImpl\"}","TimeStamp":"2025-Feb-26 15:17:40.800623"}

Convert the Data to a Suitable Form for Creating a DOM Table

Format the data and create a single string array, tableData, that you can use to create an mlreportgen.dom.Table object.

tableData = cellfun(@(x)sprintf("%.0f",x),data);
tableData = [types tableData];
tableHeader = ["" string(years)];
tableData = [tableHeader; tableData]
tableData = 16×20 string array
    ""                           "1999"    "2000"    "2001"    "2002"    "2003"     "2004"     "2005"     "2006"     "2007"     "2008"     "2009"     "2010"     "2011"     "2012"     "2013"     "2014"     "2015"     "2016"     "2017"
    "Live meat animals"          "1190"    "1419"    "1771"    "1724"    "1277"     "1134"     "1672"     "2172"     "2588"     "2266"     "1656"     "2007"     "1886"     "2192"     "2190"     "3009"     "2773"     "2103"     "2020"
    "Meats"                      "3261"    "3828"    "4256"    "4283"    "4427"     "5719"     "5752"     "5244"     "5367"     "5060"     "4612"     "5088"     "5755"     "6245"     "6530"     "8940"     "9992"     "8589"     "8878"
    "Fish and shellfish 2/"      "8860"    "9880"    "9663"    "9963"    "10860"    "11106"    "11840"    "13112"    "13435"    "13912"    "12934"    "14517"    "16459"    "16468"    "17784"    "20054"    "18521"    "19261"    "21324"
    "Dairy"                      "930"     "922"     "996"     "1009"    "1110"     "1292"     "1388"     "1406"     "1501"     "1596"     "1353"     "1347"     "1502"     "1604"     "1649"     "1844"     "1893"     "1876"     "1827"
    "Vegetables"                 "3632"    "3771"    "4157"    "4391"    "5082"     "5730"     "6043"     "6619"     "7256"     "7801"     "7525"     "8706"     "9667"     "9946"     "10734"    "10930"    "11290"    "12469"    "12743"
    "Fruits"                     "4764"    "4629"    "4665"    "5068"    "5558"     "5962"     "6874"     "7707"     "9217"     "9888"     "9640"     "10649"    "11974"    "12538"    "13602"    "14808"    "15955"    "17157"    "18383"
    "Nuts"                       "794"     "809"     "670"     "701"     "776"      "1078"     "1122"     "1099"     "1181"     "1351"     "1278"     "1462"     "1863"     "2000"     "2000"     "2361"     "2767"     "2871"     "3301"
    "Coffee, tea, and spices"    "3604"    "3442"    "2401"    "2455"    "2872"     "3144"     "3771"     "4195"     "4791"     "5581"     "5160"     "6265"     "9716"     "8726"     "7633"     "8299"     "8536"     "8311"     "9069"
    "Grains"                     "2659"    "2735"    "2990"    "3343"    "3618"     "4010"     "4241"     "4910"     "5915"     "7690"     "6846"     "7138"     "8063"     "9111"     "10257"    "10031"    "10030"    "10179"    "10861"

Create a Food Imports Table in the Report

Create an mlreportgen.dom.Table object from the food imports data in the tableData variable. Specify the table formats.

table = Table(tableData);
table.Style = { ...
    Border("solid"), ...
    RowSep("solid"), ...
    ColSep("solid"), ...
    OuterMargin("5pt","5pt","5pt","5pt")};
table.TableEntriesStyle = {InnerMargin("2pt")};

headerStyle = { ...
    BackgroundColor("LightBlue"), ...
    Bold };

table.row(1).Style = headerStyle;

grps = TableColSpecGroup;
grps.Span = 1;
grps.Style = headerStyle;
table.ColSpecGroups = grps;

Fit the Table to the Report Page by Vertically Slicing

To fit a wide table on a report page, divide the table vertically into a set of narrower tables (slices), by using an mlreportgen.utils.TableSlicer object.

slicer = mlreportgen.utils.TableSlicer(...
    "Table",table, ... 
    "MaxCols",8, ...
    "RepeatCols",1);
slices = slicer.slice();

Add Chapters for the Table Slices

Create a chapter for each table slice and add the chapters to the report.

for slice = slices
    ch = Chapter();
    ch.Title = strjoin(["Data from" years(slice.StartCol-1)...
        "to" years(slice.EndCol-1)]);
    add(ch,slice.Table);
    add(rpt,ch);
end

Chapter 2 with a table showing data from 1999 to 2005 for various food categories.Chapter 3 with a table showing data from 2006 to 2012 for various food categories.Chapter 4 with a table showing data from 2013 to 2017 for various food categories.

Close and View the Report

close(rpt);
rptview(rpt)

See Also

| | | | |

Topics