From 2b23d4e9b60cdb9fb497968b30d7004f38c7fcab Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Fri, 9 Sep 2022 13:24:40 -0500 Subject: [PATCH 1/4] Improve info_gpu - Instead of using Get-CimInstance to get GPU information, which can be very slow, gets the registry entry at HKLM:\SOFTWARE\Microsoft\DirectX\ which contains a list of installed video adapters - 1690 ms -> 40.16 ms - 42x faster (nice) --- profiler_0000.speedscope.json | 7892 +++++++++++++++++++++++++++++++++ profiler_0001.speedscope.json | 7822 ++++++++++++++++++++++++++++++++ winfetch.ps1 | 14 +- 3 files changed, 15722 insertions(+), 6 deletions(-) create mode 100644 profiler_0000.speedscope.json create mode 100644 profiler_0001.speedscope.json diff --git a/profiler_0000.speedscope.json b/profiler_0000.speedscope.json new file mode 100644 index 0000000..98501fc --- /dev/null +++ b/profiler_0000.speedscope.json @@ -0,0 +1,7892 @@ +{ + "exporter": "Profiler@4.0.0", + "name": "profiler_0000.speedscope.json", + "activeProfileIndex": 0, + "schema": "https://www.speedscope.app/file-format-schema.json", + "shared": { + "frames": [ + { + "name": "{|" + }, + { + "name": "& .\\winfetch.ps1" + }, + { + "name": "-not ($IsWindows -or $PSVersionTable.PSVersion.Major -eq 5)" + }, + { + "name": "$help" + }, + { + "name": "$defaultConfig = @'\r\n# ===== WINFETCH CONFIGURATION =====\r\n\r\n# $image = \"~/winfetch.png\"\r\n# $noimage = $true\r\n\r\n# Display image using ASCII characters\r\n# $ascii = $true\r\n\r\n# Set the version of Windows to derive the logo from.\r\n# $logo = \"Windows 10\"\r\n\r\n# Specify width for image/logo\r\n# $imgwidth = 24\r\n\r\n# Custom ASCII Art\r\n# This should be an array of strings, with positive\r\n# height and width equal to $imgwidth defined above.\r\n# $CustomAscii = @(\r\n# \"⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣶⣶⣾⣷⣶⣆⠸⣿⣿⡟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⡈⠻⠿⠟⠻⠿⢿⣷⣤⣤⣄⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⢀⣤⣤⡘⢿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⣿⣿⣿⡇⢸⣿⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣉⣉⡁ ⠀\"\r\n# \"⠀⠀⠀⠈⠛⠛⢡⣾⣿⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⠟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡿⢁⣴⣶⣦⣴⣶⣾⡿⠛⠛⠋⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⠿⢿⡿⠿⠏⢰⣿⣿⣧⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⠟⠀⠀ ⠀\"\r\n# )\r\n\r\n# Make the logo blink\r\n# $blink = $true\r\n\r\n# Display all built-in info segments.\r\n# $all = $true\r\n\r\n# Add a custom info line\r\n# function info_custom_time {\r\n# return @{\r\n# title = \"Time\"\r\n# content = (Get-Date)\r\n# }\r\n# }\r\n\r\n# Configure which disks are shown\r\n# $ShowDisks = @(\"C:\", \"D:\")\r\n# Show all available disks\r\n# $ShowDisks = @(\"*\")\r\n\r\n# Configure which package managers are shown\r\n# disabling unused ones will improve speed\r\n# $ShowPkgs = @(\"winget\", \"scoop\", \"choco\")\r\n\r\n# Use the following option to specify custom package managers.\r\n# Create a function with that name as suffix, and which returns\r\n# the number of packages. Two examples are shown here:\r\n# $CustomPkgs = @(\"cargo\", \"just-install\")\r\n# function info_pkg_cargo {\r\n# return (cargo install --list | Where-Object {$_ -like \"*:\" }).Length\r\n# }\r\n# function info_pkg_just-install {\r\n# return (just-install list).Length\r\n# }\r\n\r\n# Configure how to show info for levels\r\n# Default is for text only.\r\n# 'bar' is for bar only.\r\n# 'textbar' is for text + bar.\r\n# 'bartext' is for bar + text.\r\n# $cpustyle = 'bar'\r\n# $memorystyle = 'textbar'\r\n# $diskstyle = 'bartext'\r\n# $batterystyle = 'bartext'\r\n\r\n\r\n# Remove the '#' from any of the lines in\r\n# the following to **enable** their output.\r\n\r\n@(\r\n \"title\"\r\n \"dashes\"\r\n \"os\"\r\n \"computer\"\r\n \"kernel\"\r\n \"motherboard\"\r\n # \"custom_time\" # use custom info line\r\n \"uptime\"\r\n # \"ps_pkgs\" # takes some time\r\n \"pkgs\"\r\n \"pwsh\"\r\n \"resolution\"\r\n \"terminal\"\r\n # \"theme\"\r\n \"cpu\"\r\n \"gpu\"\r\n # \"cpu_usage\" # takes some time\r\n \"memory\"\r\n \"disk\"\r\n # \"battery\"\r\n # \"locale\"\r\n # \"weather\"\r\n # \"local_ip\"\r\n # \"public_ip\"\r\n \"blank\"\r\n \"colorbar\"\r\n)\r\n\r\n'@" + }, + { + "name": "-not $configPath" + }, + { + "name": "$env:WINFETCH_CONFIG_PATH" + }, + { + "name": "$configPath = \"${env:USERPROFILE}\\.config\\winfetch\\config.ps1\"" + }, + { + "name": "$genconf -and (Test-Path $configPath)" + }, + { + "name": "-not (Test-Path $configPath) -or [String]::IsNullOrWhiteSpace((Get-Content $configPath))" + }, + { + "name": "$config = . $configPath" + }, + { + "name": "$ShowDisks = @(\"*\")" + }, + { + "name": "$runspaces = $true" + }, + { + "name": "$RunspaceOps = @(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n \"motherboard\"\n \"custom_time\"\n \"uptime\"\n \"ps_pkgs\"\n \"pkgs\"\n \"pwsh\"\n \"resolution\"\n \"terminal\"\n \"theme\"\n \"cpu\"\n \"gpu\"\n \"cpu_usage\"\n #\"memory\" # Causes Errors\n \"disk\"\n #\"battery\" # Causes Errors\n \"locale\"\n \"weather\"\n \"local_ip\"\n \"public_ip\"\n \"blank\"\n \"colorbar\"\n)" + }, + { + "name": "\"title\"" + }, + { + "name": "\"dashes\"" + }, + { + "name": "\"os\"" + }, + { + "name": "\"computer\"" + }, + { + "name": "\"kernel\"" + }, + { + "name": "\"motherboard\"" + }, + { + "name": "\"custom_time\"" + }, + { + "name": "\"uptime\"" + }, + { + "name": "\"ps_pkgs\"" + }, + { + "name": "\"pkgs\"" + }, + { + "name": "\"pwsh\"" + }, + { + "name": "\"resolution\"" + }, + { + "name": "\"terminal\"" + }, + { + "name": "\"theme\"" + }, + { + "name": "\"cpu\"" + }, + { + "name": "\"gpu\"" + }, + { + "name": "\"cpu_usage\"" + }, + { + "name": "\"disk\"" + }, + { + "name": "\"locale\"" + }, + { + "name": "\"weather\"" + }, + { + "name": "\"local_ip\"" + }, + { + "name": "\"public_ip\"" + }, + { + "name": "\"blank\"" + }, + { + "name": "\"colorbar\"" + }, + { + "name": "@(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n #\"motherboard\"\n # \"custom_time\" # use custom info line\n \"uptime\"\n # \"ps_pkgs\" # takes some time\n #\"pkgs\"\n #\"pwsh\"\n \"resolution\"\n #\"terminal\"\n # \"theme\"\n \"cpu\"\n \"gpu\"\n # \"cpu_usage\" # takes some time\n \"memory\"\n \"disk\"\n \"battery\"\n # \"locale\"\n # \"weather\"\n # \"local_ip\"\n # \"public_ip\"\n \"blank\"\n #\"colorbar\"\n)" + }, + { + "name": "\"memory\"" + }, + { + "name": "\"battery\"" + }, + { + "name": "-not $config -or $all" + }, + { + "name": "$PSBoundParameters.Keys" + }, + { + "name": "$param" + }, + { + "name": "$e = [char]0x1B" + }, + { + "name": "$ansiRegex = '([\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~])))'" + }, + { + "name": "$cimSession = New-CimSession" + }, + { + "name": "$os = Get-CimInstance -ClassName Win32_OperatingSystem -Property Caption,OSArchitecture -CimSession $cimSession" + }, + { + "name": "$t = if ($blink) { \"5\" } else { \"1\" }" + }, + { + "name": "$blink" + }, + { + "name": "\"1\"" + }, + { + "name": "$COLUMNS = $imgwidth" + }, + { + "name": "$img = if (-not $noimage) {\r\n if ($image) {\r\n if ($image -eq 'wallpaper') {\r\n $image = (Get-ItemProperty -Path 'HKCU:\\Control Panel\\Desktop' -Name Wallpaper).Wallpaper\r\n }\r\n\r\n Add-Type -AssemblyName 'System.Drawing'\r\n $OldImage = if (Test-Path $image -PathType Leaf) {\r\n [Drawing.Bitmap]::FromFile((Resolve-Path $image))\r\n } else {\r\n [Drawing.Bitmap]::FromStream((Invoke-WebRequest $image -UseBasicParsing).RawContentStream)\r\n }\r\n\r\n # Divide scaled height by 2.2 to compensate for ASCII characters being taller than they are wide\r\n [int]$ROWS = $OldImage.Height / $OldImage.Width * $COLUMNS / $(if ($ascii) { 2.2 } else { 1 })\r\n $Bitmap = New-Object System.Drawing.Bitmap @($OldImage, [Drawing.Size]\"$COLUMNS,$ROWS\")\r\n\r\n if ($ascii) {\r\n $chars = ' .,:;+iIH$@'\r\n for ($i = 0; $i -lt $Bitmap.Height; $i++) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $p = $Bitmap.GetPixel($j, $i)\r\n $currline += \"$e[38;2;$($p.R);$($p.G);$($p.B)m$($chars[[math]::Floor($p.GetBrightness() * $chars.Length)])$e[0m\"\r\n }\r\n $currline\r\n }\r\n } else {\r\n for ($i = 0; $i -lt $Bitmap.Height; $i += 2) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $back = $Bitmap.GetPixel($j, $i)\r\n if ($i -ge $Bitmap.Height - 1) {\r\n $foreVT = \"\"\r\n } else {\r\n $fore = $Bitmap.GetPixel($j, $i + 1)\r\n $foreVT = \"$e[48;2;$($fore.R);$($fore.G);$($fore.B)m\"\r\n }\r\n $backVT = \"$e[38;2;$($back.R);$($back.G);$($back.B)m\"\r\n $currline += \"$backVT$foreVT$([char]0x2580)$e[0m\"\r\n }\r\n $currline\r\n }\r\n }\r\n\r\n $Bitmap.Dispose()\r\n $OldImage.Dispose()\r\n\r\n } elseif (($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)) {\r\n $CustomAscii\r\n } else {\r\n if (-not $logo) {\r\n if ($os -Like \"*Windows 11 *\") {\r\n $logo = \"Windows 11\"\r\n } elseif ($os -Like \"*Windows 10 *\" -Or $os -Like \"*Windows 8.1 *\" -Or $os -Like \"*Windows 8 *\") {\r\n $logo = \"Windows 10\"\r\n } else {\r\n $logo = \"Windows 7\"\r\n }\r\n }\r\n\r\n if ($logo -eq \"Windows 11\") {\r\n $COLUMNS = 32\r\n @(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )\r\n } elseif ($logo -eq \"Windows 10\" -Or $logo -eq \"Windows 8.1\" -Or $logo -eq \"Windows 8\") {\r\n $COLUMNS = 34\r\n @(\r\n \"${e}[${t};34m ....,,:;+ccllll\"\r\n \"${e}[${t};34m ...,,+:; cllllllllllllllllll\"\r\n \"${e}[${t};34m,cclllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m``'ccllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m ``' \\\\*:: :ccllllllllllllllll\"\r\n \"${e}[${t};34m ````````''*::cll\"\r\n \"${e}[${t};34m ````\"\r\n )\r\n } elseif ($logo -eq \"Windows 7\" -Or $logo -eq \"Windows Vista\" -Or $logo -eq \"Windows XP\") {\r\n $COLUMNS = 35\r\n @(\r\n \"${e}[${t};31m ,.=:!!t3Z3z., \"\r\n \"${e}[${t};31m :tt:::tt333EE3 \"\r\n \"${e}[${t};31m Et:::ztt33EEE ${e}[32m@Ee., ..,\"\r\n \"${e}[${t};31m ;tt:::tt333EE7 ${e}[32m;EEEEEEttttt33#\"\r\n \"${e}[${t};31m :Et:::zt333EEQ. ${e}[32mSEEEEEttttt33QL\"\r\n \"${e}[${t};31m it::::tt333EEF ${e}[32m@EEEEEEttttt33F \"\r\n \"${e}[${t};31m ;3=*^``````'*4EEV ${e}[32m:EEEEEEttttt33@. \"\r\n \"${e}[${t};34m ,.=::::it=., ${e}[31m`` ${e}[32m@EEEEEEtttz33QF \"\r\n \"${e}[${t};34m ;::::::::zt33) ${e}[32m'4EEEtttji3P* \"\r\n \"${e}[${t};34m :t::::::::tt33 ${e}[33m:Z3z.. ${e}[32m```` ${e}[33m,..g. \"\r\n \"${e}[${t};34m i::::::::zt33F ${e}[33mAEEEtttt::::ztF \"\r\n \"${e}[${t};34m ;:::::::::t33V ${e}[33m;EEEttttt::::t3 \"\r\n \"${e}[${t};34m E::::::::zt33L ${e}[33m@EEEtttt::::z3F \"\r\n \"${e}[${t};34m{3=*^``````'*4E3) ${e}[33m;EEEtttt:::::tZ`` \"\r\n \"${e}[${t};34m `` ${e}[33m:EEEEtttt::::z7 \"\r\n \"${e}[${t};33m 'VEzjt:;;z>*`` \"\r\n )\r\n } elseif ($logo -eq \"Microsoft\") {\r\n $COLUMNS = 13\r\n @(\r\n \"${e}[${t};31m┌─────┐${e}[32m┌─────┐\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m└─────┘${e}[32m└─────┘\"\r\n \"${e}[${t};34m┌─────┐${e}[33m┌─────┐\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m└─────┘${e}[33m└─────┘\"\r\n )\r\n } elseif ($logo -eq \"Windows 2000\" -Or $logo -eq \"Windows 98\" -Or $logo -eq \"Windows 95\") {\r\n $COLUMNS = 45\r\n @(\r\n \" ${e}[${t};30mdBBBBBBBb\"\r\n \" ${e}[${t};30mdBBBBBBBBBBBBBBBb\"\r\n \" ${e}[${t};30m 000 BBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: 000000 BBBBB${e}[${t};31mdBB${e}[${t};30mBBBB${e}[${t};32mBBBb${e}[${t};30mBBBBBBB\"\r\n \"${e}[${t};31m::::: ${e}[${t};30m====== 000${e}[${t};31m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};32m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};31m====== 000${e}[${t};30m000 BBBBBBBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: ====== 000000 BBBBB${e}[${t};34mdBB${e}[${t};30mBBBB${e}[${t};33mBBBb${e}[${t};30mBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ${e}[${t};30m====== 000${e}[${t};34m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};33m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};34m====== 000${e}[${t};30m000 BBBBBf `BBBBBBBBB\"\r\n \"${e}[${t};30m :: ====== 000000 BBf `BBBBB\"\r\n \" ${c1} == 000000 B BBB\"\r\n )\r\n } else {\r\n Write-Error 'The only version logos supported are Windows 11, Windows 10/8.1/8, Windows 7/Vista/XP, Windows 2000/98/95 and Microsoft.'\r\n exit 1\r\n }\r\n }\r\n}" + }, + { + "name": "-not $noimage" + }, + { + "name": "$image" + }, + { + "name": "($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)" + }, + { + "name": "-not $logo" + }, + { + "name": "$os -Like \"*Windows 11 *\"" + }, + { + "name": "$logo = \"Windows 11\"" + }, + { + "name": "$logo -eq \"Windows 11\"" + }, + { + "name": "$COLUMNS = 32" + }, + { + "name": "@(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )" + }, + { + "name": "\"${e}[${t};34mlllllllllllllll lllllllllllllll\"" + }, + { + "name": "\"${e}[${t};34m \"" + }, + { + "name": "-not $stripansi" + }, + { + "name": "Write-Output \"$e[0m$e[?25l\"" + }, + { + "name": "$img" + }, + { + "name": "$line" + }, + { + "name": "Write-Output \" $line\"" + }, + { + "name": "$GAP = 3" + }, + { + "name": "$writtenLines = 0" + }, + { + "name": "$freeSpace = $Host.UI.RawUI.WindowSize.Width - 1" + }, + { + "name": "$img -and -not $stripansi" + }, + { + "name": "$freeSpace -= 1 + $COLUMNS + $GAP" + }, + { + "name": "Write-Output \"$e[$($img.Length + 1)A\"" + }, + { + "name": "$img.Length + 1" + }, + { + "name": "$config" + }, + { + "name": "$item" + }, + { + "name": "Test-Path Function:\"info_$item\"" + }, + { + "name": "$info = & \"info_$item\"" + }, + { + "name": "info_title" + }, + { + "name": "-not $info" + }, + { + "name": "$info -isnot [array]" + }, + { + "name": "$info = @($info)" + }, + { + "name": "$info" + }, + { + "name": "$output = \"$e[1;33m$($line[\"title\"])$e[0m\"" + }, + { + "name": "$line[\"title\"]" + }, + { + "name": "$line[\"title\"] -and $line[\"content\"]" + }, + { + "name": "$output += \"$($line[\"content\"])\"" + }, + { + "name": "$line[\"content\"]" + }, + { + "name": "$output = \"$e[$(2 + $COLUMNS + $GAP)G$output\"" + }, + { + "name": "2 + $COLUMNS + $GAP" + }, + { + "name": "$writtenLines++" + }, + { + "name": "$stripansi" + }, + { + "name": "$output = truncate_line $output $freeSpace" + }, + { + "name": "truncate_line" + }, + { + "name": "Write-Output $output" + }, + { + "name": "info_dashes" + }, + { + "name": "info_os" + }, + { + "name": "$output += \": \"" + }, + { + "name": "info_computer" + }, + { + "name": "info_kernel" + }, + { + "name": "info_uptime" + }, + { + "name": "{|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" + }, + { + "name": "$PSItem.Days -eq 1" + }, + { + "name": "}|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" + }, + { + "name": "$PSItem.Days -gt 1" + }, + { + "name": "$PSItem.Hours -eq 1" + }, + { + "name": "$PSItem.Hours -gt 1" + }, + { + "name": "$PSItem.Minutes -eq 1" + }, + { + "name": "$PSItem.Minutes -gt 1" + }, + { + "name": "info_resolution" + }, + { + "name": "info_cpu" + }, + { + "name": "info_gpu" + }, + { + "name": "($_.Description -ne \"Microsoft Basic Render Driver\") -and ($GPUs -notcontains $_.Description)" + }, + { + "name": "$GPUs.Add($_.Description) | Out-Null" + }, + { + "name": "info_memory" + }, + { + "name": "get_level_info" + }, + { + "name": "info_disk" + }, + { + "name": "to_units" + }, + { + "name": "info_battery" + }, + { + "name": "info_blank" + }, + { + "name": "$diff = $img.Length - $writtenLines" + }, + { + "name": "$img -and $diff -gt 0" + }, + { + "name": "Write-Output \"$e[${diff}B\"" + }, + { + "name": "Write-Output \"$e[?25h\"" + }, + { + "name": "}|" + } + ] + }, + "profiles": [ + { + "type": "evented", + "name": "pwsh (5452) Time=2189.6099ms", + "unit": "milliseconds", + "startValue": 0, + "endValue": 2189.6099, + "events": [ + { + "at": 0.0, + "frame": 0, + "type": "O" + }, + { + "at": 0.0221, + "frame": 0, + "type": "C" + }, + { + "at": 0.0221, + "frame": 1, + "type": "O" + }, + { + "at": 179.2703, + "frame": 1, + "type": "C" + }, + { + "at": 179.2703, + "frame": 1, + "type": "O" + }, + { + "at": 182.8513, + "frame": 1, + "type": "C" + }, + { + "at": 182.8513, + "frame": 1, + "type": "O" + }, + { + "at": 183.5431, + "frame": 2, + "type": "O" + }, + { + "at": 183.5974, + "frame": 2, + "type": "C" + }, + { + "at": 183.5974, + "frame": 3, + "type": "O" + }, + { + "at": 183.6203, + "frame": 3, + "type": "C" + }, + { + "at": 183.6203, + "frame": 4, + "type": "O" + }, + { + "at": 183.648, + "frame": 4, + "type": "C" + }, + { + "at": 183.648, + "frame": 5, + "type": "O" + }, + { + "at": 185.305, + "frame": 5, + "type": "C" + }, + { + "at": 185.305, + "frame": 6, + "type": "O" + }, + { + "at": 185.5597, + "frame": 6, + "type": "C" + }, + { + "at": 185.5597, + "frame": 7, + "type": "O" + }, + { + "at": 185.7318, + "frame": 7, + "type": "C" + }, + { + "at": 185.7318, + "frame": 8, + "type": "O" + }, + { + "at": 185.7532, + "frame": 8, + "type": "C" + }, + { + "at": 185.7532, + "frame": 9, + "type": "O" + }, + { + "at": 257.5931, + "frame": 9, + "type": "C" + }, + { + "at": 257.5931, + "frame": 10, + "type": "O" + }, + { + "at": 267.5363, + "frame": 11, + "type": "O" + }, + { + "at": 267.6121, + "frame": 11, + "type": "C" + }, + { + "at": 267.6121, + "frame": 12, + "type": "O" + }, + { + "at": 267.6354, + "frame": 12, + "type": "C" + }, + { + "at": 267.6354, + "frame": 13, + "type": "O" + }, + { + "at": 267.6559, + "frame": 13, + "type": "C" + }, + { + "at": 267.6559, + "frame": 14, + "type": "O" + }, + { + "at": 267.6655, + "frame": 14, + "type": "C" + }, + { + "at": 267.6655, + "frame": 15, + "type": "O" + }, + { + "at": 267.6732, + "frame": 15, + "type": "C" + }, + { + "at": 267.6732, + "frame": 16, + "type": "O" + }, + { + "at": 267.6817, + "frame": 16, + "type": "C" + }, + { + "at": 267.6817, + "frame": 17, + "type": "O" + }, + { + "at": 267.6892, + "frame": 17, + "type": "C" + }, + { + "at": 267.6892, + "frame": 18, + "type": "O" + }, + { + "at": 267.6965, + "frame": 18, + "type": "C" + }, + { + "at": 267.6965, + "frame": 19, + "type": "O" + }, + { + "at": 267.7039, + "frame": 19, + "type": "C" + }, + { + "at": 267.7039, + "frame": 20, + "type": "O" + }, + { + "at": 267.7108, + "frame": 20, + "type": "C" + }, + { + "at": 267.7108, + "frame": 21, + "type": "O" + }, + { + "at": 267.7175, + "frame": 21, + "type": "C" + }, + { + "at": 267.7175, + "frame": 22, + "type": "O" + }, + { + "at": 267.7251, + "frame": 22, + "type": "C" + }, + { + "at": 267.7251, + "frame": 23, + "type": "O" + }, + { + "at": 267.7322, + "frame": 23, + "type": "C" + }, + { + "at": 267.7322, + "frame": 24, + "type": "O" + }, + { + "at": 267.7389, + "frame": 24, + "type": "C" + }, + { + "at": 267.7389, + "frame": 25, + "type": "O" + }, + { + "at": 267.7459, + "frame": 25, + "type": "C" + }, + { + "at": 267.7459, + "frame": 26, + "type": "O" + }, + { + "at": 267.7529, + "frame": 26, + "type": "C" + }, + { + "at": 267.7529, + "frame": 27, + "type": "O" + }, + { + "at": 267.76, + "frame": 27, + "type": "C" + }, + { + "at": 267.76, + "frame": 28, + "type": "O" + }, + { + "at": 267.7682, + "frame": 28, + "type": "C" + }, + { + "at": 267.7682, + "frame": 29, + "type": "O" + }, + { + "at": 267.778, + "frame": 29, + "type": "C" + }, + { + "at": 267.778, + "frame": 30, + "type": "O" + }, + { + "at": 267.7856, + "frame": 30, + "type": "C" + }, + { + "at": 267.7856, + "frame": 31, + "type": "O" + }, + { + "at": 267.7924, + "frame": 31, + "type": "C" + }, + { + "at": 267.7924, + "frame": 32, + "type": "O" + }, + { + "at": 267.7996, + "frame": 32, + "type": "C" + }, + { + "at": 267.7996, + "frame": 33, + "type": "O" + }, + { + "at": 267.8065, + "frame": 33, + "type": "C" + }, + { + "at": 267.8065, + "frame": 34, + "type": "O" + }, + { + "at": 267.8135, + "frame": 34, + "type": "C" + }, + { + "at": 267.8135, + "frame": 35, + "type": "O" + }, + { + "at": 267.8203, + "frame": 35, + "type": "C" + }, + { + "at": 267.8203, + "frame": 36, + "type": "O" + }, + { + "at": 267.8271, + "frame": 36, + "type": "C" + }, + { + "at": 267.8271, + "frame": 37, + "type": "O" + }, + { + "at": 267.849, + "frame": 37, + "type": "C" + }, + { + "at": 267.849, + "frame": 38, + "type": "O" + }, + { + "at": 267.8627, + "frame": 38, + "type": "C" + }, + { + "at": 267.8627, + "frame": 14, + "type": "O" + }, + { + "at": 267.871, + "frame": 14, + "type": "C" + }, + { + "at": 267.871, + "frame": 15, + "type": "O" + }, + { + "at": 267.8782, + "frame": 15, + "type": "C" + }, + { + "at": 267.8782, + "frame": 16, + "type": "O" + }, + { + "at": 267.8852, + "frame": 16, + "type": "C" + }, + { + "at": 267.8852, + "frame": 17, + "type": "O" + }, + { + "at": 267.8922, + "frame": 17, + "type": "C" + }, + { + "at": 267.8922, + "frame": 18, + "type": "O" + }, + { + "at": 267.8997, + "frame": 18, + "type": "C" + }, + { + "at": 267.8997, + "frame": 21, + "type": "O" + }, + { + "at": 267.9068, + "frame": 21, + "type": "C" + }, + { + "at": 267.9068, + "frame": 25, + "type": "O" + }, + { + "at": 267.9136, + "frame": 25, + "type": "C" + }, + { + "at": 267.9136, + "frame": 28, + "type": "O" + }, + { + "at": 267.9207, + "frame": 28, + "type": "C" + }, + { + "at": 267.9207, + "frame": 29, + "type": "O" + }, + { + "at": 267.9281, + "frame": 29, + "type": "C" + }, + { + "at": 267.9281, + "frame": 39, + "type": "O" + }, + { + "at": 267.937, + "frame": 39, + "type": "C" + }, + { + "at": 267.937, + "frame": 31, + "type": "O" + }, + { + "at": 267.9506, + "frame": 31, + "type": "C" + }, + { + "at": 267.9506, + "frame": 40, + "type": "O" + }, + { + "at": 267.9579, + "frame": 40, + "type": "C" + }, + { + "at": 267.9579, + "frame": 36, + "type": "O" + }, + { + "at": 268.0205, + "frame": 36, + "type": "C" + }, + { + "at": 268.0205, + "frame": 41, + "type": "O" + }, + { + "at": 269.7211, + "frame": 41, + "type": "C" + }, + { + "at": 269.7211, + "frame": 10, + "type": "C" + }, + { + "at": 269.7211, + "frame": 42, + "type": "O" + }, + { + "at": 278.3916, + "frame": 42, + "type": "C" + }, + { + "at": 278.3916, + "frame": 43, + "type": "O" + }, + { + "at": 278.4373, + "frame": 43, + "type": "C" + }, + { + "at": 278.4373, + "frame": 44, + "type": "O" + }, + { + "at": 279.4438, + "frame": 44, + "type": "C" + }, + { + "at": 279.4438, + "frame": 45, + "type": "O" + }, + { + "at": 279.4765, + "frame": 45, + "type": "C" + }, + { + "at": 279.4765, + "frame": 46, + "type": "O" + }, + { + "at": 382.9326, + "frame": 46, + "type": "C" + }, + { + "at": 382.9326, + "frame": 47, + "type": "O" + }, + { + "at": 446.784, + "frame": 47, + "type": "C" + }, + { + "at": 446.784, + "frame": 48, + "type": "O" + }, + { + "at": 446.8755, + "frame": 48, + "type": "C" + }, + { + "at": 446.8755, + "frame": 49, + "type": "O" + }, + { + "at": 446.9092, + "frame": 49, + "type": "C" + }, + { + "at": 446.9092, + "frame": 50, + "type": "O" + }, + { + "at": 446.9472, + "frame": 50, + "type": "C" + }, + { + "at": 446.9472, + "frame": 51, + "type": "O" + }, + { + "at": 447.0131, + "frame": 51, + "type": "C" + }, + { + "at": 447.0131, + "frame": 52, + "type": "O" + }, + { + "at": 447.0333, + "frame": 52, + "type": "C" + }, + { + "at": 447.0333, + "frame": 53, + "type": "O" + }, + { + "at": 448.6094, + "frame": 53, + "type": "C" + }, + { + "at": 448.6094, + "frame": 54, + "type": "O" + }, + { + "at": 450.723, + "frame": 54, + "type": "C" + }, + { + "at": 450.723, + "frame": 55, + "type": "O" + }, + { + "at": 450.7875, + "frame": 55, + "type": "C" + }, + { + "at": 450.7875, + "frame": 56, + "type": "O" + }, + { + "at": 450.8107, + "frame": 56, + "type": "C" + }, + { + "at": 450.8107, + "frame": 57, + "type": "O" + }, + { + "at": 457.6885, + "frame": 57, + "type": "C" + }, + { + "at": 457.6885, + "frame": 58, + "type": "O" + }, + { + "at": 457.747, + "frame": 58, + "type": "C" + }, + { + "at": 457.747, + "frame": 59, + "type": "O" + }, + { + "at": 459.8646, + "frame": 59, + "type": "C" + }, + { + "at": 459.8646, + "frame": 60, + "type": "O" + }, + { + "at": 459.9041, + "frame": 60, + "type": "C" + }, + { + "at": 459.9041, + "frame": 61, + "type": "O" + }, + { + "at": 459.9317, + "frame": 61, + "type": "C" + }, + { + "at": 459.9317, + "frame": 62, + "type": "O" + }, + { + "at": 461.0492, + "frame": 62, + "type": "C" + }, + { + "at": 461.0492, + "frame": 62, + "type": "O" + }, + { + "at": 461.0986, + "frame": 62, + "type": "C" + }, + { + "at": 461.0986, + "frame": 62, + "type": "O" + }, + { + "at": 461.1164, + "frame": 62, + "type": "C" + }, + { + "at": 461.1164, + "frame": 62, + "type": "O" + }, + { + "at": 461.1347, + "frame": 62, + "type": "C" + }, + { + "at": 461.1347, + "frame": 62, + "type": "O" + }, + { + "at": 461.1516, + "frame": 62, + "type": "C" + }, + { + "at": 461.1516, + "frame": 62, + "type": "O" + }, + { + "at": 461.1665, + "frame": 62, + "type": "C" + }, + { + "at": 461.1665, + "frame": 62, + "type": "O" + }, + { + "at": 461.1811, + "frame": 62, + "type": "C" + }, + { + "at": 461.1811, + "frame": 63, + "type": "O" + }, + { + "at": 461.1956, + "frame": 63, + "type": "C" + }, + { + "at": 461.1956, + "frame": 62, + "type": "O" + }, + { + "at": 461.2118, + "frame": 62, + "type": "C" + }, + { + "at": 461.2118, + "frame": 62, + "type": "O" + }, + { + "at": 461.2254, + "frame": 62, + "type": "C" + }, + { + "at": 461.2254, + "frame": 62, + "type": "O" + }, + { + "at": 461.2393, + "frame": 62, + "type": "C" + }, + { + "at": 461.2393, + "frame": 62, + "type": "O" + }, + { + "at": 461.253, + "frame": 62, + "type": "C" + }, + { + "at": 461.253, + "frame": 62, + "type": "O" + }, + { + "at": 461.2688, + "frame": 62, + "type": "C" + }, + { + "at": 461.2688, + "frame": 62, + "type": "O" + }, + { + "at": 461.2833, + "frame": 62, + "type": "C" + }, + { + "at": 461.2833, + "frame": 62, + "type": "O" + }, + { + "at": 461.4314, + "frame": 62, + "type": "C" + }, + { + "at": 461.4314, + "frame": 64, + "type": "O" + }, + { + "at": 461.5656, + "frame": 64, + "type": "C" + }, + { + "at": 461.5656, + "frame": 65, + "type": "O" + }, + { + "at": 465.0729, + "frame": 65, + "type": "C" + }, + { + "at": 465.0729, + "frame": 64, + "type": "O" + }, + { + "at": 465.1156, + "frame": 64, + "type": "C" + }, + { + "at": 465.1156, + "frame": 66, + "type": "O" + }, + { + "at": 465.1409, + "frame": 66, + "type": "C" + }, + { + "at": 465.1409, + "frame": 67, + "type": "O" + }, + { + "at": 465.1714, + "frame": 67, + "type": "C" + }, + { + "at": 465.1714, + "frame": 68, + "type": "O" + }, + { + "at": 465.4359, + "frame": 68, + "type": "C" + }, + { + "at": 465.4359, + "frame": 67, + "type": "O" + }, + { + "at": 465.4586, + "frame": 67, + "type": "C" + }, + { + "at": 465.4586, + "frame": 68, + "type": "O" + }, + { + "at": 465.6281, + "frame": 68, + "type": "C" + }, + { + "at": 465.6281, + "frame": 67, + "type": "O" + }, + { + "at": 465.6482, + "frame": 67, + "type": "C" + }, + { + "at": 465.6482, + "frame": 68, + "type": "O" + }, + { + "at": 465.7993, + "frame": 68, + "type": "C" + }, + { + "at": 465.7993, + "frame": 67, + "type": "O" + }, + { + "at": 465.8182, + "frame": 67, + "type": "C" + }, + { + "at": 465.8182, + "frame": 68, + "type": "O" + }, + { + "at": 465.961, + "frame": 68, + "type": "C" + }, + { + "at": 465.961, + "frame": 67, + "type": "O" + }, + { + "at": 465.9793, + "frame": 67, + "type": "C" + }, + { + "at": 465.9793, + "frame": 68, + "type": "O" + }, + { + "at": 466.1183, + "frame": 68, + "type": "C" + }, + { + "at": 466.1183, + "frame": 67, + "type": "O" + }, + { + "at": 466.1364, + "frame": 67, + "type": "C" + }, + { + "at": 466.1364, + "frame": 68, + "type": "O" + }, + { + "at": 466.2755, + "frame": 68, + "type": "C" + }, + { + "at": 466.2755, + "frame": 67, + "type": "O" + }, + { + "at": 466.294, + "frame": 67, + "type": "C" + }, + { + "at": 466.294, + "frame": 68, + "type": "O" + }, + { + "at": 466.4303, + "frame": 68, + "type": "C" + }, + { + "at": 466.4303, + "frame": 67, + "type": "O" + }, + { + "at": 466.4484, + "frame": 67, + "type": "C" + }, + { + "at": 466.4484, + "frame": 68, + "type": "O" + }, + { + "at": 466.5865, + "frame": 68, + "type": "C" + }, + { + "at": 466.5865, + "frame": 67, + "type": "O" + }, + { + "at": 466.6042, + "frame": 67, + "type": "C" + }, + { + "at": 466.6042, + "frame": 68, + "type": "O" + }, + { + "at": 466.7383, + "frame": 68, + "type": "C" + }, + { + "at": 466.7383, + "frame": 67, + "type": "O" + }, + { + "at": 466.7558, + "frame": 67, + "type": "C" + }, + { + "at": 466.7558, + "frame": 68, + "type": "O" + }, + { + "at": 466.8921, + "frame": 68, + "type": "C" + }, + { + "at": 466.8921, + "frame": 67, + "type": "O" + }, + { + "at": 466.9104, + "frame": 67, + "type": "C" + }, + { + "at": 466.9104, + "frame": 68, + "type": "O" + }, + { + "at": 467.0467, + "frame": 68, + "type": "C" + }, + { + "at": 467.0467, + "frame": 67, + "type": "O" + }, + { + "at": 467.0643, + "frame": 67, + "type": "C" + }, + { + "at": 467.0643, + "frame": 68, + "type": "O" + }, + { + "at": 467.1969, + "frame": 68, + "type": "C" + }, + { + "at": 467.1969, + "frame": 67, + "type": "O" + }, + { + "at": 467.2144, + "frame": 67, + "type": "C" + }, + { + "at": 467.2144, + "frame": 68, + "type": "O" + }, + { + "at": 467.3467, + "frame": 68, + "type": "C" + }, + { + "at": 467.3467, + "frame": 67, + "type": "O" + }, + { + "at": 467.364, + "frame": 67, + "type": "C" + }, + { + "at": 467.364, + "frame": 68, + "type": "O" + }, + { + "at": 467.495, + "frame": 68, + "type": "C" + }, + { + "at": 467.495, + "frame": 67, + "type": "O" + }, + { + "at": 467.5124, + "frame": 67, + "type": "C" + }, + { + "at": 467.5124, + "frame": 68, + "type": "O" + }, + { + "at": 467.6461, + "frame": 68, + "type": "C" + }, + { + "at": 467.6461, + "frame": 67, + "type": "O" + }, + { + "at": 467.6669, + "frame": 67, + "type": "C" + }, + { + "at": 467.6669, + "frame": 69, + "type": "O" + }, + { + "at": 467.6882, + "frame": 69, + "type": "C" + }, + { + "at": 467.6882, + "frame": 70, + "type": "O" + }, + { + "at": 467.7015, + "frame": 70, + "type": "C" + }, + { + "at": 467.7015, + "frame": 71, + "type": "O" + }, + { + "at": 474.91, + "frame": 71, + "type": "C" + }, + { + "at": 474.91, + "frame": 72, + "type": "O" + }, + { + "at": 477.0457, + "frame": 72, + "type": "C" + }, + { + "at": 477.0457, + "frame": 73, + "type": "O" + }, + { + "at": 480.7915, + "frame": 73, + "type": "C" + }, + { + "at": 480.7915, + "frame": 74, + "type": "O" + }, + { + "at": 480.8406, + "frame": 74, + "type": "C" + }, + { + "at": 480.8406, + "frame": 75, + "type": "O" + }, + { + "at": 484.4257, + "frame": 75, + "type": "C" + }, + { + "at": 484.4257, + "frame": 76, + "type": "O" + }, + { + "at": 484.4574, + "frame": 76, + "type": "C" + }, + { + "at": 484.4574, + "frame": 77, + "type": "O" + }, + { + "at": 484.4939, + "frame": 77, + "type": "C" + }, + { + "at": 484.4939, + "frame": 78, + "type": "O" + }, + { + "at": 488.1763, + "frame": 78, + "type": "C" + }, + { + "at": 488.1763, + "frame": 79, + "type": "O" + }, + { + "at": 489.385, + "frame": 80, + "type": "O" + }, + { + "at": 489.4002, + "frame": 80, + "type": "C" + }, + { + "at": 489.4002, + "frame": 80, + "type": "O" + }, + { + "at": 489.8993, + "frame": 80, + "type": "C" + }, + { + "at": 489.8993, + "frame": 80, + "type": "O" + }, + { + "at": 489.9798, + "frame": 80, + "type": "C" + }, + { + "at": 489.9798, + "frame": 81, + "type": "O" + }, + { + "at": 491.5646, + "frame": 81, + "type": "C" + }, + { + "at": 491.5646, + "frame": 79, + "type": "C" + }, + { + "at": 491.5646, + "frame": 82, + "type": "O" + }, + { + "at": 491.5988, + "frame": 82, + "type": "C" + }, + { + "at": 491.5988, + "frame": 83, + "type": "O" + }, + { + "at": 492.6357, + "frame": 83, + "type": "C" + }, + { + "at": 492.6357, + "frame": 84, + "type": "O" + }, + { + "at": 492.664, + "frame": 84, + "type": "C" + }, + { + "at": 492.664, + "frame": 67, + "type": "O" + }, + { + "at": 492.6841, + "frame": 67, + "type": "C" + }, + { + "at": 492.6841, + "frame": 85, + "type": "O" + }, + { + "at": 492.7161, + "frame": 85, + "type": "C" + }, + { + "at": 492.7161, + "frame": 86, + "type": "O" + }, + { + "at": 496.4843, + "frame": 86, + "type": "C" + }, + { + "at": 496.4843, + "frame": 87, + "type": "O" + }, + { + "at": 496.5189, + "frame": 87, + "type": "C" + }, + { + "at": 496.5189, + "frame": 88, + "type": "O" + }, + { + "at": 496.5393, + "frame": 88, + "type": "C" + }, + { + "at": 496.5393, + "frame": 89, + "type": "O" + }, + { + "at": 497.7392, + "frame": 89, + "type": "C" + }, + { + "at": 497.7392, + "frame": 66, + "type": "O" + }, + { + "at": 497.7727, + "frame": 66, + "type": "C" + }, + { + "at": 497.7727, + "frame": 64, + "type": "O" + }, + { + "at": 497.7923, + "frame": 64, + "type": "C" + }, + { + "at": 497.7923, + "frame": 90, + "type": "O" + }, + { + "at": 497.8228, + "frame": 90, + "type": "C" + }, + { + "at": 497.8228, + "frame": 91, + "type": "O" + }, + { + "at": 497.8937, + "frame": 91, + "type": "C" + }, + { + "at": 497.8937, + "frame": 92, + "type": "O" + }, + { + "at": 498.9611, + "frame": 92, + "type": "C" + }, + { + "at": 498.9611, + "frame": 93, + "type": "O" + }, + { + "at": 498.9883, + "frame": 93, + "type": "C" + }, + { + "at": 498.9883, + "frame": 94, + "type": "O" + }, + { + "at": 504.8885, + "frame": 95, + "type": "O" + }, + { + "at": 504.9075, + "frame": 95, + "type": "C" + }, + { + "at": 504.9075, + "frame": 95, + "type": "O" + }, + { + "at": 512.4187, + "frame": 95, + "type": "C" + }, + { + "at": 512.4187, + "frame": 95, + "type": "O" + }, + { + "at": 513.734, + "frame": 95, + "type": "C" + }, + { + "at": 513.734, + "frame": 95, + "type": "O" + }, + { + "at": 513.7735, + "frame": 95, + "type": "C" + }, + { + "at": 513.7735, + "frame": 95, + "type": "O" + }, + { + "at": 513.8396, + "frame": 95, + "type": "C" + }, + { + "at": 513.8396, + "frame": 96, + "type": "O" + }, + { + "at": 514.0731, + "frame": 96, + "type": "C" + }, + { + "at": 514.0731, + "frame": 94, + "type": "C" + }, + { + "at": 514.0731, + "frame": 67, + "type": "O" + }, + { + "at": 514.0972, + "frame": 67, + "type": "C" + }, + { + "at": 514.0972, + "frame": 77, + "type": "O" + }, + { + "at": 514.125, + "frame": 77, + "type": "C" + }, + { + "at": 514.125, + "frame": 78, + "type": "O" + }, + { + "at": 514.4981, + "frame": 78, + "type": "C" + }, + { + "at": 514.4981, + "frame": 79, + "type": "O" + }, + { + "at": 515.5812, + "frame": 97, + "type": "O" + }, + { + "at": 515.5987, + "frame": 97, + "type": "C" + }, + { + "at": 515.5987, + "frame": 97, + "type": "O" + }, + { + "at": 517.868, + "frame": 97, + "type": "C" + }, + { + "at": 517.868, + "frame": 97, + "type": "O" + }, + { + "at": 519.5211, + "frame": 97, + "type": "C" + }, + { + "at": 519.5211, + "frame": 97, + "type": "O" + }, + { + "at": 519.6003, + "frame": 97, + "type": "C" + }, + { + "at": 519.6003, + "frame": 81, + "type": "O" + }, + { + "at": 519.6163, + "frame": 81, + "type": "C" + }, + { + "at": 519.6163, + "frame": 79, + "type": "C" + }, + { + "at": 519.6163, + "frame": 82, + "type": "O" + }, + { + "at": 519.6293, + "frame": 82, + "type": "C" + }, + { + "at": 519.6293, + "frame": 83, + "type": "O" + }, + { + "at": 519.6487, + "frame": 83, + "type": "C" + }, + { + "at": 519.6487, + "frame": 84, + "type": "O" + }, + { + "at": 519.6649, + "frame": 84, + "type": "C" + }, + { + "at": 519.6649, + "frame": 67, + "type": "O" + }, + { + "at": 519.6803, + "frame": 67, + "type": "C" + }, + { + "at": 519.6803, + "frame": 85, + "type": "O" + }, + { + "at": 519.7102, + "frame": 85, + "type": "C" + }, + { + "at": 519.7102, + "frame": 86, + "type": "O" + }, + { + "at": 519.7448, + "frame": 86, + "type": "C" + }, + { + "at": 519.7448, + "frame": 87, + "type": "O" + }, + { + "at": 519.7604, + "frame": 87, + "type": "C" + }, + { + "at": 519.7604, + "frame": 88, + "type": "O" + }, + { + "at": 519.7752, + "frame": 88, + "type": "C" + }, + { + "at": 519.7752, + "frame": 89, + "type": "O" + }, + { + "at": 519.7957, + "frame": 89, + "type": "C" + }, + { + "at": 519.7957, + "frame": 66, + "type": "O" + }, + { + "at": 519.8093, + "frame": 66, + "type": "C" + }, + { + "at": 519.8093, + "frame": 64, + "type": "O" + }, + { + "at": 519.8204, + "frame": 64, + "type": "C" + }, + { + "at": 519.8204, + "frame": 90, + "type": "O" + }, + { + "at": 519.8343, + "frame": 90, + "type": "C" + }, + { + "at": 519.8343, + "frame": 91, + "type": "O" + }, + { + "at": 519.8612, + "frame": 91, + "type": "C" + }, + { + "at": 519.8612, + "frame": 92, + "type": "O" + }, + { + "at": 519.8758, + "frame": 92, + "type": "C" + }, + { + "at": 519.8758, + "frame": 93, + "type": "O" + }, + { + "at": 519.8874, + "frame": 93, + "type": "C" + }, + { + "at": 519.8874, + "frame": 94, + "type": "O" + }, + { + "at": 520.1446, + "frame": 95, + "type": "O" + }, + { + "at": 520.1591, + "frame": 95, + "type": "C" + }, + { + "at": 520.1591, + "frame": 95, + "type": "O" + }, + { + "at": 520.4848, + "frame": 95, + "type": "C" + }, + { + "at": 520.4848, + "frame": 95, + "type": "O" + }, + { + "at": 520.5052, + "frame": 95, + "type": "C" + }, + { + "at": 520.5052, + "frame": 95, + "type": "O" + }, + { + "at": 520.5244, + "frame": 95, + "type": "C" + }, + { + "at": 520.5244, + "frame": 95, + "type": "O" + }, + { + "at": 520.5782, + "frame": 95, + "type": "C" + }, + { + "at": 520.5782, + "frame": 96, + "type": "O" + }, + { + "at": 520.8004, + "frame": 96, + "type": "C" + }, + { + "at": 520.8004, + "frame": 94, + "type": "C" + }, + { + "at": 520.8004, + "frame": 67, + "type": "O" + }, + { + "at": 520.8235, + "frame": 67, + "type": "C" + }, + { + "at": 520.8235, + "frame": 77, + "type": "O" + }, + { + "at": 520.8474, + "frame": 77, + "type": "C" + }, + { + "at": 520.8474, + "frame": 78, + "type": "O" + }, + { + "at": 521.1781, + "frame": 78, + "type": "C" + }, + { + "at": 521.1781, + "frame": 79, + "type": "O" + }, + { + "at": 522.1686, + "frame": 98, + "type": "O" + }, + { + "at": 522.197, + "frame": 98, + "type": "C" + }, + { + "at": 522.197, + "frame": 98, + "type": "O" + }, + { + "at": 522.2208, + "frame": 98, + "type": "C" + }, + { + "at": 522.2208, + "frame": 98, + "type": "O" + }, + { + "at": 529.0451, + "frame": 98, + "type": "C" + }, + { + "at": 529.0451, + "frame": 98, + "type": "O" + }, + { + "at": 530.8034, + "frame": 98, + "type": "C" + }, + { + "at": 530.8034, + "frame": 98, + "type": "O" + }, + { + "at": 530.8779, + "frame": 98, + "type": "C" + }, + { + "at": 530.8779, + "frame": 81, + "type": "O" + }, + { + "at": 530.8944, + "frame": 81, + "type": "C" + }, + { + "at": 530.8944, + "frame": 79, + "type": "C" + }, + { + "at": 530.8944, + "frame": 82, + "type": "O" + }, + { + "at": 530.9065, + "frame": 82, + "type": "C" + }, + { + "at": 530.9065, + "frame": 83, + "type": "O" + }, + { + "at": 530.9233, + "frame": 83, + "type": "C" + }, + { + "at": 530.9233, + "frame": 84, + "type": "O" + }, + { + "at": 530.9382, + "frame": 84, + "type": "C" + }, + { + "at": 530.9382, + "frame": 67, + "type": "O" + }, + { + "at": 530.954, + "frame": 67, + "type": "C" + }, + { + "at": 530.954, + "frame": 85, + "type": "O" + }, + { + "at": 530.983, + "frame": 85, + "type": "C" + }, + { + "at": 530.983, + "frame": 86, + "type": "O" + }, + { + "at": 531.0144, + "frame": 86, + "type": "C" + }, + { + "at": 531.0144, + "frame": 87, + "type": "O" + }, + { + "at": 531.0377, + "frame": 87, + "type": "C" + }, + { + "at": 531.0377, + "frame": 99, + "type": "O" + }, + { + "at": 531.0532, + "frame": 99, + "type": "C" + }, + { + "at": 531.0532, + "frame": 88, + "type": "O" + }, + { + "at": 531.0661, + "frame": 88, + "type": "C" + }, + { + "at": 531.0661, + "frame": 89, + "type": "O" + }, + { + "at": 531.0847, + "frame": 89, + "type": "C" + }, + { + "at": 531.0847, + "frame": 66, + "type": "O" + }, + { + "at": 531.0978, + "frame": 66, + "type": "C" + }, + { + "at": 531.0978, + "frame": 64, + "type": "O" + }, + { + "at": 531.1099, + "frame": 64, + "type": "C" + }, + { + "at": 531.1099, + "frame": 90, + "type": "O" + }, + { + "at": 531.1248, + "frame": 90, + "type": "C" + }, + { + "at": 531.1248, + "frame": 91, + "type": "O" + }, + { + "at": 531.1509, + "frame": 91, + "type": "C" + }, + { + "at": 531.1509, + "frame": 92, + "type": "O" + }, + { + "at": 531.1646, + "frame": 92, + "type": "C" + }, + { + "at": 531.1646, + "frame": 93, + "type": "O" + }, + { + "at": 531.1765, + "frame": 93, + "type": "C" + }, + { + "at": 531.1765, + "frame": 94, + "type": "O" + }, + { + "at": 531.4473, + "frame": 95, + "type": "O" + }, + { + "at": 531.4619, + "frame": 95, + "type": "C" + }, + { + "at": 531.4619, + "frame": 95, + "type": "O" + }, + { + "at": 531.5391, + "frame": 95, + "type": "C" + }, + { + "at": 531.5391, + "frame": 95, + "type": "O" + }, + { + "at": 531.5566, + "frame": 95, + "type": "C" + }, + { + "at": 531.5566, + "frame": 95, + "type": "O" + }, + { + "at": 531.5733, + "frame": 95, + "type": "C" + }, + { + "at": 531.5733, + "frame": 95, + "type": "O" + }, + { + "at": 531.6185, + "frame": 95, + "type": "C" + }, + { + "at": 531.6185, + "frame": 96, + "type": "O" + }, + { + "at": 531.8219, + "frame": 96, + "type": "C" + }, + { + "at": 531.8219, + "frame": 94, + "type": "C" + }, + { + "at": 531.8219, + "frame": 67, + "type": "O" + }, + { + "at": 531.8466, + "frame": 67, + "type": "C" + }, + { + "at": 531.8466, + "frame": 77, + "type": "O" + }, + { + "at": 531.8703, + "frame": 77, + "type": "C" + }, + { + "at": 531.8703, + "frame": 78, + "type": "O" + }, + { + "at": 532.2007, + "frame": 78, + "type": "C" + }, + { + "at": 532.2007, + "frame": 79, + "type": "O" + }, + { + "at": 533.199, + "frame": 100, + "type": "O" + }, + { + "at": 533.2154, + "frame": 100, + "type": "C" + }, + { + "at": 533.2154, + "frame": 100, + "type": "O" + }, + { + "at": 553.368, + "frame": 100, + "type": "C" + }, + { + "at": 553.368, + "frame": 100, + "type": "O" + }, + { + "at": 557.5209, + "frame": 100, + "type": "C" + }, + { + "at": 557.5209, + "frame": 100, + "type": "O" + }, + { + "at": 557.6183, + "frame": 100, + "type": "C" + }, + { + "at": 557.6183, + "frame": 81, + "type": "O" + }, + { + "at": 557.6373, + "frame": 81, + "type": "C" + }, + { + "at": 557.6373, + "frame": 79, + "type": "C" + }, + { + "at": 557.6373, + "frame": 82, + "type": "O" + }, + { + "at": 557.652, + "frame": 82, + "type": "C" + }, + { + "at": 557.652, + "frame": 83, + "type": "O" + }, + { + "at": 557.6733, + "frame": 83, + "type": "C" + }, + { + "at": 557.6733, + "frame": 84, + "type": "O" + }, + { + "at": 557.6913, + "frame": 84, + "type": "C" + }, + { + "at": 557.6913, + "frame": 67, + "type": "O" + }, + { + "at": 557.7105, + "frame": 67, + "type": "C" + }, + { + "at": 557.7105, + "frame": 85, + "type": "O" + }, + { + "at": 557.7467, + "frame": 85, + "type": "C" + }, + { + "at": 557.7467, + "frame": 86, + "type": "O" + }, + { + "at": 557.7842, + "frame": 86, + "type": "C" + }, + { + "at": 557.7842, + "frame": 87, + "type": "O" + }, + { + "at": 557.8042, + "frame": 87, + "type": "C" + }, + { + "at": 557.8042, + "frame": 99, + "type": "O" + }, + { + "at": 557.82, + "frame": 99, + "type": "C" + }, + { + "at": 557.82, + "frame": 88, + "type": "O" + }, + { + "at": 557.8335, + "frame": 88, + "type": "C" + }, + { + "at": 557.8335, + "frame": 89, + "type": "O" + }, + { + "at": 557.8535, + "frame": 89, + "type": "C" + }, + { + "at": 557.8535, + "frame": 66, + "type": "O" + }, + { + "at": 557.8683, + "frame": 66, + "type": "C" + }, + { + "at": 557.8683, + "frame": 64, + "type": "O" + }, + { + "at": 557.8806, + "frame": 64, + "type": "C" + }, + { + "at": 557.8806, + "frame": 90, + "type": "O" + }, + { + "at": 557.8948, + "frame": 90, + "type": "C" + }, + { + "at": 557.8948, + "frame": 91, + "type": "O" + }, + { + "at": 557.9262, + "frame": 91, + "type": "C" + }, + { + "at": 557.9262, + "frame": 92, + "type": "O" + }, + { + "at": 557.9403, + "frame": 92, + "type": "C" + }, + { + "at": 557.9403, + "frame": 93, + "type": "O" + }, + { + "at": 557.9531, + "frame": 93, + "type": "C" + }, + { + "at": 557.9531, + "frame": 94, + "type": "O" + }, + { + "at": 558.2838, + "frame": 95, + "type": "O" + }, + { + "at": 558.2987, + "frame": 95, + "type": "C" + }, + { + "at": 558.2987, + "frame": 95, + "type": "O" + }, + { + "at": 558.3875, + "frame": 95, + "type": "C" + }, + { + "at": 558.3875, + "frame": 95, + "type": "O" + }, + { + "at": 558.4025, + "frame": 95, + "type": "C" + }, + { + "at": 558.4025, + "frame": 95, + "type": "O" + }, + { + "at": 558.4932, + "frame": 95, + "type": "C" + }, + { + "at": 558.4932, + "frame": 95, + "type": "O" + }, + { + "at": 558.5437, + "frame": 95, + "type": "C" + }, + { + "at": 558.5437, + "frame": 96, + "type": "O" + }, + { + "at": 558.7684, + "frame": 96, + "type": "C" + }, + { + "at": 558.7684, + "frame": 94, + "type": "C" + }, + { + "at": 558.7684, + "frame": 67, + "type": "O" + }, + { + "at": 558.7928, + "frame": 67, + "type": "C" + }, + { + "at": 558.7928, + "frame": 77, + "type": "O" + }, + { + "at": 558.8178, + "frame": 77, + "type": "C" + }, + { + "at": 558.8178, + "frame": 78, + "type": "O" + }, + { + "at": 559.176, + "frame": 78, + "type": "C" + }, + { + "at": 559.176, + "frame": 79, + "type": "O" + }, + { + "at": 560.5879, + "frame": 101, + "type": "O" + }, + { + "at": 560.604, + "frame": 101, + "type": "C" + }, + { + "at": 560.604, + "frame": 101, + "type": "O" + }, + { + "at": 560.6279, + "frame": 101, + "type": "C" + }, + { + "at": 560.6279, + "frame": 101, + "type": "O" + }, + { + "at": 566.1485, + "frame": 101, + "type": "C" + }, + { + "at": 566.1485, + "frame": 101, + "type": "O" + }, + { + "at": 566.2513, + "frame": 101, + "type": "C" + }, + { + "at": 566.2513, + "frame": 81, + "type": "O" + }, + { + "at": 566.2779, + "frame": 81, + "type": "C" + }, + { + "at": 566.2779, + "frame": 79, + "type": "C" + }, + { + "at": 566.2779, + "frame": 82, + "type": "O" + }, + { + "at": 566.2986, + "frame": 82, + "type": "C" + }, + { + "at": 566.2986, + "frame": 83, + "type": "O" + }, + { + "at": 566.326, + "frame": 83, + "type": "C" + }, + { + "at": 566.326, + "frame": 84, + "type": "O" + }, + { + "at": 566.3555, + "frame": 84, + "type": "C" + }, + { + "at": 566.3555, + "frame": 67, + "type": "O" + }, + { + "at": 566.3814, + "frame": 67, + "type": "C" + }, + { + "at": 566.3814, + "frame": 85, + "type": "O" + }, + { + "at": 566.4182, + "frame": 85, + "type": "C" + }, + { + "at": 566.4182, + "frame": 86, + "type": "O" + }, + { + "at": 566.4686, + "frame": 86, + "type": "C" + }, + { + "at": 566.4686, + "frame": 87, + "type": "O" + }, + { + "at": 566.5095, + "frame": 87, + "type": "C" + }, + { + "at": 566.5095, + "frame": 99, + "type": "O" + }, + { + "at": 566.534, + "frame": 99, + "type": "C" + }, + { + "at": 566.534, + "frame": 88, + "type": "O" + }, + { + "at": 566.561, + "frame": 88, + "type": "C" + }, + { + "at": 566.561, + "frame": 89, + "type": "O" + }, + { + "at": 566.5958, + "frame": 89, + "type": "C" + }, + { + "at": 566.5958, + "frame": 66, + "type": "O" + }, + { + "at": 566.62, + "frame": 66, + "type": "C" + }, + { + "at": 566.62, + "frame": 64, + "type": "O" + }, + { + "at": 566.641, + "frame": 64, + "type": "C" + }, + { + "at": 566.641, + "frame": 90, + "type": "O" + }, + { + "at": 566.6697, + "frame": 90, + "type": "C" + }, + { + "at": 566.6697, + "frame": 91, + "type": "O" + }, + { + "at": 566.7169, + "frame": 91, + "type": "C" + }, + { + "at": 566.7169, + "frame": 92, + "type": "O" + }, + { + "at": 566.7427, + "frame": 92, + "type": "C" + }, + { + "at": 566.7427, + "frame": 93, + "type": "O" + }, + { + "at": 566.7643, + "frame": 93, + "type": "C" + }, + { + "at": 566.7643, + "frame": 94, + "type": "O" + }, + { + "at": 567.1199, + "frame": 95, + "type": "O" + }, + { + "at": 567.144, + "frame": 95, + "type": "C" + }, + { + "at": 567.144, + "frame": 95, + "type": "O" + }, + { + "at": 567.2586, + "frame": 95, + "type": "C" + }, + { + "at": 567.2586, + "frame": 95, + "type": "O" + }, + { + "at": 567.2844, + "frame": 95, + "type": "C" + }, + { + "at": 567.2844, + "frame": 95, + "type": "O" + }, + { + "at": 567.3119, + "frame": 95, + "type": "C" + }, + { + "at": 567.3119, + "frame": 95, + "type": "O" + }, + { + "at": 567.3806, + "frame": 95, + "type": "C" + }, + { + "at": 567.3806, + "frame": 96, + "type": "O" + }, + { + "at": 567.6772, + "frame": 96, + "type": "C" + }, + { + "at": 567.6772, + "frame": 94, + "type": "C" + }, + { + "at": 567.6772, + "frame": 67, + "type": "O" + }, + { + "at": 567.707, + "frame": 67, + "type": "C" + }, + { + "at": 567.707, + "frame": 77, + "type": "O" + }, + { + "at": 567.7327, + "frame": 77, + "type": "C" + }, + { + "at": 567.7327, + "frame": 78, + "type": "O" + }, + { + "at": 568.1275, + "frame": 78, + "type": "C" + }, + { + "at": 568.1275, + "frame": 79, + "type": "O" + }, + { + "at": 572.262, + "frame": 102, + "type": "O" + }, + { + "at": 572.2766, + "frame": 102, + "type": "C" + }, + { + "at": 572.2766, + "frame": 102, + "type": "O" + }, + { + "at": 599.4733, + "frame": 102, + "type": "C" + }, + { + "at": 599.4733, + "frame": 102, + "type": "O" + }, + { + "at": 599.5189, + "frame": 102, + "type": "C" + }, + { + "at": 599.5189, + "frame": 102, + "type": "O" + }, + { + "at": 605.9178, + "frame": 103, + "type": "O" + }, + { + "at": 605.9341, + "frame": 103, + "type": "C" + }, + { + "at": 605.9341, + "frame": 104, + "type": "O" + }, + { + "at": 609.3346, + "frame": 104, + "type": "C" + }, + { + "at": 609.3346, + "frame": 105, + "type": "O" + }, + { + "at": 609.4027, + "frame": 105, + "type": "C" + }, + { + "at": 609.4027, + "frame": 102, + "type": "O" + }, + { + "at": 610.9727, + "frame": 103, + "type": "O" + }, + { + "at": 610.9998, + "frame": 103, + "type": "C" + }, + { + "at": 610.9998, + "frame": 102, + "type": "C" + }, + { + "at": 610.9998, + "frame": 106, + "type": "O" + }, + { + "at": 612.6221, + "frame": 106, + "type": "C" + }, + { + "at": 612.6221, + "frame": 105, + "type": "O" + }, + { + "at": 612.7001, + "frame": 105, + "type": "C" + }, + { + "at": 612.7001, + "frame": 102, + "type": "O" + }, + { + "at": 612.7315, + "frame": 102, + "type": "C" + }, + { + "at": 612.7315, + "frame": 102, + "type": "C" + }, + { + "at": 612.7315, + "frame": 102, + "type": "O" + }, + { + "at": 612.8004, + "frame": 102, + "type": "C" + }, + { + "at": 612.8004, + "frame": 102, + "type": "O" + }, + { + "at": 614.4757, + "frame": 103, + "type": "O" + }, + { + "at": 614.4977, + "frame": 103, + "type": "C" + }, + { + "at": 614.4977, + "frame": 107, + "type": "O" + }, + { + "at": 616.4629, + "frame": 107, + "type": "C" + }, + { + "at": 616.4629, + "frame": 105, + "type": "O" + }, + { + "at": 616.4986, + "frame": 105, + "type": "C" + }, + { + "at": 616.4986, + "frame": 102, + "type": "O" + }, + { + "at": 618.0666, + "frame": 103, + "type": "O" + }, + { + "at": 618.089, + "frame": 103, + "type": "C" + }, + { + "at": 618.089, + "frame": 102, + "type": "C" + }, + { + "at": 618.089, + "frame": 108, + "type": "O" + }, + { + "at": 618.154, + "frame": 108, + "type": "C" + }, + { + "at": 618.154, + "frame": 105, + "type": "O" + }, + { + "at": 618.1927, + "frame": 105, + "type": "C" + }, + { + "at": 618.1927, + "frame": 102, + "type": "O" + }, + { + "at": 618.2184, + "frame": 102, + "type": "C" + }, + { + "at": 618.2184, + "frame": 102, + "type": "C" + }, + { + "at": 618.2184, + "frame": 102, + "type": "O" + }, + { + "at": 618.2737, + "frame": 102, + "type": "C" + }, + { + "at": 618.2737, + "frame": 102, + "type": "O" + }, + { + "at": 620.0972, + "frame": 103, + "type": "O" + }, + { + "at": 620.1194, + "frame": 103, + "type": "C" + }, + { + "at": 620.1194, + "frame": 109, + "type": "O" + }, + { + "at": 622.1598, + "frame": 109, + "type": "C" + }, + { + "at": 622.1598, + "frame": 105, + "type": "O" + }, + { + "at": 622.1962, + "frame": 105, + "type": "C" + }, + { + "at": 622.1962, + "frame": 102, + "type": "O" + }, + { + "at": 623.5865, + "frame": 103, + "type": "O" + }, + { + "at": 623.6016, + "frame": 103, + "type": "C" + }, + { + "at": 623.6016, + "frame": 102, + "type": "C" + }, + { + "at": 623.6016, + "frame": 110, + "type": "O" + }, + { + "at": 623.6313, + "frame": 110, + "type": "C" + }, + { + "at": 623.6313, + "frame": 105, + "type": "O" + }, + { + "at": 623.6552, + "frame": 105, + "type": "C" + }, + { + "at": 623.6552, + "frame": 102, + "type": "O" + }, + { + "at": 623.6731, + "frame": 102, + "type": "C" + }, + { + "at": 623.6731, + "frame": 102, + "type": "C" + }, + { + "at": 623.6731, + "frame": 102, + "type": "O" + }, + { + "at": 623.705, + "frame": 102, + "type": "C" + }, + { + "at": 623.705, + "frame": 102, + "type": "O" + }, + { + "at": 623.8115, + "frame": 102, + "type": "C" + }, + { + "at": 623.8115, + "frame": 102, + "type": "O" + }, + { + "at": 623.8754, + "frame": 102, + "type": "C" + }, + { + "at": 623.8754, + "frame": 81, + "type": "O" + }, + { + "at": 623.893, + "frame": 81, + "type": "C" + }, + { + "at": 623.893, + "frame": 79, + "type": "C" + }, + { + "at": 623.893, + "frame": 82, + "type": "O" + }, + { + "at": 623.9058, + "frame": 82, + "type": "C" + }, + { + "at": 623.9058, + "frame": 83, + "type": "O" + }, + { + "at": 623.9237, + "frame": 83, + "type": "C" + }, + { + "at": 623.9237, + "frame": 84, + "type": "O" + }, + { + "at": 623.9395, + "frame": 84, + "type": "C" + }, + { + "at": 623.9395, + "frame": 67, + "type": "O" + }, + { + "at": 623.9564, + "frame": 67, + "type": "C" + }, + { + "at": 623.9564, + "frame": 85, + "type": "O" + }, + { + "at": 623.9847, + "frame": 85, + "type": "C" + }, + { + "at": 623.9847, + "frame": 86, + "type": "O" + }, + { + "at": 624.0193, + "frame": 86, + "type": "C" + }, + { + "at": 624.0193, + "frame": 87, + "type": "O" + }, + { + "at": 624.0395, + "frame": 87, + "type": "C" + }, + { + "at": 624.0395, + "frame": 99, + "type": "O" + }, + { + "at": 624.0527, + "frame": 99, + "type": "C" + }, + { + "at": 624.0527, + "frame": 88, + "type": "O" + }, + { + "at": 624.0654, + "frame": 88, + "type": "C" + }, + { + "at": 624.0654, + "frame": 89, + "type": "O" + }, + { + "at": 624.0838, + "frame": 89, + "type": "C" + }, + { + "at": 624.0838, + "frame": 66, + "type": "O" + }, + { + "at": 624.0975, + "frame": 66, + "type": "C" + }, + { + "at": 624.0975, + "frame": 64, + "type": "O" + }, + { + "at": 624.1088, + "frame": 64, + "type": "C" + }, + { + "at": 624.1088, + "frame": 90, + "type": "O" + }, + { + "at": 624.1246, + "frame": 90, + "type": "C" + }, + { + "at": 624.1246, + "frame": 91, + "type": "O" + }, + { + "at": 624.1603, + "frame": 91, + "type": "C" + }, + { + "at": 624.1603, + "frame": 92, + "type": "O" + }, + { + "at": 624.1744, + "frame": 92, + "type": "C" + }, + { + "at": 624.1744, + "frame": 93, + "type": "O" + }, + { + "at": 624.187, + "frame": 93, + "type": "C" + }, + { + "at": 624.187, + "frame": 94, + "type": "O" + }, + { + "at": 624.4908, + "frame": 95, + "type": "O" + }, + { + "at": 624.5059, + "frame": 95, + "type": "C" + }, + { + "at": 624.5059, + "frame": 95, + "type": "O" + }, + { + "at": 624.5943, + "frame": 95, + "type": "C" + }, + { + "at": 624.5943, + "frame": 95, + "type": "O" + }, + { + "at": 624.6096, + "frame": 95, + "type": "C" + }, + { + "at": 624.6096, + "frame": 95, + "type": "O" + }, + { + "at": 624.6292, + "frame": 95, + "type": "C" + }, + { + "at": 624.6292, + "frame": 95, + "type": "O" + }, + { + "at": 624.6758, + "frame": 95, + "type": "C" + }, + { + "at": 624.6758, + "frame": 96, + "type": "O" + }, + { + "at": 624.896, + "frame": 96, + "type": "C" + }, + { + "at": 624.896, + "frame": 94, + "type": "C" + }, + { + "at": 624.896, + "frame": 67, + "type": "O" + }, + { + "at": 624.9191, + "frame": 67, + "type": "C" + }, + { + "at": 624.9191, + "frame": 77, + "type": "O" + }, + { + "at": 624.9436, + "frame": 77, + "type": "C" + }, + { + "at": 624.9436, + "frame": 78, + "type": "O" + }, + { + "at": 625.3014, + "frame": 78, + "type": "C" + }, + { + "at": 625.3014, + "frame": 79, + "type": "O" + }, + { + "at": 628.0042, + "frame": 111, + "type": "O" + }, + { + "at": 628.0228, + "frame": 111, + "type": "C" + }, + { + "at": 628.0228, + "frame": 111, + "type": "O" + }, + { + "at": 634.5867, + "frame": 111, + "type": "C" + }, + { + "at": 634.5867, + "frame": 111, + "type": "O" + }, + { + "at": 634.6233, + "frame": 111, + "type": "C" + }, + { + "at": 634.6233, + "frame": 111, + "type": "O" + }, + { + "at": 660.507, + "frame": 111, + "type": "C" + }, + { + "at": 660.507, + "frame": 111, + "type": "O" + }, + { + "at": 660.5388, + "frame": 111, + "type": "C" + }, + { + "at": 660.5388, + "frame": 111, + "type": "O" + }, + { + "at": 660.5735, + "frame": 111, + "type": "C" + }, + { + "at": 660.5735, + "frame": 111, + "type": "O" + }, + { + "at": 667.0111, + "frame": 111, + "type": "C" + }, + { + "at": 667.0111, + "frame": 111, + "type": "O" + }, + { + "at": 668.5875, + "frame": 111, + "type": "C" + }, + { + "at": 668.5875, + "frame": 111, + "type": "O" + }, + { + "at": 668.6401, + "frame": 111, + "type": "C" + }, + { + "at": 668.6401, + "frame": 111, + "type": "O" + }, + { + "at": 668.6812, + "frame": 111, + "type": "C" + }, + { + "at": 668.6812, + "frame": 111, + "type": "O" + }, + { + "at": 668.7492, + "frame": 111, + "type": "C" + }, + { + "at": 668.7492, + "frame": 81, + "type": "O" + }, + { + "at": 668.7643, + "frame": 81, + "type": "C" + }, + { + "at": 668.7643, + "frame": 79, + "type": "C" + }, + { + "at": 668.7643, + "frame": 82, + "type": "O" + }, + { + "at": 668.7804, + "frame": 82, + "type": "C" + }, + { + "at": 668.7804, + "frame": 83, + "type": "O" + }, + { + "at": 668.7978, + "frame": 83, + "type": "C" + }, + { + "at": 668.7978, + "frame": 84, + "type": "O" + }, + { + "at": 668.8135, + "frame": 84, + "type": "C" + }, + { + "at": 668.8135, + "frame": 67, + "type": "O" + }, + { + "at": 668.8304, + "frame": 67, + "type": "C" + }, + { + "at": 668.8304, + "frame": 85, + "type": "O" + }, + { + "at": 668.8584, + "frame": 85, + "type": "C" + }, + { + "at": 668.8584, + "frame": 86, + "type": "O" + }, + { + "at": 668.8909, + "frame": 86, + "type": "C" + }, + { + "at": 668.8909, + "frame": 87, + "type": "O" + }, + { + "at": 668.9121, + "frame": 87, + "type": "C" + }, + { + "at": 668.9121, + "frame": 99, + "type": "O" + }, + { + "at": 668.9264, + "frame": 99, + "type": "C" + }, + { + "at": 668.9264, + "frame": 88, + "type": "O" + }, + { + "at": 668.94, + "frame": 88, + "type": "C" + }, + { + "at": 668.94, + "frame": 89, + "type": "O" + }, + { + "at": 668.96, + "frame": 89, + "type": "C" + }, + { + "at": 668.96, + "frame": 66, + "type": "O" + }, + { + "at": 668.9744, + "frame": 66, + "type": "C" + }, + { + "at": 668.9744, + "frame": 64, + "type": "O" + }, + { + "at": 668.986, + "frame": 64, + "type": "C" + }, + { + "at": 668.986, + "frame": 90, + "type": "O" + }, + { + "at": 669.0023, + "frame": 90, + "type": "C" + }, + { + "at": 669.0023, + "frame": 91, + "type": "O" + }, + { + "at": 669.0298, + "frame": 91, + "type": "C" + }, + { + "at": 669.0298, + "frame": 92, + "type": "O" + }, + { + "at": 669.0433, + "frame": 92, + "type": "C" + }, + { + "at": 669.0433, + "frame": 93, + "type": "O" + }, + { + "at": 669.0557, + "frame": 93, + "type": "C" + }, + { + "at": 669.0557, + "frame": 94, + "type": "O" + }, + { + "at": 669.3678, + "frame": 95, + "type": "O" + }, + { + "at": 669.382, + "frame": 95, + "type": "C" + }, + { + "at": 669.382, + "frame": 95, + "type": "O" + }, + { + "at": 669.4723, + "frame": 95, + "type": "C" + }, + { + "at": 669.4723, + "frame": 95, + "type": "O" + }, + { + "at": 669.488, + "frame": 95, + "type": "C" + }, + { + "at": 669.488, + "frame": 95, + "type": "O" + }, + { + "at": 669.5132, + "frame": 95, + "type": "C" + }, + { + "at": 669.5132, + "frame": 95, + "type": "O" + }, + { + "at": 669.5617, + "frame": 95, + "type": "C" + }, + { + "at": 669.5617, + "frame": 96, + "type": "O" + }, + { + "at": 669.7806, + "frame": 96, + "type": "C" + }, + { + "at": 669.7806, + "frame": 94, + "type": "C" + }, + { + "at": 669.7806, + "frame": 67, + "type": "O" + }, + { + "at": 669.8037, + "frame": 67, + "type": "C" + }, + { + "at": 669.8037, + "frame": 77, + "type": "O" + }, + { + "at": 669.8278, + "frame": 77, + "type": "C" + }, + { + "at": 669.8278, + "frame": 78, + "type": "O" + }, + { + "at": 670.1835, + "frame": 78, + "type": "C" + }, + { + "at": 670.1835, + "frame": 79, + "type": "O" + }, + { + "at": 672.8039, + "frame": 112, + "type": "O" + }, + { + "at": 672.8215, + "frame": 112, + "type": "C" + }, + { + "at": 672.8215, + "frame": 112, + "type": "O" + }, + { + "at": 707.4017, + "frame": 112, + "type": "C" + }, + { + "at": 707.4017, + "frame": 112, + "type": "O" + }, + { + "at": 707.436, + "frame": 112, + "type": "C" + }, + { + "at": 707.436, + "frame": 112, + "type": "O" + }, + { + "at": 712.7599, + "frame": 112, + "type": "C" + }, + { + "at": 712.7599, + "frame": 112, + "type": "O" + }, + { + "at": 714.82, + "frame": 112, + "type": "C" + }, + { + "at": 714.82, + "frame": 112, + "type": "O" + }, + { + "at": 726.5483, + "frame": 112, + "type": "C" + }, + { + "at": 726.5483, + "frame": 112, + "type": "O" + }, + { + "at": 728.0344, + "frame": 112, + "type": "C" + }, + { + "at": 728.0344, + "frame": 112, + "type": "O" + }, + { + "at": 728.1355, + "frame": 112, + "type": "C" + }, + { + "at": 728.1355, + "frame": 81, + "type": "O" + }, + { + "at": 728.1534, + "frame": 81, + "type": "C" + }, + { + "at": 728.1534, + "frame": 79, + "type": "C" + }, + { + "at": 728.1534, + "frame": 82, + "type": "O" + }, + { + "at": 728.167, + "frame": 82, + "type": "C" + }, + { + "at": 728.167, + "frame": 83, + "type": "O" + }, + { + "at": 728.1863, + "frame": 83, + "type": "C" + }, + { + "at": 728.1863, + "frame": 84, + "type": "O" + }, + { + "at": 728.2068, + "frame": 84, + "type": "C" + }, + { + "at": 728.2068, + "frame": 67, + "type": "O" + }, + { + "at": 728.2253, + "frame": 67, + "type": "C" + }, + { + "at": 728.2253, + "frame": 85, + "type": "O" + }, + { + "at": 728.2605, + "frame": 85, + "type": "C" + }, + { + "at": 728.2605, + "frame": 86, + "type": "O" + }, + { + "at": 728.2973, + "frame": 86, + "type": "C" + }, + { + "at": 728.2973, + "frame": 87, + "type": "O" + }, + { + "at": 728.3179, + "frame": 87, + "type": "C" + }, + { + "at": 728.3179, + "frame": 99, + "type": "O" + }, + { + "at": 728.3401, + "frame": 99, + "type": "C" + }, + { + "at": 728.3401, + "frame": 88, + "type": "O" + }, + { + "at": 728.3559, + "frame": 88, + "type": "C" + }, + { + "at": 728.3559, + "frame": 89, + "type": "O" + }, + { + "at": 728.3757, + "frame": 89, + "type": "C" + }, + { + "at": 728.3757, + "frame": 66, + "type": "O" + }, + { + "at": 728.3911, + "frame": 66, + "type": "C" + }, + { + "at": 728.3911, + "frame": 64, + "type": "O" + }, + { + "at": 728.4037, + "frame": 64, + "type": "C" + }, + { + "at": 728.4037, + "frame": 90, + "type": "O" + }, + { + "at": 728.4177, + "frame": 90, + "type": "C" + }, + { + "at": 728.4177, + "frame": 91, + "type": "O" + }, + { + "at": 728.444, + "frame": 91, + "type": "C" + }, + { + "at": 728.444, + "frame": 92, + "type": "O" + }, + { + "at": 728.4594, + "frame": 92, + "type": "C" + }, + { + "at": 728.4594, + "frame": 93, + "type": "O" + }, + { + "at": 728.4725, + "frame": 93, + "type": "C" + }, + { + "at": 728.4725, + "frame": 94, + "type": "O" + }, + { + "at": 728.8416, + "frame": 95, + "type": "O" + }, + { + "at": 728.8568, + "frame": 95, + "type": "C" + }, + { + "at": 728.8568, + "frame": 95, + "type": "O" + }, + { + "at": 728.953, + "frame": 95, + "type": "C" + }, + { + "at": 728.953, + "frame": 95, + "type": "O" + }, + { + "at": 728.9681, + "frame": 95, + "type": "C" + }, + { + "at": 728.9681, + "frame": 95, + "type": "O" + }, + { + "at": 728.9857, + "frame": 95, + "type": "C" + }, + { + "at": 728.9857, + "frame": 95, + "type": "O" + }, + { + "at": 729.0335, + "frame": 95, + "type": "C" + }, + { + "at": 729.0335, + "frame": 96, + "type": "O" + }, + { + "at": 729.2546, + "frame": 96, + "type": "C" + }, + { + "at": 729.2546, + "frame": 94, + "type": "C" + }, + { + "at": 729.2546, + "frame": 67, + "type": "O" + }, + { + "at": 729.2771, + "frame": 67, + "type": "C" + }, + { + "at": 729.2771, + "frame": 77, + "type": "O" + }, + { + "at": 729.3015, + "frame": 77, + "type": "C" + }, + { + "at": 729.3015, + "frame": 78, + "type": "O" + }, + { + "at": 729.671, + "frame": 78, + "type": "C" + }, + { + "at": 729.671, + "frame": 79, + "type": "O" + }, + { + "at": 731.2084, + "frame": 113, + "type": "O" + }, + { + "at": 731.2271, + "frame": 113, + "type": "C" + }, + { + "at": 731.2271, + "frame": 113, + "type": "O" + }, + { + "at": 731.8245, + "frame": 113, + "type": "C" + }, + { + "at": 731.8245, + "frame": 113, + "type": "O" + }, + { + "at": 731.8725, + "frame": 113, + "type": "C" + }, + { + "at": 731.8725, + "frame": 113, + "type": "O" + }, + { + "at": 751.1524, + "frame": 103, + "type": "O" + }, + { + "at": 751.1775, + "frame": 103, + "type": "C" + }, + { + "at": 751.1775, + "frame": 114, + "type": "O" + }, + { + "at": 754.5445, + "frame": 114, + "type": "C" + }, + { + "at": 754.5445, + "frame": 115, + "type": "O" + }, + { + "at": 757.9065, + "frame": 115, + "type": "C" + }, + { + "at": 757.9065, + "frame": 105, + "type": "O" + }, + { + "at": 759.5661, + "frame": 105, + "type": "C" + }, + { + "at": 759.5661, + "frame": 103, + "type": "O" + }, + { + "at": 759.5812, + "frame": 103, + "type": "C" + }, + { + "at": 759.5812, + "frame": 114, + "type": "O" + }, + { + "at": 761.43, + "frame": 114, + "type": "C" + }, + { + "at": 761.43, + "frame": 105, + "type": "O" + }, + { + "at": 762.6295, + "frame": 105, + "type": "C" + }, + { + "at": 762.6295, + "frame": 103, + "type": "O" + }, + { + "at": 762.6427, + "frame": 103, + "type": "C" + }, + { + "at": 762.6427, + "frame": 114, + "type": "O" + }, + { + "at": 762.6788, + "frame": 114, + "type": "C" + }, + { + "at": 762.6788, + "frame": 115, + "type": "O" + }, + { + "at": 762.7432, + "frame": 115, + "type": "C" + }, + { + "at": 762.7432, + "frame": 105, + "type": "O" + }, + { + "at": 763.8622, + "frame": 105, + "type": "C" + }, + { + "at": 763.8622, + "frame": 103, + "type": "O" + }, + { + "at": 763.8763, + "frame": 103, + "type": "C" + }, + { + "at": 763.8763, + "frame": 114, + "type": "O" + }, + { + "at": 763.9131, + "frame": 114, + "type": "C" + }, + { + "at": 763.9131, + "frame": 105, + "type": "O" + }, + { + "at": 765.3304, + "frame": 105, + "type": "C" + }, + { + "at": 765.3304, + "frame": 103, + "type": "O" + }, + { + "at": 765.3508, + "frame": 103, + "type": "C" + }, + { + "at": 765.3508, + "frame": 114, + "type": "O" + }, + { + "at": 765.402, + "frame": 114, + "type": "C" + }, + { + "at": 765.402, + "frame": 105, + "type": "O" + }, + { + "at": 767.284, + "frame": 105, + "type": "C" + }, + { + "at": 767.284, + "frame": 103, + "type": "O" + }, + { + "at": 767.3043, + "frame": 103, + "type": "C" + }, + { + "at": 767.3043, + "frame": 114, + "type": "O" + }, + { + "at": 767.3632, + "frame": 114, + "type": "C" + }, + { + "at": 767.3632, + "frame": 105, + "type": "O" + }, + { + "at": 768.5229, + "frame": 105, + "type": "C" + }, + { + "at": 768.5229, + "frame": 103, + "type": "O" + }, + { + "at": 768.5349, + "frame": 103, + "type": "C" + }, + { + "at": 768.5349, + "frame": 114, + "type": "O" + }, + { + "at": 768.5559, + "frame": 114, + "type": "C" + }, + { + "at": 768.5559, + "frame": 105, + "type": "O" + }, + { + "at": 769.6344, + "frame": 105, + "type": "C" + }, + { + "at": 769.6344, + "frame": 103, + "type": "O" + }, + { + "at": 769.6542, + "frame": 103, + "type": "C" + }, + { + "at": 769.6542, + "frame": 114, + "type": "O" + }, + { + "at": 769.6734, + "frame": 114, + "type": "C" + }, + { + "at": 769.6734, + "frame": 105, + "type": "O" + }, + { + "at": 770.7303, + "frame": 105, + "type": "C" + }, + { + "at": 770.7303, + "frame": 103, + "type": "O" + }, + { + "at": 770.7416, + "frame": 103, + "type": "C" + }, + { + "at": 770.7416, + "frame": 114, + "type": "O" + }, + { + "at": 770.7753, + "frame": 114, + "type": "C" + }, + { + "at": 770.7753, + "frame": 105, + "type": "O" + }, + { + "at": 771.8327, + "frame": 105, + "type": "C" + }, + { + "at": 771.8327, + "frame": 103, + "type": "O" + }, + { + "at": 771.8459, + "frame": 103, + "type": "C" + }, + { + "at": 771.8459, + "frame": 114, + "type": "O" + }, + { + "at": 771.877, + "frame": 114, + "type": "C" + }, + { + "at": 771.877, + "frame": 105, + "type": "O" + }, + { + "at": 771.9966, + "frame": 105, + "type": "C" + }, + { + "at": 771.9966, + "frame": 113, + "type": "O" + }, + { + "at": 772.036, + "frame": 113, + "type": "C" + }, + { + "at": 772.036, + "frame": 113, + "type": "C" + }, + { + "at": 772.036, + "frame": 113, + "type": "O" + }, + { + "at": 772.0545, + "frame": 113, + "type": "C" + }, + { + "at": 772.0545, + "frame": 113, + "type": "O" + }, + { + "at": 774.6101, + "frame": 113, + "type": "C" + }, + { + "at": 774.6101, + "frame": 113, + "type": "O" + }, + { + "at": 774.6609, + "frame": 113, + "type": "C" + }, + { + "at": 774.6609, + "frame": 113, + "type": "O" + }, + { + "at": 774.6994, + "frame": 113, + "type": "C" + }, + { + "at": 774.6994, + "frame": 113, + "type": "O" + }, + { + "at": 774.7223, + "frame": 113, + "type": "C" + }, + { + "at": 774.7223, + "frame": 113, + "type": "O" + }, + { + "at": 776.1536, + "frame": 113, + "type": "C" + }, + { + "at": 776.1536, + "frame": 113, + "type": "O" + }, + { + "at": 776.2434, + "frame": 113, + "type": "C" + }, + { + "at": 776.2434, + "frame": 81, + "type": "O" + }, + { + "at": 776.2702, + "frame": 81, + "type": "C" + }, + { + "at": 776.2702, + "frame": 79, + "type": "C" + }, + { + "at": 776.2702, + "frame": 82, + "type": "O" + }, + { + "at": 776.2879, + "frame": 82, + "type": "C" + }, + { + "at": 776.2879, + "frame": 84, + "type": "O" + }, + { + "at": 776.51, + "frame": 84, + "type": "C" + }, + { + "at": 776.51, + "frame": 67, + "type": "O" + }, + { + "at": 776.5371, + "frame": 67, + "type": "C" + }, + { + "at": 776.5371, + "frame": 85, + "type": "O" + }, + { + "at": 776.585, + "frame": 85, + "type": "C" + }, + { + "at": 776.585, + "frame": 86, + "type": "O" + }, + { + "at": 776.6392, + "frame": 86, + "type": "C" + }, + { + "at": 776.6392, + "frame": 87, + "type": "O" + }, + { + "at": 776.6823, + "frame": 87, + "type": "C" + }, + { + "at": 776.6823, + "frame": 99, + "type": "O" + }, + { + "at": 776.697, + "frame": 99, + "type": "C" + }, + { + "at": 776.697, + "frame": 88, + "type": "O" + }, + { + "at": 776.7116, + "frame": 88, + "type": "C" + }, + { + "at": 776.7116, + "frame": 89, + "type": "O" + }, + { + "at": 776.7345, + "frame": 89, + "type": "C" + }, + { + "at": 776.7345, + "frame": 66, + "type": "O" + }, + { + "at": 776.7479, + "frame": 66, + "type": "C" + }, + { + "at": 776.7479, + "frame": 64, + "type": "O" + }, + { + "at": 776.7601, + "frame": 64, + "type": "C" + }, + { + "at": 776.7601, + "frame": 90, + "type": "O" + }, + { + "at": 776.775, + "frame": 90, + "type": "C" + }, + { + "at": 776.775, + "frame": 91, + "type": "O" + }, + { + "at": 776.8015, + "frame": 91, + "type": "C" + }, + { + "at": 776.8015, + "frame": 92, + "type": "O" + }, + { + "at": 776.816, + "frame": 92, + "type": "C" + }, + { + "at": 776.816, + "frame": 93, + "type": "O" + }, + { + "at": 776.8307, + "frame": 93, + "type": "C" + }, + { + "at": 776.8307, + "frame": 94, + "type": "O" + }, + { + "at": 777.1563, + "frame": 95, + "type": "O" + }, + { + "at": 777.1794, + "frame": 95, + "type": "C" + }, + { + "at": 777.1794, + "frame": 95, + "type": "O" + }, + { + "at": 777.3058, + "frame": 95, + "type": "C" + }, + { + "at": 777.3058, + "frame": 95, + "type": "O" + }, + { + "at": 777.3318, + "frame": 95, + "type": "C" + }, + { + "at": 777.3318, + "frame": 95, + "type": "O" + }, + { + "at": 777.3602, + "frame": 95, + "type": "C" + }, + { + "at": 777.3602, + "frame": 95, + "type": "O" + }, + { + "at": 777.4291, + "frame": 95, + "type": "C" + }, + { + "at": 777.4291, + "frame": 96, + "type": "O" + }, + { + "at": 777.6942, + "frame": 96, + "type": "C" + }, + { + "at": 777.6942, + "frame": 94, + "type": "C" + }, + { + "at": 777.6942, + "frame": 67, + "type": "O" + }, + { + "at": 777.7259, + "frame": 67, + "type": "C" + }, + { + "at": 777.7259, + "frame": 85, + "type": "O" + }, + { + "at": 777.7612, + "frame": 85, + "type": "C" + }, + { + "at": 777.7612, + "frame": 86, + "type": "O" + }, + { + "at": 777.8079, + "frame": 86, + "type": "C" + }, + { + "at": 777.8079, + "frame": 87, + "type": "O" + }, + { + "at": 777.8359, + "frame": 87, + "type": "C" + }, + { + "at": 777.8359, + "frame": 99, + "type": "O" + }, + { + "at": 777.8548, + "frame": 99, + "type": "C" + }, + { + "at": 777.8548, + "frame": 88, + "type": "O" + }, + { + "at": 777.8793, + "frame": 88, + "type": "C" + }, + { + "at": 777.8793, + "frame": 89, + "type": "O" + }, + { + "at": 777.9098, + "frame": 89, + "type": "C" + }, + { + "at": 777.9098, + "frame": 66, + "type": "O" + }, + { + "at": 777.941, + "frame": 66, + "type": "C" + }, + { + "at": 777.941, + "frame": 64, + "type": "O" + }, + { + "at": 777.9591, + "frame": 64, + "type": "C" + }, + { + "at": 777.9591, + "frame": 90, + "type": "O" + }, + { + "at": 777.9826, + "frame": 90, + "type": "C" + }, + { + "at": 777.9826, + "frame": 91, + "type": "O" + }, + { + "at": 778.0239, + "frame": 91, + "type": "C" + }, + { + "at": 778.0239, + "frame": 92, + "type": "O" + }, + { + "at": 778.0445, + "frame": 92, + "type": "C" + }, + { + "at": 778.0445, + "frame": 93, + "type": "O" + }, + { + "at": 778.2099, + "frame": 93, + "type": "C" + }, + { + "at": 778.2099, + "frame": 94, + "type": "O" + }, + { + "at": 778.5344, + "frame": 95, + "type": "O" + }, + { + "at": 778.5545, + "frame": 95, + "type": "C" + }, + { + "at": 778.5545, + "frame": 95, + "type": "O" + }, + { + "at": 778.6592, + "frame": 95, + "type": "C" + }, + { + "at": 778.6592, + "frame": 95, + "type": "O" + }, + { + "at": 778.6838, + "frame": 95, + "type": "C" + }, + { + "at": 778.6838, + "frame": 95, + "type": "O" + }, + { + "at": 778.7111, + "frame": 95, + "type": "C" + }, + { + "at": 778.7111, + "frame": 95, + "type": "O" + }, + { + "at": 778.7792, + "frame": 95, + "type": "C" + }, + { + "at": 778.7792, + "frame": 96, + "type": "O" + }, + { + "at": 779.0846, + "frame": 96, + "type": "C" + }, + { + "at": 779.0846, + "frame": 94, + "type": "C" + }, + { + "at": 779.0846, + "frame": 67, + "type": "O" + }, + { + "at": 779.1264, + "frame": 67, + "type": "C" + }, + { + "at": 779.1264, + "frame": 77, + "type": "O" + }, + { + "at": 779.1697, + "frame": 77, + "type": "C" + }, + { + "at": 779.1697, + "frame": 78, + "type": "O" + }, + { + "at": 779.7012, + "frame": 78, + "type": "C" + }, + { + "at": 779.7012, + "frame": 79, + "type": "O" + }, + { + "at": 781.5516, + "frame": 116, + "type": "O" + }, + { + "at": 781.5678, + "frame": 116, + "type": "C" + }, + { + "at": 781.5678, + "frame": 116, + "type": "O" + }, + { + "at": 799.4567, + "frame": 116, + "type": "C" + }, + { + "at": 799.4567, + "frame": 116, + "type": "O" + }, + { + "at": 802.7078, + "frame": 116, + "type": "C" + }, + { + "at": 802.7078, + "frame": 116, + "type": "O" + }, + { + "at": 806.3928, + "frame": 116, + "type": "C" + }, + { + "at": 806.3928, + "frame": 116, + "type": "O" + }, + { + "at": 812.8413, + "frame": 116, + "type": "C" + }, + { + "at": 812.8413, + "frame": 116, + "type": "O" + }, + { + "at": 812.9038, + "frame": 116, + "type": "C" + }, + { + "at": 812.9038, + "frame": 116, + "type": "O" + }, + { + "at": 812.9456, + "frame": 116, + "type": "C" + }, + { + "at": 812.9456, + "frame": 116, + "type": "O" + }, + { + "at": 820.7032, + "frame": 116, + "type": "C" + }, + { + "at": 820.7032, + "frame": 116, + "type": "O" + }, + { + "at": 833.3968, + "frame": 117, + "type": "O" + }, + { + "at": 833.4557, + "frame": 117, + "type": "C" + }, + { + "at": 833.4557, + "frame": 117, + "type": "O" + }, + { + "at": 833.4764, + "frame": 117, + "type": "C" + }, + { + "at": 833.4764, + "frame": 117, + "type": "O" + }, + { + "at": 834.1964, + "frame": 117, + "type": "C" + }, + { + "at": 834.1964, + "frame": 117, + "type": "O" + }, + { + "at": 834.2308, + "frame": 117, + "type": "C" + }, + { + "at": 834.2308, + "frame": 117, + "type": "O" + }, + { + "at": 834.2516, + "frame": 117, + "type": "C" + }, + { + "at": 834.2516, + "frame": 117, + "type": "O" + }, + { + "at": 834.2942, + "frame": 117, + "type": "C" + }, + { + "at": 834.2942, + "frame": 117, + "type": "O" + }, + { + "at": 834.343, + "frame": 117, + "type": "C" + }, + { + "at": 834.343, + "frame": 117, + "type": "O" + }, + { + "at": 834.4214, + "frame": 117, + "type": "C" + }, + { + "at": 834.4214, + "frame": 116, + "type": "O" + }, + { + "at": 834.4669, + "frame": 116, + "type": "C" + }, + { + "at": 834.4669, + "frame": 116, + "type": "C" + }, + { + "at": 834.4669, + "frame": 81, + "type": "O" + }, + { + "at": 834.4901, + "frame": 81, + "type": "C" + }, + { + "at": 834.4901, + "frame": 79, + "type": "C" + }, + { + "at": 834.4901, + "frame": 82, + "type": "O" + }, + { + "at": 834.5109, + "frame": 82, + "type": "C" + }, + { + "at": 834.5109, + "frame": 83, + "type": "O" + }, + { + "at": 834.5365, + "frame": 83, + "type": "C" + }, + { + "at": 834.5365, + "frame": 84, + "type": "O" + }, + { + "at": 834.5593, + "frame": 84, + "type": "C" + }, + { + "at": 834.5593, + "frame": 67, + "type": "O" + }, + { + "at": 834.5818, + "frame": 67, + "type": "C" + }, + { + "at": 834.5818, + "frame": 85, + "type": "O" + }, + { + "at": 834.6201, + "frame": 85, + "type": "C" + }, + { + "at": 834.6201, + "frame": 86, + "type": "O" + }, + { + "at": 834.6657, + "frame": 86, + "type": "C" + }, + { + "at": 834.6657, + "frame": 87, + "type": "O" + }, + { + "at": 834.6939, + "frame": 87, + "type": "C" + }, + { + "at": 834.6939, + "frame": 99, + "type": "O" + }, + { + "at": 834.7146, + "frame": 99, + "type": "C" + }, + { + "at": 834.7146, + "frame": 88, + "type": "O" + }, + { + "at": 834.7342, + "frame": 88, + "type": "C" + }, + { + "at": 834.7342, + "frame": 89, + "type": "O" + }, + { + "at": 834.7647, + "frame": 89, + "type": "C" + }, + { + "at": 834.7647, + "frame": 66, + "type": "O" + }, + { + "at": 834.7941, + "frame": 66, + "type": "C" + }, + { + "at": 834.7941, + "frame": 64, + "type": "O" + }, + { + "at": 834.8119, + "frame": 64, + "type": "C" + }, + { + "at": 834.8119, + "frame": 90, + "type": "O" + }, + { + "at": 834.8388, + "frame": 90, + "type": "C" + }, + { + "at": 834.8388, + "frame": 91, + "type": "O" + }, + { + "at": 834.878, + "frame": 91, + "type": "C" + }, + { + "at": 834.878, + "frame": 92, + "type": "O" + }, + { + "at": 834.8995, + "frame": 92, + "type": "C" + }, + { + "at": 834.8995, + "frame": 93, + "type": "O" + }, + { + "at": 834.9174, + "frame": 93, + "type": "C" + }, + { + "at": 834.9174, + "frame": 94, + "type": "O" + }, + { + "at": 835.2311, + "frame": 95, + "type": "O" + }, + { + "at": 835.2505, + "frame": 95, + "type": "C" + }, + { + "at": 835.2505, + "frame": 95, + "type": "O" + }, + { + "at": 835.3644, + "frame": 95, + "type": "C" + }, + { + "at": 835.3644, + "frame": 95, + "type": "O" + }, + { + "at": 835.3884, + "frame": 95, + "type": "C" + }, + { + "at": 835.3884, + "frame": 95, + "type": "O" + }, + { + "at": 835.4144, + "frame": 95, + "type": "C" + }, + { + "at": 835.4144, + "frame": 95, + "type": "O" + }, + { + "at": 835.4766, + "frame": 95, + "type": "C" + }, + { + "at": 835.4766, + "frame": 96, + "type": "O" + }, + { + "at": 835.7396, + "frame": 96, + "type": "C" + }, + { + "at": 835.7396, + "frame": 94, + "type": "C" + }, + { + "at": 835.7396, + "frame": 67, + "type": "O" + }, + { + "at": 835.7695, + "frame": 67, + "type": "C" + }, + { + "at": 835.7695, + "frame": 77, + "type": "O" + }, + { + "at": 835.8023, + "frame": 77, + "type": "C" + }, + { + "at": 835.8023, + "frame": 78, + "type": "O" + }, + { + "at": 836.2533, + "frame": 78, + "type": "C" + }, + { + "at": 836.2533, + "frame": 79, + "type": "O" + }, + { + "at": 843.742, + "frame": 118, + "type": "O" + }, + { + "at": 843.7656, + "frame": 118, + "type": "C" + }, + { + "at": 843.7656, + "frame": 118, + "type": "O" + }, + { + "at": 843.8385, + "frame": 118, + "type": "C" + }, + { + "at": 843.8385, + "frame": 118, + "type": "O" + }, + { + "at": 2096.6022, + "frame": 118, + "type": "C" + }, + { + "at": 2096.6022, + "frame": 118, + "type": "O" + }, + { + "at": 2116.8314, + "frame": 118, + "type": "C" + }, + { + "at": 2116.8314, + "frame": 118, + "type": "O" + }, + { + "at": 2116.8768, + "frame": 118, + "type": "C" + }, + { + "at": 2116.8768, + "frame": 118, + "type": "O" + }, + { + "at": 2116.9209, + "frame": 118, + "type": "C" + }, + { + "at": 2116.9209, + "frame": 118, + "type": "O" + }, + { + "at": 2116.9896, + "frame": 118, + "type": "C" + }, + { + "at": 2116.9896, + "frame": 118, + "type": "O" + }, + { + "at": 2120.3744, + "frame": 118, + "type": "C" + }, + { + "at": 2120.3744, + "frame": 118, + "type": "O" + }, + { + "at": 2122.2381, + "frame": 118, + "type": "C" + }, + { + "at": 2122.2381, + "frame": 118, + "type": "O" + }, + { + "at": 2122.2653, + "frame": 118, + "type": "C" + }, + { + "at": 2122.2653, + "frame": 118, + "type": "O" + }, + { + "at": 2122.2809, + "frame": 118, + "type": "C" + }, + { + "at": 2122.2809, + "frame": 118, + "type": "O" + }, + { + "at": 2122.2927, + "frame": 118, + "type": "C" + }, + { + "at": 2122.2927, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3057, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3057, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3325, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3325, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3542, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3542, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3655, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3655, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3795, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3795, + "frame": 118, + "type": "O" + }, + { + "at": 2122.3937, + "frame": 118, + "type": "C" + }, + { + "at": 2122.3937, + "frame": 118, + "type": "O" + }, + { + "at": 2122.422, + "frame": 118, + "type": "C" + }, + { + "at": 2122.422, + "frame": 118, + "type": "O" + }, + { + "at": 2122.4555, + "frame": 118, + "type": "C" + }, + { + "at": 2122.4555, + "frame": 118, + "type": "O" + }, + { + "at": 2122.4735, + "frame": 118, + "type": "C" + }, + { + "at": 2122.4735, + "frame": 118, + "type": "O" + }, + { + "at": 2122.4895, + "frame": 118, + "type": "C" + }, + { + "at": 2122.4895, + "frame": 118, + "type": "O" + }, + { + "at": 2122.5036, + "frame": 118, + "type": "C" + }, + { + "at": 2122.5036, + "frame": 118, + "type": "O" + }, + { + "at": 2124.83, + "frame": 118, + "type": "C" + }, + { + "at": 2124.83, + "frame": 118, + "type": "O" + }, + { + "at": 2124.8833, + "frame": 118, + "type": "C" + }, + { + "at": 2124.8833, + "frame": 118, + "type": "O" + }, + { + "at": 2124.9097, + "frame": 118, + "type": "C" + }, + { + "at": 2124.9097, + "frame": 118, + "type": "O" + }, + { + "at": 2124.9346, + "frame": 118, + "type": "C" + }, + { + "at": 2124.9346, + "frame": 118, + "type": "O" + }, + { + "at": 2124.9646, + "frame": 118, + "type": "C" + }, + { + "at": 2124.9646, + "frame": 118, + "type": "O" + }, + { + "at": 2125.5467, + "frame": 118, + "type": "C" + }, + { + "at": 2125.5467, + "frame": 118, + "type": "O" + }, + { + "at": 2125.5903, + "frame": 118, + "type": "C" + }, + { + "at": 2125.5903, + "frame": 118, + "type": "O" + }, + { + "at": 2125.6136, + "frame": 118, + "type": "C" + }, + { + "at": 2125.6136, + "frame": 118, + "type": "O" + }, + { + "at": 2125.6365, + "frame": 118, + "type": "C" + }, + { + "at": 2125.6365, + "frame": 118, + "type": "O" + }, + { + "at": 2143.7447, + "frame": 118, + "type": "C" + }, + { + "at": 2143.7447, + "frame": 118, + "type": "O" + }, + { + "at": 2143.7753, + "frame": 118, + "type": "C" + }, + { + "at": 2143.7753, + "frame": 118, + "type": "O" + }, + { + "at": 2143.8116, + "frame": 118, + "type": "C" + }, + { + "at": 2143.8116, + "frame": 118, + "type": "O" + }, + { + "at": 2143.83, + "frame": 118, + "type": "C" + }, + { + "at": 2143.83, + "frame": 118, + "type": "O" + }, + { + "at": 2145.11, + "frame": 118, + "type": "C" + }, + { + "at": 2145.11, + "frame": 118, + "type": "O" + }, + { + "at": 2146.3777, + "frame": 118, + "type": "C" + }, + { + "at": 2146.3777, + "frame": 118, + "type": "O" + }, + { + "at": 2146.8231, + "frame": 118, + "type": "C" + }, + { + "at": 2146.8231, + "frame": 118, + "type": "O" + }, + { + "at": 2146.8949, + "frame": 118, + "type": "C" + }, + { + "at": 2146.8949, + "frame": 118, + "type": "O" + }, + { + "at": 2149.4385, + "frame": 119, + "type": "O" + }, + { + "at": 2149.4639, + "frame": 119, + "type": "C" + }, + { + "at": 2149.4639, + "frame": 119, + "type": "O" + }, + { + "at": 2152.8638, + "frame": 119, + "type": "C" + }, + { + "at": 2152.8638, + "frame": 119, + "type": "O" + }, + { + "at": 2152.8924, + "frame": 119, + "type": "C" + }, + { + "at": 2152.8924, + "frame": 119, + "type": "O" + }, + { + "at": 2154.3001, + "frame": 119, + "type": "C" + }, + { + "at": 2154.3001, + "frame": 119, + "type": "O" + }, + { + "at": 2154.3898, + "frame": 119, + "type": "C" + }, + { + "at": 2154.3898, + "frame": 118, + "type": "O" + }, + { + "at": 2154.6538, + "frame": 119, + "type": "O" + }, + { + "at": 2154.665, + "frame": 119, + "type": "C" + }, + { + "at": 2154.665, + "frame": 118, + "type": "C" + }, + { + "at": 2154.665, + "frame": 119, + "type": "O" + }, + { + "at": 2154.6804, + "frame": 119, + "type": "C" + }, + { + "at": 2154.6804, + "frame": 119, + "type": "O" + }, + { + "at": 2154.7044, + "frame": 119, + "type": "C" + }, + { + "at": 2154.7044, + "frame": 119, + "type": "O" + }, + { + "at": 2154.7478, + "frame": 119, + "type": "C" + }, + { + "at": 2154.7478, + "frame": 119, + "type": "O" + }, + { + "at": 2155.0738, + "frame": 119, + "type": "C" + }, + { + "at": 2155.0738, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1084, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1084, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1225, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1225, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1481, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1481, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1603, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1603, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1715, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1715, + "frame": 117, + "type": "O" + }, + { + "at": 2155.1888, + "frame": 117, + "type": "C" + }, + { + "at": 2155.1888, + "frame": 117, + "type": "O" + }, + { + "at": 2155.2156, + "frame": 117, + "type": "C" + }, + { + "at": 2155.2156, + "frame": 117, + "type": "O" + }, + { + "at": 2155.2774, + "frame": 117, + "type": "C" + }, + { + "at": 2155.2774, + "frame": 118, + "type": "O" + }, + { + "at": 2155.2925, + "frame": 118, + "type": "C" + }, + { + "at": 2155.2925, + "frame": 118, + "type": "C" + }, + { + "at": 2155.2925, + "frame": 118, + "type": "O" + }, + { + "at": 2155.3139, + "frame": 118, + "type": "C" + }, + { + "at": 2155.3139, + "frame": 118, + "type": "O" + }, + { + "at": 2155.3471, + "frame": 118, + "type": "C" + }, + { + "at": 2155.3471, + "frame": 81, + "type": "O" + }, + { + "at": 2155.361, + "frame": 81, + "type": "C" + }, + { + "at": 2155.361, + "frame": 79, + "type": "C" + }, + { + "at": 2155.361, + "frame": 82, + "type": "O" + }, + { + "at": 2155.3729, + "frame": 82, + "type": "C" + }, + { + "at": 2155.3729, + "frame": 83, + "type": "O" + }, + { + "at": 2155.3889, + "frame": 83, + "type": "C" + }, + { + "at": 2155.3889, + "frame": 84, + "type": "O" + }, + { + "at": 2155.4243, + "frame": 84, + "type": "C" + }, + { + "at": 2155.4243, + "frame": 67, + "type": "O" + }, + { + "at": 2155.4596, + "frame": 67, + "type": "C" + }, + { + "at": 2155.4596, + "frame": 85, + "type": "O" + }, + { + "at": 2155.4839, + "frame": 85, + "type": "C" + }, + { + "at": 2155.4839, + "frame": 86, + "type": "O" + }, + { + "at": 2155.5114, + "frame": 86, + "type": "C" + }, + { + "at": 2155.5114, + "frame": 87, + "type": "O" + }, + { + "at": 2155.5327, + "frame": 87, + "type": "C" + }, + { + "at": 2155.5327, + "frame": 99, + "type": "O" + }, + { + "at": 2155.5554, + "frame": 99, + "type": "C" + }, + { + "at": 2155.5554, + "frame": 88, + "type": "O" + }, + { + "at": 2155.5651, + "frame": 88, + "type": "C" + }, + { + "at": 2155.5651, + "frame": 89, + "type": "O" + }, + { + "at": 2155.5817, + "frame": 89, + "type": "C" + }, + { + "at": 2155.5817, + "frame": 66, + "type": "O" + }, + { + "at": 2155.5969, + "frame": 66, + "type": "C" + }, + { + "at": 2155.5969, + "frame": 64, + "type": "O" + }, + { + "at": 2155.6114, + "frame": 64, + "type": "C" + }, + { + "at": 2155.6114, + "frame": 90, + "type": "O" + }, + { + "at": 2155.6233, + "frame": 90, + "type": "C" + }, + { + "at": 2155.6233, + "frame": 91, + "type": "O" + }, + { + "at": 2155.6621, + "frame": 91, + "type": "C" + }, + { + "at": 2155.6621, + "frame": 92, + "type": "O" + }, + { + "at": 2155.676, + "frame": 92, + "type": "C" + }, + { + "at": 2155.676, + "frame": 93, + "type": "O" + }, + { + "at": 2155.6884, + "frame": 93, + "type": "C" + }, + { + "at": 2155.6884, + "frame": 94, + "type": "O" + }, + { + "at": 2155.9452, + "frame": 95, + "type": "O" + }, + { + "at": 2155.9599, + "frame": 95, + "type": "C" + }, + { + "at": 2155.9599, + "frame": 95, + "type": "O" + }, + { + "at": 2156.0564, + "frame": 95, + "type": "C" + }, + { + "at": 2156.0564, + "frame": 95, + "type": "O" + }, + { + "at": 2156.0715, + "frame": 95, + "type": "C" + }, + { + "at": 2156.0715, + "frame": 95, + "type": "O" + }, + { + "at": 2156.0892, + "frame": 95, + "type": "C" + }, + { + "at": 2156.0892, + "frame": 95, + "type": "O" + }, + { + "at": 2156.1406, + "frame": 95, + "type": "C" + }, + { + "at": 2156.1406, + "frame": 96, + "type": "O" + }, + { + "at": 2156.3606, + "frame": 96, + "type": "C" + }, + { + "at": 2156.3606, + "frame": 94, + "type": "C" + }, + { + "at": 2156.3606, + "frame": 67, + "type": "O" + }, + { + "at": 2156.3848, + "frame": 67, + "type": "C" + }, + { + "at": 2156.3848, + "frame": 77, + "type": "O" + }, + { + "at": 2156.4102, + "frame": 77, + "type": "C" + }, + { + "at": 2156.4102, + "frame": 78, + "type": "O" + }, + { + "at": 2156.8099, + "frame": 78, + "type": "C" + }, + { + "at": 2156.8099, + "frame": 79, + "type": "O" + }, + { + "at": 2160.7242, + "frame": 120, + "type": "O" + }, + { + "at": 2160.7412, + "frame": 120, + "type": "C" + }, + { + "at": 2160.7412, + "frame": 120, + "type": "O" + }, + { + "at": 2161.1838, + "frame": 120, + "type": "C" + }, + { + "at": 2161.1838, + "frame": 120, + "type": "O" + }, + { + "at": 2161.269, + "frame": 120, + "type": "C" + }, + { + "at": 2161.269, + "frame": 120, + "type": "O" + }, + { + "at": 2167.5757, + "frame": 120, + "type": "C" + }, + { + "at": 2167.5757, + "frame": 120, + "type": "O" + }, + { + "at": 2167.6039, + "frame": 120, + "type": "C" + }, + { + "at": 2167.6039, + "frame": 120, + "type": "O" + }, + { + "at": 2167.7339, + "frame": 120, + "type": "C" + }, + { + "at": 2167.7339, + "frame": 120, + "type": "O" + }, + { + "at": 2169.6148, + "frame": 120, + "type": "C" + }, + { + "at": 2169.6148, + "frame": 120, + "type": "O" + }, + { + "at": 2169.6808, + "frame": 120, + "type": "C" + }, + { + "at": 2169.6808, + "frame": 120, + "type": "O" + }, + { + "at": 2172.4571, + "frame": 120, + "type": "C" + }, + { + "at": 2172.4571, + "frame": 120, + "type": "O" + }, + { + "at": 2172.4972, + "frame": 120, + "type": "C" + }, + { + "at": 2172.4972, + "frame": 120, + "type": "O" + }, + { + "at": 2173.6304, + "frame": 120, + "type": "C" + }, + { + "at": 2173.6304, + "frame": 120, + "type": "O" + }, + { + "at": 2174.7125, + "frame": 120, + "type": "C" + }, + { + "at": 2174.7125, + "frame": 120, + "type": "O" + }, + { + "at": 2175.825, + "frame": 120, + "type": "C" + }, + { + "at": 2175.825, + "frame": 120, + "type": "O" + }, + { + "at": 2175.8971, + "frame": 120, + "type": "C" + }, + { + "at": 2175.8971, + "frame": 120, + "type": "O" + }, + { + "at": 2175.9221, + "frame": 120, + "type": "C" + }, + { + "at": 2175.9221, + "frame": 120, + "type": "O" + }, + { + "at": 2175.9531, + "frame": 120, + "type": "C" + }, + { + "at": 2175.9531, + "frame": 120, + "type": "O" + }, + { + "at": 2181.719, + "frame": 117, + "type": "O" + }, + { + "at": 2181.8014, + "frame": 117, + "type": "C" + }, + { + "at": 2181.8014, + "frame": 117, + "type": "O" + }, + { + "at": 2181.8251, + "frame": 117, + "type": "C" + }, + { + "at": 2181.8251, + "frame": 117, + "type": "O" + }, + { + "at": 2181.8491, + "frame": 117, + "type": "C" + }, + { + "at": 2181.8491, + "frame": 117, + "type": "O" + }, + { + "at": 2181.8686, + "frame": 117, + "type": "C" + }, + { + "at": 2181.8686, + "frame": 117, + "type": "O" + }, + { + "at": 2181.886, + "frame": 117, + "type": "C" + }, + { + "at": 2181.886, + "frame": 117, + "type": "O" + }, + { + "at": 2181.9166, + "frame": 117, + "type": "C" + }, + { + "at": 2181.9166, + "frame": 117, + "type": "O" + }, + { + "at": 2181.9874, + "frame": 117, + "type": "C" + }, + { + "at": 2181.9874, + "frame": 117, + "type": "O" + }, + { + "at": 2182.1379, + "frame": 117, + "type": "C" + }, + { + "at": 2182.1379, + "frame": 120, + "type": "O" + }, + { + "at": 2182.2335, + "frame": 120, + "type": "C" + }, + { + "at": 2182.2335, + "frame": 120, + "type": "C" + }, + { + "at": 2182.2335, + "frame": 81, + "type": "O" + }, + { + "at": 2182.2586, + "frame": 81, + "type": "C" + }, + { + "at": 2182.2586, + "frame": 79, + "type": "C" + }, + { + "at": 2182.2586, + "frame": 82, + "type": "O" + }, + { + "at": 2182.281, + "frame": 82, + "type": "C" + }, + { + "at": 2182.281, + "frame": 83, + "type": "O" + }, + { + "at": 2182.3094, + "frame": 83, + "type": "C" + }, + { + "at": 2182.3094, + "frame": 84, + "type": "O" + }, + { + "at": 2182.3578, + "frame": 84, + "type": "C" + }, + { + "at": 2182.3578, + "frame": 67, + "type": "O" + }, + { + "at": 2182.3827, + "frame": 67, + "type": "C" + }, + { + "at": 2182.3827, + "frame": 85, + "type": "O" + }, + { + "at": 2182.4064, + "frame": 85, + "type": "C" + }, + { + "at": 2182.4064, + "frame": 86, + "type": "O" + }, + { + "at": 2182.4288, + "frame": 86, + "type": "C" + }, + { + "at": 2182.4288, + "frame": 87, + "type": "O" + }, + { + "at": 2182.4463, + "frame": 87, + "type": "C" + }, + { + "at": 2182.4463, + "frame": 99, + "type": "O" + }, + { + "at": 2182.4579, + "frame": 99, + "type": "C" + }, + { + "at": 2182.4579, + "frame": 88, + "type": "O" + }, + { + "at": 2182.467, + "frame": 88, + "type": "C" + }, + { + "at": 2182.467, + "frame": 89, + "type": "O" + }, + { + "at": 2182.4909, + "frame": 89, + "type": "C" + }, + { + "at": 2182.4909, + "frame": 66, + "type": "O" + }, + { + "at": 2182.503, + "frame": 66, + "type": "C" + }, + { + "at": 2182.503, + "frame": 64, + "type": "O" + }, + { + "at": 2182.5137, + "frame": 64, + "type": "C" + }, + { + "at": 2182.5137, + "frame": 90, + "type": "O" + }, + { + "at": 2182.5244, + "frame": 90, + "type": "C" + }, + { + "at": 2182.5244, + "frame": 91, + "type": "O" + }, + { + "at": 2182.5434, + "frame": 91, + "type": "C" + }, + { + "at": 2182.5434, + "frame": 92, + "type": "O" + }, + { + "at": 2182.5546, + "frame": 92, + "type": "C" + }, + { + "at": 2182.5546, + "frame": 93, + "type": "O" + }, + { + "at": 2182.5818, + "frame": 93, + "type": "C" + }, + { + "at": 2182.5818, + "frame": 94, + "type": "O" + }, + { + "at": 2182.8513, + "frame": 95, + "type": "O" + }, + { + "at": 2182.8762, + "frame": 95, + "type": "C" + }, + { + "at": 2182.8762, + "frame": 95, + "type": "O" + }, + { + "at": 2182.9632, + "frame": 95, + "type": "C" + }, + { + "at": 2182.9632, + "frame": 95, + "type": "O" + }, + { + "at": 2182.9781, + "frame": 95, + "type": "C" + }, + { + "at": 2182.9781, + "frame": 95, + "type": "O" + }, + { + "at": 2182.9974, + "frame": 95, + "type": "C" + }, + { + "at": 2182.9974, + "frame": 95, + "type": "O" + }, + { + "at": 2183.0389, + "frame": 95, + "type": "C" + }, + { + "at": 2183.0389, + "frame": 96, + "type": "O" + }, + { + "at": 2183.2576, + "frame": 96, + "type": "C" + }, + { + "at": 2183.2576, + "frame": 94, + "type": "C" + }, + { + "at": 2183.2576, + "frame": 67, + "type": "O" + }, + { + "at": 2183.2816, + "frame": 67, + "type": "C" + }, + { + "at": 2183.2816, + "frame": 77, + "type": "O" + }, + { + "at": 2183.3081, + "frame": 77, + "type": "C" + }, + { + "at": 2183.3081, + "frame": 78, + "type": "O" + }, + { + "at": 2183.6804, + "frame": 78, + "type": "C" + }, + { + "at": 2183.6804, + "frame": 79, + "type": "O" + }, + { + "at": 2184.7654, + "frame": 121, + "type": "O" + }, + { + "at": 2184.7791, + "frame": 121, + "type": "C" + }, + { + "at": 2184.7791, + "frame": 121, + "type": "O" + }, + { + "at": 2184.7962, + "frame": 121, + "type": "C" + }, + { + "at": 2184.7962, + "frame": 121, + "type": "O" + }, + { + "at": 2184.8531, + "frame": 121, + "type": "C" + }, + { + "at": 2184.8531, + "frame": 81, + "type": "O" + }, + { + "at": 2184.8682, + "frame": 81, + "type": "C" + }, + { + "at": 2184.8682, + "frame": 79, + "type": "C" + }, + { + "at": 2184.8682, + "frame": 82, + "type": "O" + }, + { + "at": 2184.8797, + "frame": 82, + "type": "C" + }, + { + "at": 2184.8797, + "frame": 83, + "type": "O" + }, + { + "at": 2184.8952, + "frame": 83, + "type": "C" + }, + { + "at": 2184.8952, + "frame": 84, + "type": "O" + }, + { + "at": 2184.9104, + "frame": 84, + "type": "C" + }, + { + "at": 2184.9104, + "frame": 67, + "type": "O" + }, + { + "at": 2184.9215, + "frame": 67, + "type": "C" + }, + { + "at": 2184.9215, + "frame": 85, + "type": "O" + }, + { + "at": 2184.9422, + "frame": 85, + "type": "C" + }, + { + "at": 2184.9422, + "frame": 86, + "type": "O" + }, + { + "at": 2186.8313, + "frame": 86, + "type": "C" + }, + { + "at": 2186.8313, + "frame": 87, + "type": "O" + }, + { + "at": 2186.8598, + "frame": 87, + "type": "C" + }, + { + "at": 2186.8598, + "frame": 88, + "type": "O" + }, + { + "at": 2186.8712, + "frame": 88, + "type": "C" + }, + { + "at": 2186.8712, + "frame": 89, + "type": "O" + }, + { + "at": 2186.8972, + "frame": 89, + "type": "C" + }, + { + "at": 2186.8972, + "frame": 66, + "type": "O" + }, + { + "at": 2186.9103, + "frame": 66, + "type": "C" + }, + { + "at": 2186.9103, + "frame": 64, + "type": "O" + }, + { + "at": 2187.3735, + "frame": 64, + "type": "C" + }, + { + "at": 2187.3735, + "frame": 90, + "type": "O" + }, + { + "at": 2187.3937, + "frame": 90, + "type": "C" + }, + { + "at": 2187.3937, + "frame": 91, + "type": "O" + }, + { + "at": 2187.4212, + "frame": 91, + "type": "C" + }, + { + "at": 2187.4212, + "frame": 92, + "type": "O" + }, + { + "at": 2187.4372, + "frame": 92, + "type": "C" + }, + { + "at": 2187.4372, + "frame": 93, + "type": "O" + }, + { + "at": 2187.4585, + "frame": 93, + "type": "C" + }, + { + "at": 2187.4585, + "frame": 94, + "type": "O" + }, + { + "at": 2188.1357, + "frame": 95, + "type": "O" + }, + { + "at": 2188.1519, + "frame": 95, + "type": "C" + }, + { + "at": 2188.1519, + "frame": 95, + "type": "O" + }, + { + "at": 2188.2282, + "frame": 95, + "type": "C" + }, + { + "at": 2188.2282, + "frame": 95, + "type": "O" + }, + { + "at": 2188.255, + "frame": 95, + "type": "C" + }, + { + "at": 2188.255, + "frame": 95, + "type": "O" + }, + { + "at": 2188.2745, + "frame": 95, + "type": "C" + }, + { + "at": 2188.2745, + "frame": 95, + "type": "O" + }, + { + "at": 2188.3219, + "frame": 95, + "type": "C" + }, + { + "at": 2188.3219, + "frame": 96, + "type": "O" + }, + { + "at": 2188.7198, + "frame": 96, + "type": "C" + }, + { + "at": 2188.7198, + "frame": 94, + "type": "C" + }, + { + "at": 2188.7198, + "frame": 67, + "type": "O" + }, + { + "at": 2188.7477, + "frame": 67, + "type": "C" + }, + { + "at": 2188.7477, + "frame": 77, + "type": "O" + }, + { + "at": 2188.878, + "frame": 77, + "type": "C" + }, + { + "at": 2188.878, + "frame": 93, + "type": "O" + }, + { + "at": 2188.9289, + "frame": 93, + "type": "C" + }, + { + "at": 2188.9289, + "frame": 64, + "type": "O" + }, + { + "at": 2188.9684, + "frame": 64, + "type": "C" + }, + { + "at": 2188.9684, + "frame": 122, + "type": "O" + }, + { + "at": 2189.0106, + "frame": 122, + "type": "C" + }, + { + "at": 2189.0106, + "frame": 123, + "type": "O" + }, + { + "at": 2189.0324, + "frame": 123, + "type": "C" + }, + { + "at": 2189.0324, + "frame": 124, + "type": "O" + }, + { + "at": 2189.2864, + "frame": 124, + "type": "C" + }, + { + "at": 2189.2864, + "frame": 125, + "type": "O" + }, + { + "at": 2189.5428, + "frame": 125, + "type": "C" + }, + { + "at": 2189.5428, + "frame": 126, + "type": "O" + }, + { + "at": 2189.6099, + "frame": 126, + "type": "C" + }, + { + "at": 2189.6099, + "frame": 1, + "type": "C" + } + ] + } + ] +} \ No newline at end of file diff --git a/profiler_0001.speedscope.json b/profiler_0001.speedscope.json new file mode 100644 index 0000000..cca4043 --- /dev/null +++ b/profiler_0001.speedscope.json @@ -0,0 +1,7822 @@ +{ + "exporter": "Profiler@4.0.0", + "name": "profiler_0001.speedscope.json", + "activeProfileIndex": 0, + "schema": "https://www.speedscope.app/file-format-schema.json", + "shared": { + "frames": [ + { + "name": "{|" + }, + { + "name": "& .\\winfetch.ps1" + }, + { + "name": "-not ($IsWindows -or $PSVersionTable.PSVersion.Major -eq 5)" + }, + { + "name": "$help" + }, + { + "name": "$defaultConfig = @'\r\n# ===== WINFETCH CONFIGURATION =====\r\n\r\n# $image = \"~/winfetch.png\"\r\n# $noimage = $true\r\n\r\n# Display image using ASCII characters\r\n# $ascii = $true\r\n\r\n# Set the version of Windows to derive the logo from.\r\n# $logo = \"Windows 10\"\r\n\r\n# Specify width for image/logo\r\n# $imgwidth = 24\r\n\r\n# Custom ASCII Art\r\n# This should be an array of strings, with positive\r\n# height and width equal to $imgwidth defined above.\r\n# $CustomAscii = @(\r\n# \"⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣶⣶⣾⣷⣶⣆⠸⣿⣿⡟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⡈⠻⠿⠟⠻⠿⢿⣷⣤⣤⣄⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⢀⣤⣤⡘⢿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⣿⣿⣿⡇⢸⣿⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣉⣉⡁ ⠀\"\r\n# \"⠀⠀⠀⠈⠛⠛⢡⣾⣿⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⠟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡿⢁⣴⣶⣦⣴⣶⣾⡿⠛⠛⠋⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⠿⢿⡿⠿⠏⢰⣿⣿⣧⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⠟⠀⠀ ⠀\"\r\n# )\r\n\r\n# Make the logo blink\r\n# $blink = $true\r\n\r\n# Display all built-in info segments.\r\n# $all = $true\r\n\r\n# Add a custom info line\r\n# function info_custom_time {\r\n# return @{\r\n# title = \"Time\"\r\n# content = (Get-Date)\r\n# }\r\n# }\r\n\r\n# Configure which disks are shown\r\n# $ShowDisks = @(\"C:\", \"D:\")\r\n# Show all available disks\r\n# $ShowDisks = @(\"*\")\r\n\r\n# Configure which package managers are shown\r\n# disabling unused ones will improve speed\r\n# $ShowPkgs = @(\"winget\", \"scoop\", \"choco\")\r\n\r\n# Use the following option to specify custom package managers.\r\n# Create a function with that name as suffix, and which returns\r\n# the number of packages. Two examples are shown here:\r\n# $CustomPkgs = @(\"cargo\", \"just-install\")\r\n# function info_pkg_cargo {\r\n# return (cargo install --list | Where-Object {$_ -like \"*:\" }).Length\r\n# }\r\n# function info_pkg_just-install {\r\n# return (just-install list).Length\r\n# }\r\n\r\n# Configure how to show info for levels\r\n# Default is for text only.\r\n# 'bar' is for bar only.\r\n# 'textbar' is for text + bar.\r\n# 'bartext' is for bar + text.\r\n# $cpustyle = 'bar'\r\n# $memorystyle = 'textbar'\r\n# $diskstyle = 'bartext'\r\n# $batterystyle = 'bartext'\r\n\r\n\r\n# Remove the '#' from any of the lines in\r\n# the following to **enable** their output.\r\n\r\n@(\r\n \"title\"\r\n \"dashes\"\r\n \"os\"\r\n \"computer\"\r\n \"kernel\"\r\n \"motherboard\"\r\n # \"custom_time\" # use custom info line\r\n \"uptime\"\r\n # \"ps_pkgs\" # takes some time\r\n \"pkgs\"\r\n \"pwsh\"\r\n \"resolution\"\r\n \"terminal\"\r\n # \"theme\"\r\n \"cpu\"\r\n \"gpu\"\r\n # \"cpu_usage\" # takes some time\r\n \"memory\"\r\n \"disk\"\r\n # \"battery\"\r\n # \"locale\"\r\n # \"weather\"\r\n # \"local_ip\"\r\n # \"public_ip\"\r\n \"blank\"\r\n \"colorbar\"\r\n)\r\n\r\n'@" + }, + { + "name": "-not $configPath" + }, + { + "name": "$env:WINFETCH_CONFIG_PATH" + }, + { + "name": "$configPath = \"${env:USERPROFILE}\\.config\\winfetch\\config.ps1\"" + }, + { + "name": "$genconf -and (Test-Path $configPath)" + }, + { + "name": "-not (Test-Path $configPath) -or [String]::IsNullOrWhiteSpace((Get-Content $configPath))" + }, + { + "name": "$config = . $configPath" + }, + { + "name": "$ShowDisks = @(\"*\")" + }, + { + "name": "$runspaces = $true" + }, + { + "name": "$RunspaceOps = @(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n \"motherboard\"\n \"custom_time\"\n \"uptime\"\n \"ps_pkgs\"\n \"pkgs\"\n \"pwsh\"\n \"resolution\"\n \"terminal\"\n \"theme\"\n \"cpu\"\n \"gpu\"\n \"cpu_usage\"\n #\"memory\" # Causes Errors\n \"disk\"\n #\"battery\" # Causes Errors\n \"locale\"\n \"weather\"\n \"local_ip\"\n \"public_ip\"\n \"blank\"\n \"colorbar\"\n)" + }, + { + "name": "\"title\"" + }, + { + "name": "\"dashes\"" + }, + { + "name": "\"os\"" + }, + { + "name": "\"computer\"" + }, + { + "name": "\"kernel\"" + }, + { + "name": "\"motherboard\"" + }, + { + "name": "\"custom_time\"" + }, + { + "name": "\"uptime\"" + }, + { + "name": "\"ps_pkgs\"" + }, + { + "name": "\"pkgs\"" + }, + { + "name": "\"pwsh\"" + }, + { + "name": "\"resolution\"" + }, + { + "name": "\"terminal\"" + }, + { + "name": "\"theme\"" + }, + { + "name": "\"cpu\"" + }, + { + "name": "\"gpu\"" + }, + { + "name": "\"cpu_usage\"" + }, + { + "name": "\"disk\"" + }, + { + "name": "\"locale\"" + }, + { + "name": "\"weather\"" + }, + { + "name": "\"local_ip\"" + }, + { + "name": "\"public_ip\"" + }, + { + "name": "\"blank\"" + }, + { + "name": "\"colorbar\"" + }, + { + "name": "@(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n #\"motherboard\"\n # \"custom_time\" # use custom info line\n \"uptime\"\n # \"ps_pkgs\" # takes some time\n #\"pkgs\"\n #\"pwsh\"\n \"resolution\"\n #\"terminal\"\n # \"theme\"\n \"cpu\"\n \"gpu\"\n # \"cpu_usage\" # takes some time\n \"memory\"\n \"disk\"\n \"battery\"\n # \"locale\"\n # \"weather\"\n # \"local_ip\"\n # \"public_ip\"\n \"blank\"\n #\"colorbar\"\n)" + }, + { + "name": "\"memory\"" + }, + { + "name": "\"battery\"" + }, + { + "name": "-not $config -or $all" + }, + { + "name": "$PSBoundParameters.Keys" + }, + { + "name": "$param" + }, + { + "name": "$e = [char]0x1B" + }, + { + "name": "$ansiRegex = '([\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~])))'" + }, + { + "name": "$cimSession = New-CimSession" + }, + { + "name": "$os = Get-CimInstance -ClassName Win32_OperatingSystem -Property Caption,OSArchitecture -CimSession $cimSession" + }, + { + "name": "$t = if ($blink) { \"5\" } else { \"1\" }" + }, + { + "name": "$blink" + }, + { + "name": "\"1\"" + }, + { + "name": "$COLUMNS = $imgwidth" + }, + { + "name": "$img = if (-not $noimage) {\r\n if ($image) {\r\n if ($image -eq 'wallpaper') {\r\n $image = (Get-ItemProperty -Path 'HKCU:\\Control Panel\\Desktop' -Name Wallpaper).Wallpaper\r\n }\r\n\r\n Add-Type -AssemblyName 'System.Drawing'\r\n $OldImage = if (Test-Path $image -PathType Leaf) {\r\n [Drawing.Bitmap]::FromFile((Resolve-Path $image))\r\n } else {\r\n [Drawing.Bitmap]::FromStream((Invoke-WebRequest $image -UseBasicParsing).RawContentStream)\r\n }\r\n\r\n # Divide scaled height by 2.2 to compensate for ASCII characters being taller than they are wide\r\n [int]$ROWS = $OldImage.Height / $OldImage.Width * $COLUMNS / $(if ($ascii) { 2.2 } else { 1 })\r\n $Bitmap = New-Object System.Drawing.Bitmap @($OldImage, [Drawing.Size]\"$COLUMNS,$ROWS\")\r\n\r\n if ($ascii) {\r\n $chars = ' .,:;+iIH$@'\r\n for ($i = 0; $i -lt $Bitmap.Height; $i++) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $p = $Bitmap.GetPixel($j, $i)\r\n $currline += \"$e[38;2;$($p.R);$($p.G);$($p.B)m$($chars[[math]::Floor($p.GetBrightness() * $chars.Length)])$e[0m\"\r\n }\r\n $currline\r\n }\r\n } else {\r\n for ($i = 0; $i -lt $Bitmap.Height; $i += 2) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $back = $Bitmap.GetPixel($j, $i)\r\n if ($i -ge $Bitmap.Height - 1) {\r\n $foreVT = \"\"\r\n } else {\r\n $fore = $Bitmap.GetPixel($j, $i + 1)\r\n $foreVT = \"$e[48;2;$($fore.R);$($fore.G);$($fore.B)m\"\r\n }\r\n $backVT = \"$e[38;2;$($back.R);$($back.G);$($back.B)m\"\r\n $currline += \"$backVT$foreVT$([char]0x2580)$e[0m\"\r\n }\r\n $currline\r\n }\r\n }\r\n\r\n $Bitmap.Dispose()\r\n $OldImage.Dispose()\r\n\r\n } elseif (($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)) {\r\n $CustomAscii\r\n } else {\r\n if (-not $logo) {\r\n if ($os -Like \"*Windows 11 *\") {\r\n $logo = \"Windows 11\"\r\n } elseif ($os -Like \"*Windows 10 *\" -Or $os -Like \"*Windows 8.1 *\" -Or $os -Like \"*Windows 8 *\") {\r\n $logo = \"Windows 10\"\r\n } else {\r\n $logo = \"Windows 7\"\r\n }\r\n }\r\n\r\n if ($logo -eq \"Windows 11\") {\r\n $COLUMNS = 32\r\n @(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )\r\n } elseif ($logo -eq \"Windows 10\" -Or $logo -eq \"Windows 8.1\" -Or $logo -eq \"Windows 8\") {\r\n $COLUMNS = 34\r\n @(\r\n \"${e}[${t};34m ....,,:;+ccllll\"\r\n \"${e}[${t};34m ...,,+:; cllllllllllllllllll\"\r\n \"${e}[${t};34m,cclllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m``'ccllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m ``' \\\\*:: :ccllllllllllllllll\"\r\n \"${e}[${t};34m ````````''*::cll\"\r\n \"${e}[${t};34m ````\"\r\n )\r\n } elseif ($logo -eq \"Windows 7\" -Or $logo -eq \"Windows Vista\" -Or $logo -eq \"Windows XP\") {\r\n $COLUMNS = 35\r\n @(\r\n \"${e}[${t};31m ,.=:!!t3Z3z., \"\r\n \"${e}[${t};31m :tt:::tt333EE3 \"\r\n \"${e}[${t};31m Et:::ztt33EEE ${e}[32m@Ee., ..,\"\r\n \"${e}[${t};31m ;tt:::tt333EE7 ${e}[32m;EEEEEEttttt33#\"\r\n \"${e}[${t};31m :Et:::zt333EEQ. ${e}[32mSEEEEEttttt33QL\"\r\n \"${e}[${t};31m it::::tt333EEF ${e}[32m@EEEEEEttttt33F \"\r\n \"${e}[${t};31m ;3=*^``````'*4EEV ${e}[32m:EEEEEEttttt33@. \"\r\n \"${e}[${t};34m ,.=::::it=., ${e}[31m`` ${e}[32m@EEEEEEtttz33QF \"\r\n \"${e}[${t};34m ;::::::::zt33) ${e}[32m'4EEEtttji3P* \"\r\n \"${e}[${t};34m :t::::::::tt33 ${e}[33m:Z3z.. ${e}[32m```` ${e}[33m,..g. \"\r\n \"${e}[${t};34m i::::::::zt33F ${e}[33mAEEEtttt::::ztF \"\r\n \"${e}[${t};34m ;:::::::::t33V ${e}[33m;EEEttttt::::t3 \"\r\n \"${e}[${t};34m E::::::::zt33L ${e}[33m@EEEtttt::::z3F \"\r\n \"${e}[${t};34m{3=*^``````'*4E3) ${e}[33m;EEEtttt:::::tZ`` \"\r\n \"${e}[${t};34m `` ${e}[33m:EEEEtttt::::z7 \"\r\n \"${e}[${t};33m 'VEzjt:;;z>*`` \"\r\n )\r\n } elseif ($logo -eq \"Microsoft\") {\r\n $COLUMNS = 13\r\n @(\r\n \"${e}[${t};31m┌─────┐${e}[32m┌─────┐\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m└─────┘${e}[32m└─────┘\"\r\n \"${e}[${t};34m┌─────┐${e}[33m┌─────┐\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m└─────┘${e}[33m└─────┘\"\r\n )\r\n } elseif ($logo -eq \"Windows 2000\" -Or $logo -eq \"Windows 98\" -Or $logo -eq \"Windows 95\") {\r\n $COLUMNS = 45\r\n @(\r\n \" ${e}[${t};30mdBBBBBBBb\"\r\n \" ${e}[${t};30mdBBBBBBBBBBBBBBBb\"\r\n \" ${e}[${t};30m 000 BBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: 000000 BBBBB${e}[${t};31mdBB${e}[${t};30mBBBB${e}[${t};32mBBBb${e}[${t};30mBBBBBBB\"\r\n \"${e}[${t};31m::::: ${e}[${t};30m====== 000${e}[${t};31m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};32m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};31m====== 000${e}[${t};30m000 BBBBBBBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: ====== 000000 BBBBB${e}[${t};34mdBB${e}[${t};30mBBBB${e}[${t};33mBBBb${e}[${t};30mBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ${e}[${t};30m====== 000${e}[${t};34m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};33m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};34m====== 000${e}[${t};30m000 BBBBBf `BBBBBBBBB\"\r\n \"${e}[${t};30m :: ====== 000000 BBf `BBBBB\"\r\n \" ${c1} == 000000 B BBB\"\r\n )\r\n } else {\r\n Write-Error 'The only version logos supported are Windows 11, Windows 10/8.1/8, Windows 7/Vista/XP, Windows 2000/98/95 and Microsoft.'\r\n exit 1\r\n }\r\n }\r\n}" + }, + { + "name": "-not $noimage" + }, + { + "name": "$image" + }, + { + "name": "($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)" + }, + { + "name": "-not $logo" + }, + { + "name": "$os -Like \"*Windows 11 *\"" + }, + { + "name": "$logo = \"Windows 11\"" + }, + { + "name": "$logo -eq \"Windows 11\"" + }, + { + "name": "$COLUMNS = 32" + }, + { + "name": "@(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )" + }, + { + "name": "\"${e}[${t};34mlllllllllllllll lllllllllllllll\"" + }, + { + "name": "\"${e}[${t};34m \"" + }, + { + "name": "-not $stripansi" + }, + { + "name": "Write-Output \"$e[0m$e[?25l\"" + }, + { + "name": "$img" + }, + { + "name": "$line" + }, + { + "name": "Write-Output \" $line\"" + }, + { + "name": "$GAP = 3" + }, + { + "name": "$writtenLines = 0" + }, + { + "name": "$freeSpace = $Host.UI.RawUI.WindowSize.Width - 1" + }, + { + "name": "$img -and -not $stripansi" + }, + { + "name": "$freeSpace -= 1 + $COLUMNS + $GAP" + }, + { + "name": "Write-Output \"$e[$($img.Length + 1)A\"" + }, + { + "name": "$img.Length + 1" + }, + { + "name": "$config" + }, + { + "name": "$item" + }, + { + "name": "Test-Path Function:\"info_$item\"" + }, + { + "name": "$info = & \"info_$item\"" + }, + { + "name": "info_title" + }, + { + "name": "-not $info" + }, + { + "name": "$info -isnot [array]" + }, + { + "name": "$info = @($info)" + }, + { + "name": "$info" + }, + { + "name": "$output = \"$e[1;33m$($line[\"title\"])$e[0m\"" + }, + { + "name": "$line[\"title\"]" + }, + { + "name": "$line[\"title\"] -and $line[\"content\"]" + }, + { + "name": "$output += \"$($line[\"content\"])\"" + }, + { + "name": "$line[\"content\"]" + }, + { + "name": "$output = \"$e[$(2 + $COLUMNS + $GAP)G$output\"" + }, + { + "name": "2 + $COLUMNS + $GAP" + }, + { + "name": "$writtenLines++" + }, + { + "name": "$stripansi" + }, + { + "name": "$output = truncate_line $output $freeSpace" + }, + { + "name": "truncate_line" + }, + { + "name": "Write-Output $output" + }, + { + "name": "info_dashes" + }, + { + "name": "info_os" + }, + { + "name": "$output += \": \"" + }, + { + "name": "info_computer" + }, + { + "name": "info_kernel" + }, + { + "name": "info_uptime" + }, + { + "name": "{|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" + }, + { + "name": "$PSItem.Days -eq 1" + }, + { + "name": "}|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" + }, + { + "name": "$PSItem.Days -gt 1" + }, + { + "name": "$PSItem.Hours -eq 1" + }, + { + "name": "$PSItem.Hours -gt 1" + }, + { + "name": "$PSItem.Minutes -eq 1" + }, + { + "name": "$PSItem.Minutes -gt 1" + }, + { + "name": "info_resolution" + }, + { + "name": "info_cpu" + }, + { + "name": "info_gpu" + }, + { + "name": "($_.Description -ne \"Microsoft Basic Render Driver\") -and ($lines.content -notcontains $_.Description)" + }, + { + "name": "[void]$lines.Add(@{\r\n title = \"GPU\"\r\n content = $_.Description\r\n })" + }, + { + "name": "info_memory" + }, + { + "name": "get_level_info" + }, + { + "name": "info_disk" + }, + { + "name": "to_units" + }, + { + "name": "info_battery" + }, + { + "name": "info_blank" + }, + { + "name": "$diff = $img.Length - $writtenLines" + }, + { + "name": "$img -and $diff -gt 0" + }, + { + "name": "Write-Output \"$e[${diff}B\"" + }, + { + "name": "Write-Output \"$e[?25h\"" + }, + { + "name": "}|" + } + ] + }, + "profiles": [ + { + "type": "evented", + "name": "pwsh (8196) Time=2178.4092ms", + "unit": "milliseconds", + "startValue": 0, + "endValue": 2178.4092, + "events": [ + { + "at": 0.0, + "frame": 0, + "type": "O" + }, + { + "at": 0.022, + "frame": 0, + "type": "C" + }, + { + "at": 0.022, + "frame": 1, + "type": "O" + }, + { + "at": 188.8256, + "frame": 1, + "type": "C" + }, + { + "at": 188.8256, + "frame": 1, + "type": "O" + }, + { + "at": 192.2432, + "frame": 1, + "type": "C" + }, + { + "at": 192.2432, + "frame": 1, + "type": "O" + }, + { + "at": 192.9394, + "frame": 2, + "type": "O" + }, + { + "at": 192.9933, + "frame": 2, + "type": "C" + }, + { + "at": 192.9933, + "frame": 3, + "type": "O" + }, + { + "at": 193.0195, + "frame": 3, + "type": "C" + }, + { + "at": 193.0195, + "frame": 4, + "type": "O" + }, + { + "at": 193.0481, + "frame": 4, + "type": "C" + }, + { + "at": 193.0481, + "frame": 5, + "type": "O" + }, + { + "at": 194.6097, + "frame": 5, + "type": "C" + }, + { + "at": 194.6097, + "frame": 6, + "type": "O" + }, + { + "at": 195.0204, + "frame": 6, + "type": "C" + }, + { + "at": 195.0204, + "frame": 7, + "type": "O" + }, + { + "at": 195.2231, + "frame": 7, + "type": "C" + }, + { + "at": 195.2231, + "frame": 8, + "type": "O" + }, + { + "at": 195.2471, + "frame": 8, + "type": "C" + }, + { + "at": 195.2471, + "frame": 9, + "type": "O" + }, + { + "at": 264.8167, + "frame": 9, + "type": "C" + }, + { + "at": 264.8167, + "frame": 10, + "type": "O" + }, + { + "at": 276.1394, + "frame": 11, + "type": "O" + }, + { + "at": 276.2502, + "frame": 11, + "type": "C" + }, + { + "at": 276.2502, + "frame": 12, + "type": "O" + }, + { + "at": 276.2797, + "frame": 12, + "type": "C" + }, + { + "at": 276.2797, + "frame": 13, + "type": "O" + }, + { + "at": 276.3057, + "frame": 13, + "type": "C" + }, + { + "at": 276.3057, + "frame": 14, + "type": "O" + }, + { + "at": 276.3161, + "frame": 14, + "type": "C" + }, + { + "at": 276.3161, + "frame": 15, + "type": "O" + }, + { + "at": 276.3239, + "frame": 15, + "type": "C" + }, + { + "at": 276.3239, + "frame": 16, + "type": "O" + }, + { + "at": 276.3328, + "frame": 16, + "type": "C" + }, + { + "at": 276.3328, + "frame": 17, + "type": "O" + }, + { + "at": 276.3407, + "frame": 17, + "type": "C" + }, + { + "at": 276.3407, + "frame": 18, + "type": "O" + }, + { + "at": 276.3484, + "frame": 18, + "type": "C" + }, + { + "at": 276.3484, + "frame": 19, + "type": "O" + }, + { + "at": 276.3558, + "frame": 19, + "type": "C" + }, + { + "at": 276.3558, + "frame": 20, + "type": "O" + }, + { + "at": 276.3682, + "frame": 20, + "type": "C" + }, + { + "at": 276.3682, + "frame": 21, + "type": "O" + }, + { + "at": 276.3768, + "frame": 21, + "type": "C" + }, + { + "at": 276.3768, + "frame": 22, + "type": "O" + }, + { + "at": 276.3855, + "frame": 22, + "type": "C" + }, + { + "at": 276.3855, + "frame": 23, + "type": "O" + }, + { + "at": 276.3938, + "frame": 23, + "type": "C" + }, + { + "at": 276.3938, + "frame": 24, + "type": "O" + }, + { + "at": 276.4015, + "frame": 24, + "type": "C" + }, + { + "at": 276.4015, + "frame": 25, + "type": "O" + }, + { + "at": 276.4085, + "frame": 25, + "type": "C" + }, + { + "at": 276.4085, + "frame": 26, + "type": "O" + }, + { + "at": 276.4166, + "frame": 26, + "type": "C" + }, + { + "at": 276.4166, + "frame": 27, + "type": "O" + }, + { + "at": 276.4246, + "frame": 27, + "type": "C" + }, + { + "at": 276.4246, + "frame": 28, + "type": "O" + }, + { + "at": 276.4336, + "frame": 28, + "type": "C" + }, + { + "at": 276.4336, + "frame": 29, + "type": "O" + }, + { + "at": 276.4449, + "frame": 29, + "type": "C" + }, + { + "at": 276.4449, + "frame": 30, + "type": "O" + }, + { + "at": 276.4529, + "frame": 30, + "type": "C" + }, + { + "at": 276.4529, + "frame": 31, + "type": "O" + }, + { + "at": 276.46, + "frame": 31, + "type": "C" + }, + { + "at": 276.46, + "frame": 32, + "type": "O" + }, + { + "at": 276.4671, + "frame": 32, + "type": "C" + }, + { + "at": 276.4671, + "frame": 33, + "type": "O" + }, + { + "at": 276.4743, + "frame": 33, + "type": "C" + }, + { + "at": 276.4743, + "frame": 34, + "type": "O" + }, + { + "at": 276.4814, + "frame": 34, + "type": "C" + }, + { + "at": 276.4814, + "frame": 35, + "type": "O" + }, + { + "at": 276.4884, + "frame": 35, + "type": "C" + }, + { + "at": 276.4884, + "frame": 36, + "type": "O" + }, + { + "at": 276.4956, + "frame": 36, + "type": "C" + }, + { + "at": 276.4956, + "frame": 37, + "type": "O" + }, + { + "at": 276.5168, + "frame": 37, + "type": "C" + }, + { + "at": 276.5168, + "frame": 38, + "type": "O" + }, + { + "at": 276.5313, + "frame": 38, + "type": "C" + }, + { + "at": 276.5313, + "frame": 14, + "type": "O" + }, + { + "at": 276.5395, + "frame": 14, + "type": "C" + }, + { + "at": 276.5395, + "frame": 15, + "type": "O" + }, + { + "at": 276.5469, + "frame": 15, + "type": "C" + }, + { + "at": 276.5469, + "frame": 16, + "type": "O" + }, + { + "at": 276.5541, + "frame": 16, + "type": "C" + }, + { + "at": 276.5541, + "frame": 17, + "type": "O" + }, + { + "at": 276.5612, + "frame": 17, + "type": "C" + }, + { + "at": 276.5612, + "frame": 18, + "type": "O" + }, + { + "at": 276.5689, + "frame": 18, + "type": "C" + }, + { + "at": 276.5689, + "frame": 21, + "type": "O" + }, + { + "at": 276.576, + "frame": 21, + "type": "C" + }, + { + "at": 276.576, + "frame": 25, + "type": "O" + }, + { + "at": 276.5831, + "frame": 25, + "type": "C" + }, + { + "at": 276.5831, + "frame": 28, + "type": "O" + }, + { + "at": 276.5902, + "frame": 28, + "type": "C" + }, + { + "at": 276.5902, + "frame": 29, + "type": "O" + }, + { + "at": 276.598, + "frame": 29, + "type": "C" + }, + { + "at": 276.598, + "frame": 39, + "type": "O" + }, + { + "at": 276.6069, + "frame": 39, + "type": "C" + }, + { + "at": 276.6069, + "frame": 31, + "type": "O" + }, + { + "at": 276.622, + "frame": 31, + "type": "C" + }, + { + "at": 276.622, + "frame": 40, + "type": "O" + }, + { + "at": 276.6296, + "frame": 40, + "type": "C" + }, + { + "at": 276.6296, + "frame": 36, + "type": "O" + }, + { + "at": 276.7524, + "frame": 36, + "type": "C" + }, + { + "at": 276.7524, + "frame": 41, + "type": "O" + }, + { + "at": 278.7161, + "frame": 41, + "type": "C" + }, + { + "at": 278.7161, + "frame": 10, + "type": "C" + }, + { + "at": 278.7161, + "frame": 42, + "type": "O" + }, + { + "at": 288.418, + "frame": 42, + "type": "C" + }, + { + "at": 288.418, + "frame": 43, + "type": "O" + }, + { + "at": 288.4749, + "frame": 43, + "type": "C" + }, + { + "at": 288.4749, + "frame": 44, + "type": "O" + }, + { + "at": 290.3104, + "frame": 44, + "type": "C" + }, + { + "at": 290.3104, + "frame": 45, + "type": "O" + }, + { + "at": 290.3441, + "frame": 45, + "type": "C" + }, + { + "at": 290.3441, + "frame": 46, + "type": "O" + }, + { + "at": 400.3711, + "frame": 46, + "type": "C" + }, + { + "at": 400.3711, + "frame": 47, + "type": "O" + }, + { + "at": 467.0122, + "frame": 47, + "type": "C" + }, + { + "at": 467.0122, + "frame": 48, + "type": "O" + }, + { + "at": 467.0548, + "frame": 48, + "type": "C" + }, + { + "at": 467.0548, + "frame": 49, + "type": "O" + }, + { + "at": 467.0918, + "frame": 49, + "type": "C" + }, + { + "at": 467.0918, + "frame": 50, + "type": "O" + }, + { + "at": 467.131, + "frame": 50, + "type": "C" + }, + { + "at": 467.131, + "frame": 51, + "type": "O" + }, + { + "at": 467.203, + "frame": 51, + "type": "C" + }, + { + "at": 467.203, + "frame": 52, + "type": "O" + }, + { + "at": 467.2245, + "frame": 52, + "type": "C" + }, + { + "at": 467.2245, + "frame": 53, + "type": "O" + }, + { + "at": 468.7961, + "frame": 53, + "type": "C" + }, + { + "at": 468.7961, + "frame": 54, + "type": "O" + }, + { + "at": 471.643, + "frame": 54, + "type": "C" + }, + { + "at": 471.643, + "frame": 55, + "type": "O" + }, + { + "at": 471.7349, + "frame": 55, + "type": "C" + }, + { + "at": 471.7349, + "frame": 56, + "type": "O" + }, + { + "at": 471.7719, + "frame": 56, + "type": "C" + }, + { + "at": 471.7719, + "frame": 57, + "type": "O" + }, + { + "at": 480.0432, + "frame": 57, + "type": "C" + }, + { + "at": 480.0432, + "frame": 58, + "type": "O" + }, + { + "at": 480.1064, + "frame": 58, + "type": "C" + }, + { + "at": 480.1064, + "frame": 59, + "type": "O" + }, + { + "at": 482.3118, + "frame": 59, + "type": "C" + }, + { + "at": 482.3118, + "frame": 60, + "type": "O" + }, + { + "at": 482.3568, + "frame": 60, + "type": "C" + }, + { + "at": 482.3568, + "frame": 61, + "type": "O" + }, + { + "at": 482.3818, + "frame": 61, + "type": "C" + }, + { + "at": 482.3818, + "frame": 62, + "type": "O" + }, + { + "at": 483.5192, + "frame": 62, + "type": "C" + }, + { + "at": 483.5192, + "frame": 62, + "type": "O" + }, + { + "at": 483.585, + "frame": 62, + "type": "C" + }, + { + "at": 483.585, + "frame": 62, + "type": "O" + }, + { + "at": 483.6033, + "frame": 62, + "type": "C" + }, + { + "at": 483.6033, + "frame": 62, + "type": "O" + }, + { + "at": 483.6196, + "frame": 62, + "type": "C" + }, + { + "at": 483.6196, + "frame": 62, + "type": "O" + }, + { + "at": 483.6398, + "frame": 62, + "type": "C" + }, + { + "at": 483.6398, + "frame": 62, + "type": "O" + }, + { + "at": 483.6562, + "frame": 62, + "type": "C" + }, + { + "at": 483.6562, + "frame": 62, + "type": "O" + }, + { + "at": 483.672, + "frame": 62, + "type": "C" + }, + { + "at": 483.672, + "frame": 63, + "type": "O" + }, + { + "at": 483.6872, + "frame": 63, + "type": "C" + }, + { + "at": 483.6872, + "frame": 62, + "type": "O" + }, + { + "at": 483.7053, + "frame": 62, + "type": "C" + }, + { + "at": 483.7053, + "frame": 62, + "type": "O" + }, + { + "at": 483.7218, + "frame": 62, + "type": "C" + }, + { + "at": 483.7218, + "frame": 62, + "type": "O" + }, + { + "at": 483.7376, + "frame": 62, + "type": "C" + }, + { + "at": 483.7376, + "frame": 62, + "type": "O" + }, + { + "at": 483.7534, + "frame": 62, + "type": "C" + }, + { + "at": 483.7534, + "frame": 62, + "type": "O" + }, + { + "at": 483.7684, + "frame": 62, + "type": "C" + }, + { + "at": 483.7684, + "frame": 62, + "type": "O" + }, + { + "at": 483.7853, + "frame": 62, + "type": "C" + }, + { + "at": 483.7853, + "frame": 62, + "type": "O" + }, + { + "at": 483.9601, + "frame": 62, + "type": "C" + }, + { + "at": 483.9601, + "frame": 64, + "type": "O" + }, + { + "at": 484.1025, + "frame": 64, + "type": "C" + }, + { + "at": 484.1025, + "frame": 65, + "type": "O" + }, + { + "at": 487.5269, + "frame": 65, + "type": "C" + }, + { + "at": 487.5269, + "frame": 64, + "type": "O" + }, + { + "at": 487.5732, + "frame": 64, + "type": "C" + }, + { + "at": 487.5732, + "frame": 66, + "type": "O" + }, + { + "at": 487.6019, + "frame": 66, + "type": "C" + }, + { + "at": 487.6019, + "frame": 67, + "type": "O" + }, + { + "at": 487.6371, + "frame": 67, + "type": "C" + }, + { + "at": 487.6371, + "frame": 68, + "type": "O" + }, + { + "at": 487.897, + "frame": 68, + "type": "C" + }, + { + "at": 487.897, + "frame": 67, + "type": "O" + }, + { + "at": 487.922, + "frame": 67, + "type": "C" + }, + { + "at": 487.922, + "frame": 68, + "type": "O" + }, + { + "at": 488.0877, + "frame": 68, + "type": "C" + }, + { + "at": 488.0877, + "frame": 67, + "type": "O" + }, + { + "at": 488.1068, + "frame": 67, + "type": "C" + }, + { + "at": 488.1068, + "frame": 68, + "type": "O" + }, + { + "at": 488.2523, + "frame": 68, + "type": "C" + }, + { + "at": 488.2523, + "frame": 67, + "type": "O" + }, + { + "at": 488.2705, + "frame": 67, + "type": "C" + }, + { + "at": 488.2705, + "frame": 68, + "type": "O" + }, + { + "at": 488.4142, + "frame": 68, + "type": "C" + }, + { + "at": 488.4142, + "frame": 67, + "type": "O" + }, + { + "at": 488.4306, + "frame": 67, + "type": "C" + }, + { + "at": 488.4306, + "frame": 68, + "type": "O" + }, + { + "at": 488.5704, + "frame": 68, + "type": "C" + }, + { + "at": 488.5704, + "frame": 67, + "type": "O" + }, + { + "at": 488.5883, + "frame": 67, + "type": "C" + }, + { + "at": 488.5883, + "frame": 68, + "type": "O" + }, + { + "at": 488.725, + "frame": 68, + "type": "C" + }, + { + "at": 488.725, + "frame": 67, + "type": "O" + }, + { + "at": 488.7418, + "frame": 67, + "type": "C" + }, + { + "at": 488.7418, + "frame": 68, + "type": "O" + }, + { + "at": 488.8816, + "frame": 68, + "type": "C" + }, + { + "at": 488.8816, + "frame": 67, + "type": "O" + }, + { + "at": 488.8984, + "frame": 67, + "type": "C" + }, + { + "at": 488.8984, + "frame": 68, + "type": "O" + }, + { + "at": 489.0364, + "frame": 68, + "type": "C" + }, + { + "at": 489.0364, + "frame": 67, + "type": "O" + }, + { + "at": 489.0534, + "frame": 67, + "type": "C" + }, + { + "at": 489.0534, + "frame": 68, + "type": "O" + }, + { + "at": 489.1895, + "frame": 68, + "type": "C" + }, + { + "at": 489.1895, + "frame": 67, + "type": "O" + }, + { + "at": 489.2056, + "frame": 67, + "type": "C" + }, + { + "at": 489.2056, + "frame": 68, + "type": "O" + }, + { + "at": 489.3412, + "frame": 68, + "type": "C" + }, + { + "at": 489.3412, + "frame": 67, + "type": "O" + }, + { + "at": 489.3574, + "frame": 67, + "type": "C" + }, + { + "at": 489.3574, + "frame": 68, + "type": "O" + }, + { + "at": 489.4881, + "frame": 68, + "type": "C" + }, + { + "at": 489.4881, + "frame": 67, + "type": "O" + }, + { + "at": 489.5047, + "frame": 67, + "type": "C" + }, + { + "at": 489.5047, + "frame": 68, + "type": "O" + }, + { + "at": 489.6375, + "frame": 68, + "type": "C" + }, + { + "at": 489.6375, + "frame": 67, + "type": "O" + }, + { + "at": 489.6539, + "frame": 67, + "type": "C" + }, + { + "at": 489.6539, + "frame": 68, + "type": "O" + }, + { + "at": 489.786, + "frame": 68, + "type": "C" + }, + { + "at": 489.786, + "frame": 67, + "type": "O" + }, + { + "at": 489.8026, + "frame": 67, + "type": "C" + }, + { + "at": 489.8026, + "frame": 68, + "type": "O" + }, + { + "at": 489.9319, + "frame": 68, + "type": "C" + }, + { + "at": 489.9319, + "frame": 67, + "type": "O" + }, + { + "at": 489.9482, + "frame": 67, + "type": "C" + }, + { + "at": 489.9482, + "frame": 68, + "type": "O" + }, + { + "at": 490.0797, + "frame": 68, + "type": "C" + }, + { + "at": 490.0797, + "frame": 67, + "type": "O" + }, + { + "at": 490.0996, + "frame": 67, + "type": "C" + }, + { + "at": 490.0996, + "frame": 69, + "type": "O" + }, + { + "at": 490.1213, + "frame": 69, + "type": "C" + }, + { + "at": 490.1213, + "frame": 70, + "type": "O" + }, + { + "at": 490.1352, + "frame": 70, + "type": "C" + }, + { + "at": 490.1352, + "frame": 71, + "type": "O" + }, + { + "at": 497.7244, + "frame": 71, + "type": "C" + }, + { + "at": 497.7244, + "frame": 72, + "type": "O" + }, + { + "at": 499.8572, + "frame": 72, + "type": "C" + }, + { + "at": 499.8572, + "frame": 73, + "type": "O" + }, + { + "at": 503.2636, + "frame": 73, + "type": "C" + }, + { + "at": 503.2636, + "frame": 74, + "type": "O" + }, + { + "at": 503.3122, + "frame": 74, + "type": "C" + }, + { + "at": 503.3122, + "frame": 75, + "type": "O" + }, + { + "at": 506.9546, + "frame": 75, + "type": "C" + }, + { + "at": 506.9546, + "frame": 76, + "type": "O" + }, + { + "at": 506.9853, + "frame": 76, + "type": "C" + }, + { + "at": 506.9853, + "frame": 77, + "type": "O" + }, + { + "at": 507.0251, + "frame": 77, + "type": "C" + }, + { + "at": 507.0251, + "frame": 78, + "type": "O" + }, + { + "at": 511.0114, + "frame": 78, + "type": "C" + }, + { + "at": 511.0114, + "frame": 79, + "type": "O" + }, + { + "at": 512.3373, + "frame": 80, + "type": "O" + }, + { + "at": 512.352, + "frame": 80, + "type": "C" + }, + { + "at": 512.352, + "frame": 80, + "type": "O" + }, + { + "at": 512.9054, + "frame": 80, + "type": "C" + }, + { + "at": 512.9054, + "frame": 80, + "type": "O" + }, + { + "at": 512.988, + "frame": 80, + "type": "C" + }, + { + "at": 512.988, + "frame": 81, + "type": "O" + }, + { + "at": 514.5687, + "frame": 81, + "type": "C" + }, + { + "at": 514.5687, + "frame": 79, + "type": "C" + }, + { + "at": 514.5687, + "frame": 82, + "type": "O" + }, + { + "at": 514.6041, + "frame": 82, + "type": "C" + }, + { + "at": 514.6041, + "frame": 83, + "type": "O" + }, + { + "at": 515.6394, + "frame": 83, + "type": "C" + }, + { + "at": 515.6394, + "frame": 84, + "type": "O" + }, + { + "at": 515.667, + "frame": 84, + "type": "C" + }, + { + "at": 515.667, + "frame": 67, + "type": "O" + }, + { + "at": 515.6854, + "frame": 67, + "type": "C" + }, + { + "at": 515.6854, + "frame": 85, + "type": "O" + }, + { + "at": 515.722, + "frame": 85, + "type": "C" + }, + { + "at": 515.722, + "frame": 86, + "type": "O" + }, + { + "at": 519.1567, + "frame": 86, + "type": "C" + }, + { + "at": 519.1567, + "frame": 87, + "type": "O" + }, + { + "at": 519.1946, + "frame": 87, + "type": "C" + }, + { + "at": 519.1946, + "frame": 88, + "type": "O" + }, + { + "at": 519.2154, + "frame": 88, + "type": "C" + }, + { + "at": 519.2154, + "frame": 89, + "type": "O" + }, + { + "at": 520.4132, + "frame": 89, + "type": "C" + }, + { + "at": 520.4132, + "frame": 66, + "type": "O" + }, + { + "at": 520.4473, + "frame": 66, + "type": "C" + }, + { + "at": 520.4473, + "frame": 64, + "type": "O" + }, + { + "at": 520.4658, + "frame": 64, + "type": "C" + }, + { + "at": 520.4658, + "frame": 90, + "type": "O" + }, + { + "at": 520.5006, + "frame": 90, + "type": "C" + }, + { + "at": 520.5006, + "frame": 91, + "type": "O" + }, + { + "at": 520.5735, + "frame": 91, + "type": "C" + }, + { + "at": 520.5735, + "frame": 92, + "type": "O" + }, + { + "at": 521.6437, + "frame": 92, + "type": "C" + }, + { + "at": 521.6437, + "frame": 93, + "type": "O" + }, + { + "at": 521.6714, + "frame": 93, + "type": "C" + }, + { + "at": 521.6714, + "frame": 94, + "type": "O" + }, + { + "at": 528.3577, + "frame": 95, + "type": "O" + }, + { + "at": 528.3765, + "frame": 95, + "type": "C" + }, + { + "at": 528.3765, + "frame": 95, + "type": "O" + }, + { + "at": 536.0587, + "frame": 95, + "type": "C" + }, + { + "at": 536.0587, + "frame": 95, + "type": "O" + }, + { + "at": 537.3766, + "frame": 95, + "type": "C" + }, + { + "at": 537.3766, + "frame": 95, + "type": "O" + }, + { + "at": 537.4149, + "frame": 95, + "type": "C" + }, + { + "at": 537.4149, + "frame": 95, + "type": "O" + }, + { + "at": 537.4857, + "frame": 95, + "type": "C" + }, + { + "at": 537.4857, + "frame": 96, + "type": "O" + }, + { + "at": 537.7202, + "frame": 96, + "type": "C" + }, + { + "at": 537.7202, + "frame": 94, + "type": "C" + }, + { + "at": 537.7202, + "frame": 67, + "type": "O" + }, + { + "at": 537.7443, + "frame": 67, + "type": "C" + }, + { + "at": 537.7443, + "frame": 77, + "type": "O" + }, + { + "at": 537.7718, + "frame": 77, + "type": "C" + }, + { + "at": 537.7718, + "frame": 78, + "type": "O" + }, + { + "at": 538.1509, + "frame": 78, + "type": "C" + }, + { + "at": 538.1509, + "frame": 79, + "type": "O" + }, + { + "at": 539.3028, + "frame": 97, + "type": "O" + }, + { + "at": 539.3368, + "frame": 97, + "type": "C" + }, + { + "at": 539.3368, + "frame": 97, + "type": "O" + }, + { + "at": 541.7798, + "frame": 97, + "type": "C" + }, + { + "at": 541.7798, + "frame": 97, + "type": "O" + }, + { + "at": 543.4385, + "frame": 97, + "type": "C" + }, + { + "at": 543.4385, + "frame": 97, + "type": "O" + }, + { + "at": 543.5236, + "frame": 97, + "type": "C" + }, + { + "at": 543.5236, + "frame": 81, + "type": "O" + }, + { + "at": 543.5405, + "frame": 81, + "type": "C" + }, + { + "at": 543.5405, + "frame": 79, + "type": "C" + }, + { + "at": 543.5405, + "frame": 82, + "type": "O" + }, + { + "at": 543.554, + "frame": 82, + "type": "C" + }, + { + "at": 543.554, + "frame": 83, + "type": "O" + }, + { + "at": 543.5706, + "frame": 83, + "type": "C" + }, + { + "at": 543.5706, + "frame": 84, + "type": "O" + }, + { + "at": 543.5863, + "frame": 84, + "type": "C" + }, + { + "at": 543.5863, + "frame": 67, + "type": "O" + }, + { + "at": 543.6022, + "frame": 67, + "type": "C" + }, + { + "at": 543.6022, + "frame": 85, + "type": "O" + }, + { + "at": 543.634, + "frame": 85, + "type": "C" + }, + { + "at": 543.634, + "frame": 86, + "type": "O" + }, + { + "at": 543.6682, + "frame": 86, + "type": "C" + }, + { + "at": 543.6682, + "frame": 87, + "type": "O" + }, + { + "at": 543.6836, + "frame": 87, + "type": "C" + }, + { + "at": 543.6836, + "frame": 88, + "type": "O" + }, + { + "at": 543.6965, + "frame": 88, + "type": "C" + }, + { + "at": 543.6965, + "frame": 89, + "type": "O" + }, + { + "at": 543.7164, + "frame": 89, + "type": "C" + }, + { + "at": 543.7164, + "frame": 66, + "type": "O" + }, + { + "at": 543.73, + "frame": 66, + "type": "C" + }, + { + "at": 543.73, + "frame": 64, + "type": "O" + }, + { + "at": 543.7435, + "frame": 64, + "type": "C" + }, + { + "at": 543.7435, + "frame": 90, + "type": "O" + }, + { + "at": 543.7582, + "frame": 90, + "type": "C" + }, + { + "at": 543.7582, + "frame": 91, + "type": "O" + }, + { + "at": 543.7854, + "frame": 91, + "type": "C" + }, + { + "at": 543.7854, + "frame": 92, + "type": "O" + }, + { + "at": 543.7988, + "frame": 92, + "type": "C" + }, + { + "at": 543.7988, + "frame": 93, + "type": "O" + }, + { + "at": 543.8114, + "frame": 93, + "type": "C" + }, + { + "at": 543.8114, + "frame": 94, + "type": "O" + }, + { + "at": 544.0733, + "frame": 95, + "type": "O" + }, + { + "at": 544.0872, + "frame": 95, + "type": "C" + }, + { + "at": 544.0872, + "frame": 95, + "type": "O" + }, + { + "at": 544.4195, + "frame": 95, + "type": "C" + }, + { + "at": 544.4195, + "frame": 95, + "type": "O" + }, + { + "at": 544.443, + "frame": 95, + "type": "C" + }, + { + "at": 544.443, + "frame": 95, + "type": "O" + }, + { + "at": 544.4617, + "frame": 95, + "type": "C" + }, + { + "at": 544.4617, + "frame": 95, + "type": "O" + }, + { + "at": 544.5154, + "frame": 95, + "type": "C" + }, + { + "at": 544.5154, + "frame": 96, + "type": "O" + }, + { + "at": 544.7338, + "frame": 96, + "type": "C" + }, + { + "at": 544.7338, + "frame": 94, + "type": "C" + }, + { + "at": 544.7338, + "frame": 67, + "type": "O" + }, + { + "at": 544.7554, + "frame": 67, + "type": "C" + }, + { + "at": 544.7554, + "frame": 77, + "type": "O" + }, + { + "at": 544.7816, + "frame": 77, + "type": "C" + }, + { + "at": 544.7816, + "frame": 78, + "type": "O" + }, + { + "at": 545.109, + "frame": 78, + "type": "C" + }, + { + "at": 545.109, + "frame": 79, + "type": "O" + }, + { + "at": 546.1138, + "frame": 98, + "type": "O" + }, + { + "at": 546.1449, + "frame": 98, + "type": "C" + }, + { + "at": 546.1449, + "frame": 98, + "type": "O" + }, + { + "at": 546.1675, + "frame": 98, + "type": "C" + }, + { + "at": 546.1675, + "frame": 98, + "type": "O" + }, + { + "at": 552.8488, + "frame": 98, + "type": "C" + }, + { + "at": 552.8488, + "frame": 98, + "type": "O" + }, + { + "at": 554.6033, + "frame": 98, + "type": "C" + }, + { + "at": 554.6033, + "frame": 98, + "type": "O" + }, + { + "at": 554.675, + "frame": 98, + "type": "C" + }, + { + "at": 554.675, + "frame": 81, + "type": "O" + }, + { + "at": 554.6916, + "frame": 81, + "type": "C" + }, + { + "at": 554.6916, + "frame": 79, + "type": "C" + }, + { + "at": 554.6916, + "frame": 82, + "type": "O" + }, + { + "at": 554.7042, + "frame": 82, + "type": "C" + }, + { + "at": 554.7042, + "frame": 83, + "type": "O" + }, + { + "at": 554.7201, + "frame": 83, + "type": "C" + }, + { + "at": 554.7201, + "frame": 84, + "type": "O" + }, + { + "at": 554.7386, + "frame": 84, + "type": "C" + }, + { + "at": 554.7386, + "frame": 67, + "type": "O" + }, + { + "at": 554.7766, + "frame": 67, + "type": "C" + }, + { + "at": 554.7766, + "frame": 85, + "type": "O" + }, + { + "at": 554.8191, + "frame": 85, + "type": "C" + }, + { + "at": 554.8191, + "frame": 86, + "type": "O" + }, + { + "at": 554.8742, + "frame": 86, + "type": "C" + }, + { + "at": 554.8742, + "frame": 87, + "type": "O" + }, + { + "at": 554.9103, + "frame": 87, + "type": "C" + }, + { + "at": 554.9103, + "frame": 99, + "type": "O" + }, + { + "at": 554.9369, + "frame": 99, + "type": "C" + }, + { + "at": 554.9369, + "frame": 88, + "type": "O" + }, + { + "at": 554.9667, + "frame": 88, + "type": "C" + }, + { + "at": 554.9667, + "frame": 89, + "type": "O" + }, + { + "at": 555.0067, + "frame": 89, + "type": "C" + }, + { + "at": 555.0067, + "frame": 66, + "type": "O" + }, + { + "at": 555.0295, + "frame": 66, + "type": "C" + }, + { + "at": 555.0295, + "frame": 64, + "type": "O" + }, + { + "at": 555.05, + "frame": 64, + "type": "C" + }, + { + "at": 555.05, + "frame": 90, + "type": "O" + }, + { + "at": 555.1054, + "frame": 90, + "type": "C" + }, + { + "at": 555.1054, + "frame": 91, + "type": "O" + }, + { + "at": 555.1455, + "frame": 91, + "type": "C" + }, + { + "at": 555.1455, + "frame": 92, + "type": "O" + }, + { + "at": 555.16, + "frame": 92, + "type": "C" + }, + { + "at": 555.16, + "frame": 93, + "type": "O" + }, + { + "at": 555.173, + "frame": 93, + "type": "C" + }, + { + "at": 555.173, + "frame": 94, + "type": "O" + }, + { + "at": 555.479, + "frame": 95, + "type": "O" + }, + { + "at": 555.4939, + "frame": 95, + "type": "C" + }, + { + "at": 555.4939, + "frame": 95, + "type": "O" + }, + { + "at": 555.5718, + "frame": 95, + "type": "C" + }, + { + "at": 555.5718, + "frame": 95, + "type": "O" + }, + { + "at": 555.5869, + "frame": 95, + "type": "C" + }, + { + "at": 555.5869, + "frame": 95, + "type": "O" + }, + { + "at": 555.6039, + "frame": 95, + "type": "C" + }, + { + "at": 555.6039, + "frame": 95, + "type": "O" + }, + { + "at": 555.6507, + "frame": 95, + "type": "C" + }, + { + "at": 555.6507, + "frame": 96, + "type": "O" + }, + { + "at": 555.8561, + "frame": 96, + "type": "C" + }, + { + "at": 555.8561, + "frame": 94, + "type": "C" + }, + { + "at": 555.8561, + "frame": 67, + "type": "O" + }, + { + "at": 555.8784, + "frame": 67, + "type": "C" + }, + { + "at": 555.8784, + "frame": 77, + "type": "O" + }, + { + "at": 555.9017, + "frame": 77, + "type": "C" + }, + { + "at": 555.9017, + "frame": 78, + "type": "O" + }, + { + "at": 556.2311, + "frame": 78, + "type": "C" + }, + { + "at": 556.2311, + "frame": 79, + "type": "O" + }, + { + "at": 557.2413, + "frame": 100, + "type": "O" + }, + { + "at": 557.258, + "frame": 100, + "type": "C" + }, + { + "at": 557.258, + "frame": 100, + "type": "O" + }, + { + "at": 576.2354, + "frame": 100, + "type": "C" + }, + { + "at": 576.2354, + "frame": 100, + "type": "O" + }, + { + "at": 579.8996, + "frame": 100, + "type": "C" + }, + { + "at": 579.8996, + "frame": 100, + "type": "O" + }, + { + "at": 579.9854, + "frame": 100, + "type": "C" + }, + { + "at": 579.9854, + "frame": 81, + "type": "O" + }, + { + "at": 580.0039, + "frame": 81, + "type": "C" + }, + { + "at": 580.0039, + "frame": 79, + "type": "C" + }, + { + "at": 580.0039, + "frame": 82, + "type": "O" + }, + { + "at": 580.0161, + "frame": 82, + "type": "C" + }, + { + "at": 580.0161, + "frame": 83, + "type": "O" + }, + { + "at": 580.0341, + "frame": 83, + "type": "C" + }, + { + "at": 580.0341, + "frame": 84, + "type": "O" + }, + { + "at": 580.0498, + "frame": 84, + "type": "C" + }, + { + "at": 580.0498, + "frame": 67, + "type": "O" + }, + { + "at": 580.0677, + "frame": 67, + "type": "C" + }, + { + "at": 580.0677, + "frame": 85, + "type": "O" + }, + { + "at": 580.103, + "frame": 85, + "type": "C" + }, + { + "at": 580.103, + "frame": 86, + "type": "O" + }, + { + "at": 580.1382, + "frame": 86, + "type": "C" + }, + { + "at": 580.1382, + "frame": 87, + "type": "O" + }, + { + "at": 580.1562, + "frame": 87, + "type": "C" + }, + { + "at": 580.1562, + "frame": 99, + "type": "O" + }, + { + "at": 580.1696, + "frame": 99, + "type": "C" + }, + { + "at": 580.1696, + "frame": 88, + "type": "O" + }, + { + "at": 580.1825, + "frame": 88, + "type": "C" + }, + { + "at": 580.1825, + "frame": 89, + "type": "O" + }, + { + "at": 580.2016, + "frame": 89, + "type": "C" + }, + { + "at": 580.2016, + "frame": 66, + "type": "O" + }, + { + "at": 580.2175, + "frame": 66, + "type": "C" + }, + { + "at": 580.2175, + "frame": 64, + "type": "O" + }, + { + "at": 580.2288, + "frame": 64, + "type": "C" + }, + { + "at": 580.2288, + "frame": 90, + "type": "O" + }, + { + "at": 580.2431, + "frame": 90, + "type": "C" + }, + { + "at": 580.2431, + "frame": 91, + "type": "O" + }, + { + "at": 580.2702, + "frame": 91, + "type": "C" + }, + { + "at": 580.2702, + "frame": 92, + "type": "O" + }, + { + "at": 580.2834, + "frame": 92, + "type": "C" + }, + { + "at": 580.2834, + "frame": 93, + "type": "O" + }, + { + "at": 580.2961, + "frame": 93, + "type": "C" + }, + { + "at": 580.2961, + "frame": 94, + "type": "O" + }, + { + "at": 580.5969, + "frame": 95, + "type": "O" + }, + { + "at": 580.6112, + "frame": 95, + "type": "C" + }, + { + "at": 580.6112, + "frame": 95, + "type": "O" + }, + { + "at": 580.6974, + "frame": 95, + "type": "C" + }, + { + "at": 580.6974, + "frame": 95, + "type": "O" + }, + { + "at": 580.7125, + "frame": 95, + "type": "C" + }, + { + "at": 580.7125, + "frame": 95, + "type": "O" + }, + { + "at": 580.799, + "frame": 95, + "type": "C" + }, + { + "at": 580.799, + "frame": 95, + "type": "O" + }, + { + "at": 580.8479, + "frame": 95, + "type": "C" + }, + { + "at": 580.8479, + "frame": 96, + "type": "O" + }, + { + "at": 581.0634, + "frame": 96, + "type": "C" + }, + { + "at": 581.0634, + "frame": 94, + "type": "C" + }, + { + "at": 581.0634, + "frame": 67, + "type": "O" + }, + { + "at": 581.0872, + "frame": 67, + "type": "C" + }, + { + "at": 581.0872, + "frame": 77, + "type": "O" + }, + { + "at": 581.1112, + "frame": 77, + "type": "C" + }, + { + "at": 581.1112, + "frame": 78, + "type": "O" + }, + { + "at": 581.4592, + "frame": 78, + "type": "C" + }, + { + "at": 581.4592, + "frame": 79, + "type": "O" + }, + { + "at": 582.7844, + "frame": 101, + "type": "O" + }, + { + "at": 582.7978, + "frame": 101, + "type": "C" + }, + { + "at": 582.7978, + "frame": 101, + "type": "O" + }, + { + "at": 582.8208, + "frame": 101, + "type": "C" + }, + { + "at": 582.8208, + "frame": 101, + "type": "O" + }, + { + "at": 587.2929, + "frame": 101, + "type": "C" + }, + { + "at": 587.2929, + "frame": 101, + "type": "O" + }, + { + "at": 587.3771, + "frame": 101, + "type": "C" + }, + { + "at": 587.3771, + "frame": 81, + "type": "O" + }, + { + "at": 587.3934, + "frame": 81, + "type": "C" + }, + { + "at": 587.3934, + "frame": 79, + "type": "C" + }, + { + "at": 587.3934, + "frame": 82, + "type": "O" + }, + { + "at": 587.4052, + "frame": 82, + "type": "C" + }, + { + "at": 587.4052, + "frame": 83, + "type": "O" + }, + { + "at": 587.4218, + "frame": 83, + "type": "C" + }, + { + "at": 587.4218, + "frame": 84, + "type": "O" + }, + { + "at": 587.436, + "frame": 84, + "type": "C" + }, + { + "at": 587.436, + "frame": 67, + "type": "O" + }, + { + "at": 587.4511, + "frame": 67, + "type": "C" + }, + { + "at": 587.4511, + "frame": 85, + "type": "O" + }, + { + "at": 587.4733, + "frame": 85, + "type": "C" + }, + { + "at": 587.4733, + "frame": 86, + "type": "O" + }, + { + "at": 587.5176, + "frame": 86, + "type": "C" + }, + { + "at": 587.5176, + "frame": 87, + "type": "O" + }, + { + "at": 587.5357, + "frame": 87, + "type": "C" + }, + { + "at": 587.5357, + "frame": 99, + "type": "O" + }, + { + "at": 587.5489, + "frame": 99, + "type": "C" + }, + { + "at": 587.5489, + "frame": 88, + "type": "O" + }, + { + "at": 587.562, + "frame": 88, + "type": "C" + }, + { + "at": 587.562, + "frame": 89, + "type": "O" + }, + { + "at": 587.5815, + "frame": 89, + "type": "C" + }, + { + "at": 587.5815, + "frame": 66, + "type": "O" + }, + { + "at": 587.5943, + "frame": 66, + "type": "C" + }, + { + "at": 587.5943, + "frame": 64, + "type": "O" + }, + { + "at": 587.6078, + "frame": 64, + "type": "C" + }, + { + "at": 587.6078, + "frame": 90, + "type": "O" + }, + { + "at": 587.6232, + "frame": 90, + "type": "C" + }, + { + "at": 587.6232, + "frame": 91, + "type": "O" + }, + { + "at": 587.6503, + "frame": 91, + "type": "C" + }, + { + "at": 587.6503, + "frame": 92, + "type": "O" + }, + { + "at": 587.6637, + "frame": 92, + "type": "C" + }, + { + "at": 587.6637, + "frame": 93, + "type": "O" + }, + { + "at": 587.6755, + "frame": 93, + "type": "C" + }, + { + "at": 587.6755, + "frame": 94, + "type": "O" + }, + { + "at": 587.9317, + "frame": 95, + "type": "O" + }, + { + "at": 587.9467, + "frame": 95, + "type": "C" + }, + { + "at": 587.9467, + "frame": 95, + "type": "O" + }, + { + "at": 588.0227, + "frame": 95, + "type": "C" + }, + { + "at": 588.0227, + "frame": 95, + "type": "O" + }, + { + "at": 588.0389, + "frame": 95, + "type": "C" + }, + { + "at": 588.0389, + "frame": 95, + "type": "O" + }, + { + "at": 588.0558, + "frame": 95, + "type": "C" + }, + { + "at": 588.0558, + "frame": 95, + "type": "O" + }, + { + "at": 588.0997, + "frame": 95, + "type": "C" + }, + { + "at": 588.0997, + "frame": 96, + "type": "O" + }, + { + "at": 588.2979, + "frame": 96, + "type": "C" + }, + { + "at": 588.2979, + "frame": 94, + "type": "C" + }, + { + "at": 588.2979, + "frame": 67, + "type": "O" + }, + { + "at": 588.3217, + "frame": 67, + "type": "C" + }, + { + "at": 588.3217, + "frame": 77, + "type": "O" + }, + { + "at": 588.345, + "frame": 77, + "type": "C" + }, + { + "at": 588.345, + "frame": 78, + "type": "O" + }, + { + "at": 588.6708, + "frame": 78, + "type": "C" + }, + { + "at": 588.6708, + "frame": 79, + "type": "O" + }, + { + "at": 592.5505, + "frame": 102, + "type": "O" + }, + { + "at": 592.565, + "frame": 102, + "type": "C" + }, + { + "at": 592.565, + "frame": 102, + "type": "O" + }, + { + "at": 622.6879, + "frame": 102, + "type": "C" + }, + { + "at": 622.6879, + "frame": 102, + "type": "O" + }, + { + "at": 622.7297, + "frame": 102, + "type": "C" + }, + { + "at": 622.7297, + "frame": 102, + "type": "O" + }, + { + "at": 629.1241, + "frame": 103, + "type": "O" + }, + { + "at": 629.1416, + "frame": 103, + "type": "C" + }, + { + "at": 629.1416, + "frame": 104, + "type": "O" + }, + { + "at": 632.549, + "frame": 104, + "type": "C" + }, + { + "at": 632.549, + "frame": 105, + "type": "O" + }, + { + "at": 632.618, + "frame": 105, + "type": "C" + }, + { + "at": 632.618, + "frame": 102, + "type": "O" + }, + { + "at": 634.1347, + "frame": 103, + "type": "O" + }, + { + "at": 634.1499, + "frame": 103, + "type": "C" + }, + { + "at": 634.1499, + "frame": 102, + "type": "C" + }, + { + "at": 634.1499, + "frame": 106, + "type": "O" + }, + { + "at": 635.3631, + "frame": 106, + "type": "C" + }, + { + "at": 635.3631, + "frame": 105, + "type": "O" + }, + { + "at": 635.4202, + "frame": 105, + "type": "C" + }, + { + "at": 635.4202, + "frame": 102, + "type": "O" + }, + { + "at": 635.4411, + "frame": 102, + "type": "C" + }, + { + "at": 635.4411, + "frame": 102, + "type": "C" + }, + { + "at": 635.4411, + "frame": 102, + "type": "O" + }, + { + "at": 635.4892, + "frame": 102, + "type": "C" + }, + { + "at": 635.4892, + "frame": 102, + "type": "O" + }, + { + "at": 636.8803, + "frame": 103, + "type": "O" + }, + { + "at": 636.895, + "frame": 103, + "type": "C" + }, + { + "at": 636.895, + "frame": 107, + "type": "O" + }, + { + "at": 638.6683, + "frame": 107, + "type": "C" + }, + { + "at": 638.6683, + "frame": 105, + "type": "O" + }, + { + "at": 638.7022, + "frame": 105, + "type": "C" + }, + { + "at": 638.7022, + "frame": 102, + "type": "O" + }, + { + "at": 640.0798, + "frame": 103, + "type": "O" + }, + { + "at": 640.0966, + "frame": 103, + "type": "C" + }, + { + "at": 640.0966, + "frame": 102, + "type": "C" + }, + { + "at": 640.0966, + "frame": 108, + "type": "O" + }, + { + "at": 640.1261, + "frame": 108, + "type": "C" + }, + { + "at": 640.1261, + "frame": 105, + "type": "O" + }, + { + "at": 640.1502, + "frame": 105, + "type": "C" + }, + { + "at": 640.1502, + "frame": 102, + "type": "O" + }, + { + "at": 640.1665, + "frame": 102, + "type": "C" + }, + { + "at": 640.1665, + "frame": 102, + "type": "C" + }, + { + "at": 640.1665, + "frame": 102, + "type": "O" + }, + { + "at": 640.1962, + "frame": 102, + "type": "C" + }, + { + "at": 640.1962, + "frame": 102, + "type": "O" + }, + { + "at": 641.5445, + "frame": 103, + "type": "O" + }, + { + "at": 641.5669, + "frame": 103, + "type": "C" + }, + { + "at": 641.5669, + "frame": 109, + "type": "O" + }, + { + "at": 643.2564, + "frame": 109, + "type": "C" + }, + { + "at": 643.2564, + "frame": 105, + "type": "O" + }, + { + "at": 643.2909, + "frame": 105, + "type": "C" + }, + { + "at": 643.2909, + "frame": 102, + "type": "O" + }, + { + "at": 644.6658, + "frame": 103, + "type": "O" + }, + { + "at": 644.6796, + "frame": 103, + "type": "C" + }, + { + "at": 644.6796, + "frame": 102, + "type": "C" + }, + { + "at": 644.6796, + "frame": 110, + "type": "O" + }, + { + "at": 644.7087, + "frame": 110, + "type": "C" + }, + { + "at": 644.7087, + "frame": 105, + "type": "O" + }, + { + "at": 644.7327, + "frame": 105, + "type": "C" + }, + { + "at": 644.7327, + "frame": 102, + "type": "O" + }, + { + "at": 644.7488, + "frame": 102, + "type": "C" + }, + { + "at": 644.7488, + "frame": 102, + "type": "C" + }, + { + "at": 644.7488, + "frame": 102, + "type": "O" + }, + { + "at": 644.7823, + "frame": 102, + "type": "C" + }, + { + "at": 644.7823, + "frame": 102, + "type": "O" + }, + { + "at": 644.8927, + "frame": 102, + "type": "C" + }, + { + "at": 644.8927, + "frame": 102, + "type": "O" + }, + { + "at": 644.9551, + "frame": 102, + "type": "C" + }, + { + "at": 644.9551, + "frame": 81, + "type": "O" + }, + { + "at": 644.9723, + "frame": 81, + "type": "C" + }, + { + "at": 644.9723, + "frame": 79, + "type": "C" + }, + { + "at": 644.9723, + "frame": 82, + "type": "O" + }, + { + "at": 644.9865, + "frame": 82, + "type": "C" + }, + { + "at": 644.9865, + "frame": 83, + "type": "O" + }, + { + "at": 645.0073, + "frame": 83, + "type": "C" + }, + { + "at": 645.0073, + "frame": 84, + "type": "O" + }, + { + "at": 645.0222, + "frame": 84, + "type": "C" + }, + { + "at": 645.0222, + "frame": 67, + "type": "O" + }, + { + "at": 645.0398, + "frame": 67, + "type": "C" + }, + { + "at": 645.0398, + "frame": 85, + "type": "O" + }, + { + "at": 645.0681, + "frame": 85, + "type": "C" + }, + { + "at": 645.0681, + "frame": 86, + "type": "O" + }, + { + "at": 645.1019, + "frame": 86, + "type": "C" + }, + { + "at": 645.1019, + "frame": 87, + "type": "O" + }, + { + "at": 645.1227, + "frame": 87, + "type": "C" + }, + { + "at": 645.1227, + "frame": 99, + "type": "O" + }, + { + "at": 645.1386, + "frame": 99, + "type": "C" + }, + { + "at": 645.1386, + "frame": 88, + "type": "O" + }, + { + "at": 645.1523, + "frame": 88, + "type": "C" + }, + { + "at": 645.1523, + "frame": 89, + "type": "O" + }, + { + "at": 645.1727, + "frame": 89, + "type": "C" + }, + { + "at": 645.1727, + "frame": 66, + "type": "O" + }, + { + "at": 645.1881, + "frame": 66, + "type": "C" + }, + { + "at": 645.1881, + "frame": 64, + "type": "O" + }, + { + "at": 645.2088, + "frame": 64, + "type": "C" + }, + { + "at": 645.2088, + "frame": 90, + "type": "O" + }, + { + "at": 645.2248, + "frame": 90, + "type": "C" + }, + { + "at": 645.2248, + "frame": 91, + "type": "O" + }, + { + "at": 645.2561, + "frame": 91, + "type": "C" + }, + { + "at": 645.2561, + "frame": 92, + "type": "O" + }, + { + "at": 645.2712, + "frame": 92, + "type": "C" + }, + { + "at": 645.2712, + "frame": 93, + "type": "O" + }, + { + "at": 645.2851, + "frame": 93, + "type": "C" + }, + { + "at": 645.2851, + "frame": 94, + "type": "O" + }, + { + "at": 645.6163, + "frame": 95, + "type": "O" + }, + { + "at": 645.6312, + "frame": 95, + "type": "C" + }, + { + "at": 645.6312, + "frame": 95, + "type": "O" + }, + { + "at": 645.7261, + "frame": 95, + "type": "C" + }, + { + "at": 645.7261, + "frame": 95, + "type": "O" + }, + { + "at": 645.7418, + "frame": 95, + "type": "C" + }, + { + "at": 645.7418, + "frame": 95, + "type": "O" + }, + { + "at": 645.7603, + "frame": 95, + "type": "C" + }, + { + "at": 645.7603, + "frame": 95, + "type": "O" + }, + { + "at": 645.8086, + "frame": 95, + "type": "C" + }, + { + "at": 645.8086, + "frame": 96, + "type": "O" + }, + { + "at": 646.0386, + "frame": 96, + "type": "C" + }, + { + "at": 646.0386, + "frame": 94, + "type": "C" + }, + { + "at": 646.0386, + "frame": 67, + "type": "O" + }, + { + "at": 646.0618, + "frame": 67, + "type": "C" + }, + { + "at": 646.0618, + "frame": 77, + "type": "O" + }, + { + "at": 646.0861, + "frame": 77, + "type": "C" + }, + { + "at": 646.0861, + "frame": 78, + "type": "O" + }, + { + "at": 646.4694, + "frame": 78, + "type": "C" + }, + { + "at": 646.4694, + "frame": 79, + "type": "O" + }, + { + "at": 649.7637, + "frame": 111, + "type": "O" + }, + { + "at": 649.784, + "frame": 111, + "type": "C" + }, + { + "at": 649.784, + "frame": 111, + "type": "O" + }, + { + "at": 656.4459, + "frame": 111, + "type": "C" + }, + { + "at": 656.4459, + "frame": 111, + "type": "O" + }, + { + "at": 656.4856, + "frame": 111, + "type": "C" + }, + { + "at": 656.4856, + "frame": 111, + "type": "O" + }, + { + "at": 684.3505, + "frame": 111, + "type": "C" + }, + { + "at": 684.3505, + "frame": 111, + "type": "O" + }, + { + "at": 684.3843, + "frame": 111, + "type": "C" + }, + { + "at": 684.3843, + "frame": 111, + "type": "O" + }, + { + "at": 684.408, + "frame": 111, + "type": "C" + }, + { + "at": 684.408, + "frame": 111, + "type": "O" + }, + { + "at": 690.7091, + "frame": 111, + "type": "C" + }, + { + "at": 690.7091, + "frame": 111, + "type": "O" + }, + { + "at": 692.2587, + "frame": 111, + "type": "C" + }, + { + "at": 692.2587, + "frame": 111, + "type": "O" + }, + { + "at": 692.3252, + "frame": 111, + "type": "C" + }, + { + "at": 692.3252, + "frame": 111, + "type": "O" + }, + { + "at": 692.3634, + "frame": 111, + "type": "C" + }, + { + "at": 692.3634, + "frame": 111, + "type": "O" + }, + { + "at": 692.4372, + "frame": 111, + "type": "C" + }, + { + "at": 692.4372, + "frame": 81, + "type": "O" + }, + { + "at": 692.4542, + "frame": 81, + "type": "C" + }, + { + "at": 692.4542, + "frame": 79, + "type": "C" + }, + { + "at": 692.4542, + "frame": 82, + "type": "O" + }, + { + "at": 692.4677, + "frame": 82, + "type": "C" + }, + { + "at": 692.4677, + "frame": 83, + "type": "O" + }, + { + "at": 692.485, + "frame": 83, + "type": "C" + }, + { + "at": 692.485, + "frame": 84, + "type": "O" + }, + { + "at": 692.5002, + "frame": 84, + "type": "C" + }, + { + "at": 692.5002, + "frame": 67, + "type": "O" + }, + { + "at": 692.5199, + "frame": 67, + "type": "C" + }, + { + "at": 692.5199, + "frame": 85, + "type": "O" + }, + { + "at": 692.549, + "frame": 85, + "type": "C" + }, + { + "at": 692.549, + "frame": 86, + "type": "O" + }, + { + "at": 692.5817, + "frame": 86, + "type": "C" + }, + { + "at": 692.5817, + "frame": 87, + "type": "O" + }, + { + "at": 692.6024, + "frame": 87, + "type": "C" + }, + { + "at": 692.6024, + "frame": 99, + "type": "O" + }, + { + "at": 692.6156, + "frame": 99, + "type": "C" + }, + { + "at": 692.6156, + "frame": 88, + "type": "O" + }, + { + "at": 692.6306, + "frame": 88, + "type": "C" + }, + { + "at": 692.6306, + "frame": 89, + "type": "O" + }, + { + "at": 692.6509, + "frame": 89, + "type": "C" + }, + { + "at": 692.6509, + "frame": 66, + "type": "O" + }, + { + "at": 692.666, + "frame": 66, + "type": "C" + }, + { + "at": 692.666, + "frame": 64, + "type": "O" + }, + { + "at": 692.6788, + "frame": 64, + "type": "C" + }, + { + "at": 692.6788, + "frame": 90, + "type": "O" + }, + { + "at": 692.6937, + "frame": 90, + "type": "C" + }, + { + "at": 692.6937, + "frame": 91, + "type": "O" + }, + { + "at": 692.722, + "frame": 91, + "type": "C" + }, + { + "at": 692.722, + "frame": 92, + "type": "O" + }, + { + "at": 692.7387, + "frame": 92, + "type": "C" + }, + { + "at": 692.7387, + "frame": 93, + "type": "O" + }, + { + "at": 692.7532, + "frame": 93, + "type": "C" + }, + { + "at": 692.7532, + "frame": 94, + "type": "O" + }, + { + "at": 693.0962, + "frame": 95, + "type": "O" + }, + { + "at": 693.1122, + "frame": 95, + "type": "C" + }, + { + "at": 693.1122, + "frame": 95, + "type": "O" + }, + { + "at": 693.2093, + "frame": 95, + "type": "C" + }, + { + "at": 693.2093, + "frame": 95, + "type": "O" + }, + { + "at": 693.2323, + "frame": 95, + "type": "C" + }, + { + "at": 693.2323, + "frame": 95, + "type": "O" + }, + { + "at": 693.2502, + "frame": 95, + "type": "C" + }, + { + "at": 693.2502, + "frame": 95, + "type": "O" + }, + { + "at": 693.2975, + "frame": 95, + "type": "C" + }, + { + "at": 693.2975, + "frame": 96, + "type": "O" + }, + { + "at": 693.5272, + "frame": 96, + "type": "C" + }, + { + "at": 693.5272, + "frame": 94, + "type": "C" + }, + { + "at": 693.5272, + "frame": 67, + "type": "O" + }, + { + "at": 693.5498, + "frame": 67, + "type": "C" + }, + { + "at": 693.5498, + "frame": 77, + "type": "O" + }, + { + "at": 693.5739, + "frame": 77, + "type": "C" + }, + { + "at": 693.5739, + "frame": 78, + "type": "O" + }, + { + "at": 693.977, + "frame": 78, + "type": "C" + }, + { + "at": 693.977, + "frame": 79, + "type": "O" + }, + { + "at": 696.897, + "frame": 112, + "type": "O" + }, + { + "at": 696.9145, + "frame": 112, + "type": "C" + }, + { + "at": 696.9145, + "frame": 112, + "type": "O" + }, + { + "at": 708.4759, + "frame": 112, + "type": "C" + }, + { + "at": 708.4759, + "frame": 112, + "type": "O" + }, + { + "at": 708.5008, + "frame": 112, + "type": "C" + }, + { + "at": 708.5008, + "frame": 112, + "type": "O" + }, + { + "at": 735.2872, + "frame": 112, + "type": "C" + }, + { + "at": 735.2872, + "frame": 112, + "type": "O" + }, + { + "at": 737.3826, + "frame": 112, + "type": "C" + }, + { + "at": 737.3826, + "frame": 112, + "type": "O" + }, + { + "at": 751.5638, + "frame": 112, + "type": "C" + }, + { + "at": 751.5638, + "frame": 112, + "type": "O" + }, + { + "at": 752.8646, + "frame": 112, + "type": "C" + }, + { + "at": 752.8646, + "frame": 112, + "type": "O" + }, + { + "at": 752.9719, + "frame": 112, + "type": "C" + }, + { + "at": 752.9719, + "frame": 81, + "type": "O" + }, + { + "at": 752.9907, + "frame": 81, + "type": "C" + }, + { + "at": 752.9907, + "frame": 79, + "type": "C" + }, + { + "at": 752.9907, + "frame": 82, + "type": "O" + }, + { + "at": 753.0049, + "frame": 82, + "type": "C" + }, + { + "at": 753.0049, + "frame": 83, + "type": "O" + }, + { + "at": 753.0263, + "frame": 83, + "type": "C" + }, + { + "at": 753.0263, + "frame": 84, + "type": "O" + }, + { + "at": 753.0446, + "frame": 84, + "type": "C" + }, + { + "at": 753.0446, + "frame": 67, + "type": "O" + }, + { + "at": 753.0631, + "frame": 67, + "type": "C" + }, + { + "at": 753.0631, + "frame": 85, + "type": "O" + }, + { + "at": 753.0972, + "frame": 85, + "type": "C" + }, + { + "at": 753.0972, + "frame": 86, + "type": "O" + }, + { + "at": 753.132, + "frame": 86, + "type": "C" + }, + { + "at": 753.132, + "frame": 87, + "type": "O" + }, + { + "at": 753.1573, + "frame": 87, + "type": "C" + }, + { + "at": 753.1573, + "frame": 99, + "type": "O" + }, + { + "at": 753.1721, + "frame": 99, + "type": "C" + }, + { + "at": 753.1721, + "frame": 88, + "type": "O" + }, + { + "at": 753.1855, + "frame": 88, + "type": "C" + }, + { + "at": 753.1855, + "frame": 89, + "type": "O" + }, + { + "at": 753.2048, + "frame": 89, + "type": "C" + }, + { + "at": 753.2048, + "frame": 66, + "type": "O" + }, + { + "at": 753.2203, + "frame": 66, + "type": "C" + }, + { + "at": 753.2203, + "frame": 64, + "type": "O" + }, + { + "at": 753.2329, + "frame": 64, + "type": "C" + }, + { + "at": 753.2329, + "frame": 90, + "type": "O" + }, + { + "at": 753.2486, + "frame": 90, + "type": "C" + }, + { + "at": 753.2486, + "frame": 91, + "type": "O" + }, + { + "at": 753.2771, + "frame": 91, + "type": "C" + }, + { + "at": 753.2771, + "frame": 92, + "type": "O" + }, + { + "at": 753.2917, + "frame": 92, + "type": "C" + }, + { + "at": 753.2917, + "frame": 93, + "type": "O" + }, + { + "at": 753.3042, + "frame": 93, + "type": "C" + }, + { + "at": 753.3042, + "frame": 94, + "type": "O" + }, + { + "at": 753.7137, + "frame": 95, + "type": "O" + }, + { + "at": 753.7294, + "frame": 95, + "type": "C" + }, + { + "at": 753.7294, + "frame": 95, + "type": "O" + }, + { + "at": 753.8346, + "frame": 95, + "type": "C" + }, + { + "at": 753.8346, + "frame": 95, + "type": "O" + }, + { + "at": 753.852, + "frame": 95, + "type": "C" + }, + { + "at": 753.852, + "frame": 95, + "type": "O" + }, + { + "at": 753.8702, + "frame": 95, + "type": "C" + }, + { + "at": 753.8702, + "frame": 95, + "type": "O" + }, + { + "at": 753.916, + "frame": 95, + "type": "C" + }, + { + "at": 753.916, + "frame": 96, + "type": "O" + }, + { + "at": 754.1405, + "frame": 96, + "type": "C" + }, + { + "at": 754.1405, + "frame": 94, + "type": "C" + }, + { + "at": 754.1405, + "frame": 67, + "type": "O" + }, + { + "at": 754.1629, + "frame": 67, + "type": "C" + }, + { + "at": 754.1629, + "frame": 77, + "type": "O" + }, + { + "at": 754.1894, + "frame": 77, + "type": "C" + }, + { + "at": 754.1894, + "frame": 78, + "type": "O" + }, + { + "at": 754.5755, + "frame": 78, + "type": "C" + }, + { + "at": 754.5755, + "frame": 79, + "type": "O" + }, + { + "at": 755.5804, + "frame": 113, + "type": "O" + }, + { + "at": 755.5971, + "frame": 113, + "type": "C" + }, + { + "at": 755.5971, + "frame": 113, + "type": "O" + }, + { + "at": 756.2053, + "frame": 113, + "type": "C" + }, + { + "at": 756.2053, + "frame": 113, + "type": "O" + }, + { + "at": 776.9098, + "frame": 103, + "type": "O" + }, + { + "at": 776.9354, + "frame": 103, + "type": "C" + }, + { + "at": 776.9354, + "frame": 114, + "type": "O" + }, + { + "at": 783.6119, + "frame": 114, + "type": "C" + }, + { + "at": 783.6119, + "frame": 115, + "type": "O" + }, + { + "at": 786.6172, + "frame": 115, + "type": "C" + }, + { + "at": 786.6172, + "frame": 105, + "type": "O" + }, + { + "at": 788.2232, + "frame": 105, + "type": "C" + }, + { + "at": 788.2232, + "frame": 103, + "type": "O" + }, + { + "at": 788.2379, + "frame": 103, + "type": "C" + }, + { + "at": 788.2379, + "frame": 114, + "type": "O" + }, + { + "at": 792.6706, + "frame": 114, + "type": "C" + }, + { + "at": 792.6706, + "frame": 105, + "type": "O" + }, + { + "at": 793.8881, + "frame": 105, + "type": "C" + }, + { + "at": 793.8881, + "frame": 103, + "type": "O" + }, + { + "at": 793.9022, + "frame": 103, + "type": "C" + }, + { + "at": 793.9022, + "frame": 114, + "type": "O" + }, + { + "at": 793.9572, + "frame": 114, + "type": "C" + }, + { + "at": 793.9572, + "frame": 115, + "type": "O" + }, + { + "at": 793.9822, + "frame": 115, + "type": "C" + }, + { + "at": 793.9822, + "frame": 105, + "type": "O" + }, + { + "at": 795.0998, + "frame": 105, + "type": "C" + }, + { + "at": 795.0998, + "frame": 103, + "type": "O" + }, + { + "at": 795.1118, + "frame": 103, + "type": "C" + }, + { + "at": 795.1118, + "frame": 114, + "type": "O" + }, + { + "at": 795.1693, + "frame": 114, + "type": "C" + }, + { + "at": 795.1693, + "frame": 105, + "type": "O" + }, + { + "at": 796.2262, + "frame": 105, + "type": "C" + }, + { + "at": 796.2262, + "frame": 103, + "type": "O" + }, + { + "at": 796.2382, + "frame": 103, + "type": "C" + }, + { + "at": 796.2382, + "frame": 114, + "type": "O" + }, + { + "at": 796.2879, + "frame": 114, + "type": "C" + }, + { + "at": 796.2879, + "frame": 105, + "type": "O" + }, + { + "at": 797.3653, + "frame": 105, + "type": "C" + }, + { + "at": 797.3653, + "frame": 103, + "type": "O" + }, + { + "at": 797.3774, + "frame": 103, + "type": "C" + }, + { + "at": 797.3774, + "frame": 114, + "type": "O" + }, + { + "at": 797.4263, + "frame": 114, + "type": "C" + }, + { + "at": 797.4263, + "frame": 105, + "type": "O" + }, + { + "at": 798.4913, + "frame": 105, + "type": "C" + }, + { + "at": 798.4913, + "frame": 103, + "type": "O" + }, + { + "at": 798.5022, + "frame": 103, + "type": "C" + }, + { + "at": 798.5022, + "frame": 114, + "type": "O" + }, + { + "at": 798.5209, + "frame": 114, + "type": "C" + }, + { + "at": 798.5209, + "frame": 105, + "type": "O" + }, + { + "at": 799.5796, + "frame": 105, + "type": "C" + }, + { + "at": 799.5796, + "frame": 103, + "type": "O" + }, + { + "at": 799.602, + "frame": 103, + "type": "C" + }, + { + "at": 799.602, + "frame": 114, + "type": "O" + }, + { + "at": 799.6216, + "frame": 114, + "type": "C" + }, + { + "at": 799.6216, + "frame": 105, + "type": "O" + }, + { + "at": 800.6726, + "frame": 105, + "type": "C" + }, + { + "at": 800.6726, + "frame": 103, + "type": "O" + }, + { + "at": 800.6857, + "frame": 103, + "type": "C" + }, + { + "at": 800.6857, + "frame": 114, + "type": "O" + }, + { + "at": 800.7344, + "frame": 114, + "type": "C" + }, + { + "at": 800.7344, + "frame": 105, + "type": "O" + }, + { + "at": 801.7912, + "frame": 105, + "type": "C" + }, + { + "at": 801.7912, + "frame": 103, + "type": "O" + }, + { + "at": 801.8035, + "frame": 103, + "type": "C" + }, + { + "at": 801.8035, + "frame": 114, + "type": "O" + }, + { + "at": 801.8545, + "frame": 114, + "type": "C" + }, + { + "at": 801.8545, + "frame": 105, + "type": "O" + }, + { + "at": 801.9819, + "frame": 105, + "type": "C" + }, + { + "at": 801.9819, + "frame": 113, + "type": "O" + }, + { + "at": 803.1427, + "frame": 113, + "type": "C" + }, + { + "at": 803.1427, + "frame": 113, + "type": "C" + }, + { + "at": 803.1427, + "frame": 113, + "type": "O" + }, + { + "at": 803.2302, + "frame": 113, + "type": "C" + }, + { + "at": 803.2302, + "frame": 81, + "type": "O" + }, + { + "at": 803.2607, + "frame": 81, + "type": "C" + }, + { + "at": 803.2607, + "frame": 79, + "type": "C" + }, + { + "at": 803.2607, + "frame": 82, + "type": "O" + }, + { + "at": 803.2814, + "frame": 82, + "type": "C" + }, + { + "at": 803.2814, + "frame": 84, + "type": "O" + }, + { + "at": 803.5167, + "frame": 84, + "type": "C" + }, + { + "at": 803.5167, + "frame": 67, + "type": "O" + }, + { + "at": 803.5445, + "frame": 67, + "type": "C" + }, + { + "at": 803.5445, + "frame": 85, + "type": "O" + }, + { + "at": 803.5925, + "frame": 85, + "type": "C" + }, + { + "at": 803.5925, + "frame": 86, + "type": "O" + }, + { + "at": 803.6475, + "frame": 86, + "type": "C" + }, + { + "at": 803.6475, + "frame": 87, + "type": "O" + }, + { + "at": 803.6841, + "frame": 87, + "type": "C" + }, + { + "at": 803.6841, + "frame": 99, + "type": "O" + }, + { + "at": 803.7038, + "frame": 99, + "type": "C" + }, + { + "at": 803.7038, + "frame": 88, + "type": "O" + }, + { + "at": 803.7187, + "frame": 88, + "type": "C" + }, + { + "at": 803.7187, + "frame": 89, + "type": "O" + }, + { + "at": 803.7416, + "frame": 89, + "type": "C" + }, + { + "at": 803.7416, + "frame": 66, + "type": "O" + }, + { + "at": 803.7562, + "frame": 66, + "type": "C" + }, + { + "at": 803.7562, + "frame": 64, + "type": "O" + }, + { + "at": 803.7692, + "frame": 64, + "type": "C" + }, + { + "at": 803.7692, + "frame": 90, + "type": "O" + }, + { + "at": 803.7966, + "frame": 90, + "type": "C" + }, + { + "at": 803.7966, + "frame": 91, + "type": "O" + }, + { + "at": 803.8285, + "frame": 91, + "type": "C" + }, + { + "at": 803.8285, + "frame": 92, + "type": "O" + }, + { + "at": 803.8444, + "frame": 92, + "type": "C" + }, + { + "at": 803.8444, + "frame": 93, + "type": "O" + }, + { + "at": 803.8582, + "frame": 93, + "type": "C" + }, + { + "at": 803.8582, + "frame": 94, + "type": "O" + }, + { + "at": 804.1829, + "frame": 95, + "type": "O" + }, + { + "at": 804.1975, + "frame": 95, + "type": "C" + }, + { + "at": 804.1975, + "frame": 95, + "type": "O" + }, + { + "at": 804.292, + "frame": 95, + "type": "C" + }, + { + "at": 804.292, + "frame": 95, + "type": "O" + }, + { + "at": 804.3073, + "frame": 95, + "type": "C" + }, + { + "at": 804.3073, + "frame": 95, + "type": "O" + }, + { + "at": 804.3269, + "frame": 95, + "type": "C" + }, + { + "at": 804.3269, + "frame": 95, + "type": "O" + }, + { + "at": 804.3727, + "frame": 95, + "type": "C" + }, + { + "at": 804.3727, + "frame": 96, + "type": "O" + }, + { + "at": 804.59, + "frame": 96, + "type": "C" + }, + { + "at": 804.59, + "frame": 94, + "type": "C" + }, + { + "at": 804.59, + "frame": 67, + "type": "O" + }, + { + "at": 804.6148, + "frame": 67, + "type": "C" + }, + { + "at": 804.6148, + "frame": 85, + "type": "O" + }, + { + "at": 804.6434, + "frame": 85, + "type": "C" + }, + { + "at": 804.6434, + "frame": 86, + "type": "O" + }, + { + "at": 804.6771, + "frame": 86, + "type": "C" + }, + { + "at": 804.6771, + "frame": 87, + "type": "O" + }, + { + "at": 804.6955, + "frame": 87, + "type": "C" + }, + { + "at": 804.6955, + "frame": 99, + "type": "O" + }, + { + "at": 804.7081, + "frame": 99, + "type": "C" + }, + { + "at": 804.7081, + "frame": 88, + "type": "O" + }, + { + "at": 804.7204, + "frame": 88, + "type": "C" + }, + { + "at": 804.7204, + "frame": 89, + "type": "O" + }, + { + "at": 804.7583, + "frame": 89, + "type": "C" + }, + { + "at": 804.7583, + "frame": 66, + "type": "O" + }, + { + "at": 804.774, + "frame": 66, + "type": "C" + }, + { + "at": 804.774, + "frame": 64, + "type": "O" + }, + { + "at": 804.7854, + "frame": 64, + "type": "C" + }, + { + "at": 804.7854, + "frame": 90, + "type": "O" + }, + { + "at": 804.8135, + "frame": 90, + "type": "C" + }, + { + "at": 804.8135, + "frame": 91, + "type": "O" + }, + { + "at": 804.8511, + "frame": 91, + "type": "C" + }, + { + "at": 804.8511, + "frame": 92, + "type": "O" + }, + { + "at": 804.8728, + "frame": 92, + "type": "C" + }, + { + "at": 804.8728, + "frame": 93, + "type": "O" + }, + { + "at": 804.902, + "frame": 93, + "type": "C" + }, + { + "at": 804.902, + "frame": 94, + "type": "O" + }, + { + "at": 805.2488, + "frame": 95, + "type": "O" + }, + { + "at": 805.2725, + "frame": 95, + "type": "C" + }, + { + "at": 805.2725, + "frame": 95, + "type": "O" + }, + { + "at": 805.3603, + "frame": 95, + "type": "C" + }, + { + "at": 805.3603, + "frame": 95, + "type": "O" + }, + { + "at": 805.375, + "frame": 95, + "type": "C" + }, + { + "at": 805.375, + "frame": 95, + "type": "O" + }, + { + "at": 805.394, + "frame": 95, + "type": "C" + }, + { + "at": 805.394, + "frame": 95, + "type": "O" + }, + { + "at": 805.4433, + "frame": 95, + "type": "C" + }, + { + "at": 805.4433, + "frame": 96, + "type": "O" + }, + { + "at": 805.7622, + "frame": 96, + "type": "C" + }, + { + "at": 805.7622, + "frame": 94, + "type": "C" + }, + { + "at": 805.7622, + "frame": 67, + "type": "O" + }, + { + "at": 805.7859, + "frame": 67, + "type": "C" + }, + { + "at": 805.7859, + "frame": 77, + "type": "O" + }, + { + "at": 805.8109, + "frame": 77, + "type": "C" + }, + { + "at": 805.8109, + "frame": 78, + "type": "O" + }, + { + "at": 806.1572, + "frame": 78, + "type": "C" + }, + { + "at": 806.1572, + "frame": 79, + "type": "O" + }, + { + "at": 807.9801, + "frame": 116, + "type": "O" + }, + { + "at": 807.9977, + "frame": 116, + "type": "C" + }, + { + "at": 807.9977, + "frame": 116, + "type": "O" + }, + { + "at": 827.1997, + "frame": 116, + "type": "C" + }, + { + "at": 827.1997, + "frame": 116, + "type": "O" + }, + { + "at": 830.4499, + "frame": 116, + "type": "C" + }, + { + "at": 830.4499, + "frame": 116, + "type": "O" + }, + { + "at": 833.9055, + "frame": 116, + "type": "C" + }, + { + "at": 833.9055, + "frame": 116, + "type": "O" + }, + { + "at": 839.8749, + "frame": 116, + "type": "C" + }, + { + "at": 839.8749, + "frame": 116, + "type": "O" + }, + { + "at": 839.9305, + "frame": 116, + "type": "C" + }, + { + "at": 839.9305, + "frame": 116, + "type": "O" + }, + { + "at": 839.971, + "frame": 116, + "type": "C" + }, + { + "at": 839.971, + "frame": 116, + "type": "O" + }, + { + "at": 847.4747, + "frame": 116, + "type": "C" + }, + { + "at": 847.4747, + "frame": 116, + "type": "O" + }, + { + "at": 860.4854, + "frame": 117, + "type": "O" + }, + { + "at": 860.544, + "frame": 117, + "type": "C" + }, + { + "at": 860.544, + "frame": 117, + "type": "O" + }, + { + "at": 860.5635, + "frame": 117, + "type": "C" + }, + { + "at": 860.5635, + "frame": 117, + "type": "O" + }, + { + "at": 861.2441, + "frame": 117, + "type": "C" + }, + { + "at": 861.2441, + "frame": 117, + "type": "O" + }, + { + "at": 861.2771, + "frame": 117, + "type": "C" + }, + { + "at": 861.2771, + "frame": 117, + "type": "O" + }, + { + "at": 861.2962, + "frame": 117, + "type": "C" + }, + { + "at": 861.2962, + "frame": 117, + "type": "O" + }, + { + "at": 861.3357, + "frame": 117, + "type": "C" + }, + { + "at": 861.3357, + "frame": 117, + "type": "O" + }, + { + "at": 861.3828, + "frame": 117, + "type": "C" + }, + { + "at": 861.3828, + "frame": 117, + "type": "O" + }, + { + "at": 861.458, + "frame": 117, + "type": "C" + }, + { + "at": 861.458, + "frame": 116, + "type": "O" + }, + { + "at": 861.4999, + "frame": 116, + "type": "C" + }, + { + "at": 861.4999, + "frame": 116, + "type": "C" + }, + { + "at": 861.4999, + "frame": 81, + "type": "O" + }, + { + "at": 861.5223, + "frame": 81, + "type": "C" + }, + { + "at": 861.5223, + "frame": 79, + "type": "C" + }, + { + "at": 861.5223, + "frame": 82, + "type": "O" + }, + { + "at": 861.54, + "frame": 82, + "type": "C" + }, + { + "at": 861.54, + "frame": 83, + "type": "O" + }, + { + "at": 861.5634, + "frame": 83, + "type": "C" + }, + { + "at": 861.5634, + "frame": 84, + "type": "O" + }, + { + "at": 861.5881, + "frame": 84, + "type": "C" + }, + { + "at": 861.5881, + "frame": 67, + "type": "O" + }, + { + "at": 861.6115, + "frame": 67, + "type": "C" + }, + { + "at": 861.6115, + "frame": 85, + "type": "O" + }, + { + "at": 861.6505, + "frame": 85, + "type": "C" + }, + { + "at": 861.6505, + "frame": 86, + "type": "O" + }, + { + "at": 861.6944, + "frame": 86, + "type": "C" + }, + { + "at": 861.6944, + "frame": 87, + "type": "O" + }, + { + "at": 861.719, + "frame": 87, + "type": "C" + }, + { + "at": 861.719, + "frame": 99, + "type": "O" + }, + { + "at": 861.739, + "frame": 99, + "type": "C" + }, + { + "at": 861.739, + "frame": 88, + "type": "O" + }, + { + "at": 861.7621, + "frame": 88, + "type": "C" + }, + { + "at": 861.7621, + "frame": 89, + "type": "O" + }, + { + "at": 861.7901, + "frame": 89, + "type": "C" + }, + { + "at": 861.7901, + "frame": 66, + "type": "O" + }, + { + "at": 861.8123, + "frame": 66, + "type": "C" + }, + { + "at": 861.8123, + "frame": 64, + "type": "O" + }, + { + "at": 861.8304, + "frame": 64, + "type": "C" + }, + { + "at": 861.8304, + "frame": 90, + "type": "O" + }, + { + "at": 861.8541, + "frame": 90, + "type": "C" + }, + { + "at": 861.8541, + "frame": 91, + "type": "O" + }, + { + "at": 861.8984, + "frame": 91, + "type": "C" + }, + { + "at": 861.8984, + "frame": 92, + "type": "O" + }, + { + "at": 861.9189, + "frame": 92, + "type": "C" + }, + { + "at": 861.9189, + "frame": 93, + "type": "O" + }, + { + "at": 861.9382, + "frame": 93, + "type": "C" + }, + { + "at": 861.9382, + "frame": 94, + "type": "O" + }, + { + "at": 862.2842, + "frame": 95, + "type": "O" + }, + { + "at": 862.3056, + "frame": 95, + "type": "C" + }, + { + "at": 862.3056, + "frame": 95, + "type": "O" + }, + { + "at": 862.4324, + "frame": 95, + "type": "C" + }, + { + "at": 862.4324, + "frame": 95, + "type": "O" + }, + { + "at": 862.4559, + "frame": 95, + "type": "C" + }, + { + "at": 862.4559, + "frame": 95, + "type": "O" + }, + { + "at": 862.4812, + "frame": 95, + "type": "C" + }, + { + "at": 862.4812, + "frame": 95, + "type": "O" + }, + { + "at": 862.5456, + "frame": 95, + "type": "C" + }, + { + "at": 862.5456, + "frame": 96, + "type": "O" + }, + { + "at": 862.8334, + "frame": 96, + "type": "C" + }, + { + "at": 862.8334, + "frame": 94, + "type": "C" + }, + { + "at": 862.8334, + "frame": 67, + "type": "O" + }, + { + "at": 862.8644, + "frame": 67, + "type": "C" + }, + { + "at": 862.8644, + "frame": 77, + "type": "O" + }, + { + "at": 862.8982, + "frame": 77, + "type": "C" + }, + { + "at": 862.8982, + "frame": 78, + "type": "O" + }, + { + "at": 863.3725, + "frame": 78, + "type": "C" + }, + { + "at": 863.3725, + "frame": 79, + "type": "O" + }, + { + "at": 871.2052, + "frame": 118, + "type": "O" + }, + { + "at": 871.2302, + "frame": 118, + "type": "C" + }, + { + "at": 871.2302, + "frame": 118, + "type": "O" + }, + { + "at": 871.3113, + "frame": 118, + "type": "C" + }, + { + "at": 871.3113, + "frame": 118, + "type": "O" + }, + { + "at": 2099.4912, + "frame": 118, + "type": "C" + }, + { + "at": 2099.4912, + "frame": 118, + "type": "O" + }, + { + "at": 2114.9754, + "frame": 118, + "type": "C" + }, + { + "at": 2114.9754, + "frame": 118, + "type": "O" + }, + { + "at": 2115.0055, + "frame": 118, + "type": "C" + }, + { + "at": 2115.0055, + "frame": 118, + "type": "O" + }, + { + "at": 2115.0316, + "frame": 118, + "type": "C" + }, + { + "at": 2115.0316, + "frame": 118, + "type": "O" + }, + { + "at": 2115.0604, + "frame": 118, + "type": "C" + }, + { + "at": 2115.0604, + "frame": 118, + "type": "O" + }, + { + "at": 2117.5072, + "frame": 118, + "type": "C" + }, + { + "at": 2117.5072, + "frame": 118, + "type": "O" + }, + { + "at": 2118.9552, + "frame": 118, + "type": "C" + }, + { + "at": 2118.9552, + "frame": 118, + "type": "O" + }, + { + "at": 2118.9944, + "frame": 118, + "type": "C" + }, + { + "at": 2118.9944, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0101, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0101, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0211, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0211, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0338, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0338, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0439, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0439, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0713, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0713, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0814, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0814, + "frame": 118, + "type": "O" + }, + { + "at": 2119.0944, + "frame": 118, + "type": "C" + }, + { + "at": 2119.0944, + "frame": 118, + "type": "O" + }, + { + "at": 2119.1085, + "frame": 118, + "type": "C" + }, + { + "at": 2119.1085, + "frame": 118, + "type": "O" + }, + { + "at": 2119.1332, + "frame": 118, + "type": "C" + }, + { + "at": 2119.1332, + "frame": 118, + "type": "O" + }, + { + "at": 2119.1503, + "frame": 118, + "type": "C" + }, + { + "at": 2119.1503, + "frame": 118, + "type": "O" + }, + { + "at": 2119.1856, + "frame": 118, + "type": "C" + }, + { + "at": 2119.1856, + "frame": 118, + "type": "O" + }, + { + "at": 2119.2018, + "frame": 118, + "type": "C" + }, + { + "at": 2119.2018, + "frame": 118, + "type": "O" + }, + { + "at": 2119.2168, + "frame": 118, + "type": "C" + }, + { + "at": 2119.2168, + "frame": 118, + "type": "O" + }, + { + "at": 2120.8928, + "frame": 118, + "type": "C" + }, + { + "at": 2120.8928, + "frame": 118, + "type": "O" + }, + { + "at": 2120.931, + "frame": 118, + "type": "C" + }, + { + "at": 2120.931, + "frame": 118, + "type": "O" + }, + { + "at": 2120.9477, + "frame": 118, + "type": "C" + }, + { + "at": 2120.9477, + "frame": 118, + "type": "O" + }, + { + "at": 2120.9622, + "frame": 118, + "type": "C" + }, + { + "at": 2120.9622, + "frame": 118, + "type": "O" + }, + { + "at": 2120.9796, + "frame": 118, + "type": "C" + }, + { + "at": 2120.9796, + "frame": 118, + "type": "O" + }, + { + "at": 2120.9951, + "frame": 118, + "type": "C" + }, + { + "at": 2120.9951, + "frame": 118, + "type": "O" + }, + { + "at": 2121.0253, + "frame": 118, + "type": "C" + }, + { + "at": 2121.0253, + "frame": 118, + "type": "O" + }, + { + "at": 2121.0386, + "frame": 118, + "type": "C" + }, + { + "at": 2121.0386, + "frame": 118, + "type": "O" + }, + { + "at": 2121.0514, + "frame": 118, + "type": "C" + }, + { + "at": 2121.0514, + "frame": 118, + "type": "O" + }, + { + "at": 2135.93, + "frame": 118, + "type": "C" + }, + { + "at": 2135.93, + "frame": 118, + "type": "O" + }, + { + "at": 2135.9621, + "frame": 118, + "type": "C" + }, + { + "at": 2135.9621, + "frame": 118, + "type": "O" + }, + { + "at": 2135.9966, + "frame": 118, + "type": "C" + }, + { + "at": 2135.9966, + "frame": 118, + "type": "O" + }, + { + "at": 2136.0148, + "frame": 118, + "type": "C" + }, + { + "at": 2136.0148, + "frame": 118, + "type": "O" + }, + { + "at": 2137.2348, + "frame": 118, + "type": "C" + }, + { + "at": 2137.2348, + "frame": 118, + "type": "O" + }, + { + "at": 2138.4941, + "frame": 118, + "type": "C" + }, + { + "at": 2138.4941, + "frame": 118, + "type": "O" + }, + { + "at": 2138.6036, + "frame": 118, + "type": "C" + }, + { + "at": 2138.6036, + "frame": 118, + "type": "O" + }, + { + "at": 2138.6426, + "frame": 118, + "type": "C" + }, + { + "at": 2138.6426, + "frame": 118, + "type": "O" + }, + { + "at": 2141.1, + "frame": 119, + "type": "O" + }, + { + "at": 2141.1148, + "frame": 119, + "type": "C" + }, + { + "at": 2141.1148, + "frame": 119, + "type": "O" + }, + { + "at": 2144.3471, + "frame": 119, + "type": "C" + }, + { + "at": 2144.3471, + "frame": 119, + "type": "O" + }, + { + "at": 2144.3754, + "frame": 119, + "type": "C" + }, + { + "at": 2144.3754, + "frame": 119, + "type": "O" + }, + { + "at": 2145.7237, + "frame": 119, + "type": "C" + }, + { + "at": 2145.7237, + "frame": 119, + "type": "O" + }, + { + "at": 2145.8111, + "frame": 119, + "type": "C" + }, + { + "at": 2145.8111, + "frame": 118, + "type": "O" + }, + { + "at": 2146.0798, + "frame": 119, + "type": "O" + }, + { + "at": 2146.0922, + "frame": 119, + "type": "C" + }, + { + "at": 2146.0922, + "frame": 118, + "type": "C" + }, + { + "at": 2146.0922, + "frame": 119, + "type": "O" + }, + { + "at": 2146.1075, + "frame": 119, + "type": "C" + }, + { + "at": 2146.1075, + "frame": 119, + "type": "O" + }, + { + "at": 2146.1309, + "frame": 119, + "type": "C" + }, + { + "at": 2146.1309, + "frame": 119, + "type": "O" + }, + { + "at": 2146.1739, + "frame": 119, + "type": "C" + }, + { + "at": 2146.1739, + "frame": 119, + "type": "O" + }, + { + "at": 2146.495, + "frame": 119, + "type": "C" + }, + { + "at": 2146.495, + "frame": 117, + "type": "O" + }, + { + "at": 2146.5292, + "frame": 117, + "type": "C" + }, + { + "at": 2146.5292, + "frame": 117, + "type": "O" + }, + { + "at": 2146.5421, + "frame": 117, + "type": "C" + }, + { + "at": 2146.5421, + "frame": 117, + "type": "O" + }, + { + "at": 2146.5664, + "frame": 117, + "type": "C" + }, + { + "at": 2146.5664, + "frame": 117, + "type": "O" + }, + { + "at": 2146.5785, + "frame": 117, + "type": "C" + }, + { + "at": 2146.5785, + "frame": 117, + "type": "O" + }, + { + "at": 2146.5903, + "frame": 117, + "type": "C" + }, + { + "at": 2146.5903, + "frame": 117, + "type": "O" + }, + { + "at": 2146.608, + "frame": 117, + "type": "C" + }, + { + "at": 2146.608, + "frame": 117, + "type": "O" + }, + { + "at": 2146.6348, + "frame": 117, + "type": "C" + }, + { + "at": 2146.6348, + "frame": 117, + "type": "O" + }, + { + "at": 2146.6971, + "frame": 117, + "type": "C" + }, + { + "at": 2146.6971, + "frame": 118, + "type": "O" + }, + { + "at": 2146.7118, + "frame": 118, + "type": "C" + }, + { + "at": 2146.7118, + "frame": 118, + "type": "C" + }, + { + "at": 2146.7118, + "frame": 118, + "type": "O" + }, + { + "at": 2146.7331, + "frame": 118, + "type": "C" + }, + { + "at": 2146.7331, + "frame": 118, + "type": "O" + }, + { + "at": 2146.7644, + "frame": 118, + "type": "C" + }, + { + "at": 2146.7644, + "frame": 81, + "type": "O" + }, + { + "at": 2146.7775, + "frame": 81, + "type": "C" + }, + { + "at": 2146.7775, + "frame": 79, + "type": "C" + }, + { + "at": 2146.7775, + "frame": 82, + "type": "O" + }, + { + "at": 2146.7898, + "frame": 82, + "type": "C" + }, + { + "at": 2146.7898, + "frame": 83, + "type": "O" + }, + { + "at": 2146.805, + "frame": 83, + "type": "C" + }, + { + "at": 2146.805, + "frame": 84, + "type": "O" + }, + { + "at": 2146.8441, + "frame": 84, + "type": "C" + }, + { + "at": 2146.8441, + "frame": 67, + "type": "O" + }, + { + "at": 2146.8795, + "frame": 67, + "type": "C" + }, + { + "at": 2146.8795, + "frame": 85, + "type": "O" + }, + { + "at": 2146.9037, + "frame": 85, + "type": "C" + }, + { + "at": 2146.9037, + "frame": 86, + "type": "O" + }, + { + "at": 2146.9287, + "frame": 86, + "type": "C" + }, + { + "at": 2146.9287, + "frame": 87, + "type": "O" + }, + { + "at": 2146.9496, + "frame": 87, + "type": "C" + }, + { + "at": 2146.9496, + "frame": 99, + "type": "O" + }, + { + "at": 2146.962, + "frame": 99, + "type": "C" + }, + { + "at": 2146.962, + "frame": 88, + "type": "O" + }, + { + "at": 2146.9843, + "frame": 88, + "type": "C" + }, + { + "at": 2146.9843, + "frame": 89, + "type": "O" + }, + { + "at": 2147.0016, + "frame": 89, + "type": "C" + }, + { + "at": 2147.0016, + "frame": 66, + "type": "O" + }, + { + "at": 2147.0167, + "frame": 66, + "type": "C" + }, + { + "at": 2147.0167, + "frame": 64, + "type": "O" + }, + { + "at": 2147.0319, + "frame": 64, + "type": "C" + }, + { + "at": 2147.0319, + "frame": 90, + "type": "O" + }, + { + "at": 2147.0436, + "frame": 90, + "type": "C" + }, + { + "at": 2147.0436, + "frame": 91, + "type": "O" + }, + { + "at": 2147.0846, + "frame": 91, + "type": "C" + }, + { + "at": 2147.0846, + "frame": 92, + "type": "O" + }, + { + "at": 2147.0982, + "frame": 92, + "type": "C" + }, + { + "at": 2147.0982, + "frame": 93, + "type": "O" + }, + { + "at": 2147.1105, + "frame": 93, + "type": "C" + }, + { + "at": 2147.1105, + "frame": 94, + "type": "O" + }, + { + "at": 2147.3672, + "frame": 95, + "type": "O" + }, + { + "at": 2147.381, + "frame": 95, + "type": "C" + }, + { + "at": 2147.381, + "frame": 95, + "type": "O" + }, + { + "at": 2147.4766, + "frame": 95, + "type": "C" + }, + { + "at": 2147.4766, + "frame": 95, + "type": "O" + }, + { + "at": 2147.4912, + "frame": 95, + "type": "C" + }, + { + "at": 2147.4912, + "frame": 95, + "type": "O" + }, + { + "at": 2147.509, + "frame": 95, + "type": "C" + }, + { + "at": 2147.509, + "frame": 95, + "type": "O" + }, + { + "at": 2147.5641, + "frame": 95, + "type": "C" + }, + { + "at": 2147.5641, + "frame": 96, + "type": "O" + }, + { + "at": 2147.7844, + "frame": 96, + "type": "C" + }, + { + "at": 2147.7844, + "frame": 94, + "type": "C" + }, + { + "at": 2147.7844, + "frame": 67, + "type": "O" + }, + { + "at": 2147.8077, + "frame": 67, + "type": "C" + }, + { + "at": 2147.8077, + "frame": 77, + "type": "O" + }, + { + "at": 2147.8343, + "frame": 77, + "type": "C" + }, + { + "at": 2147.8343, + "frame": 78, + "type": "O" + }, + { + "at": 2148.2404, + "frame": 78, + "type": "C" + }, + { + "at": 2148.2404, + "frame": 79, + "type": "O" + }, + { + "at": 2152.0758, + "frame": 120, + "type": "O" + }, + { + "at": 2152.0933, + "frame": 120, + "type": "C" + }, + { + "at": 2152.0933, + "frame": 120, + "type": "O" + }, + { + "at": 2152.512, + "frame": 120, + "type": "C" + }, + { + "at": 2152.512, + "frame": 120, + "type": "O" + }, + { + "at": 2152.5946, + "frame": 120, + "type": "C" + }, + { + "at": 2152.5946, + "frame": 120, + "type": "O" + }, + { + "at": 2158.891, + "frame": 120, + "type": "C" + }, + { + "at": 2158.891, + "frame": 120, + "type": "O" + }, + { + "at": 2158.9328, + "frame": 120, + "type": "C" + }, + { + "at": 2158.9328, + "frame": 120, + "type": "O" + }, + { + "at": 2159.0715, + "frame": 120, + "type": "C" + }, + { + "at": 2159.0715, + "frame": 120, + "type": "O" + }, + { + "at": 2160.9068, + "frame": 120, + "type": "C" + }, + { + "at": 2160.9068, + "frame": 120, + "type": "O" + }, + { + "at": 2160.9608, + "frame": 120, + "type": "C" + }, + { + "at": 2160.9608, + "frame": 120, + "type": "O" + }, + { + "at": 2163.7342, + "frame": 120, + "type": "C" + }, + { + "at": 2163.7342, + "frame": 120, + "type": "O" + }, + { + "at": 2163.7601, + "frame": 120, + "type": "C" + }, + { + "at": 2163.7601, + "frame": 120, + "type": "O" + }, + { + "at": 2164.8774, + "frame": 120, + "type": "C" + }, + { + "at": 2164.8774, + "frame": 120, + "type": "O" + }, + { + "at": 2165.9664, + "frame": 120, + "type": "C" + }, + { + "at": 2165.9664, + "frame": 120, + "type": "O" + }, + { + "at": 2167.0721, + "frame": 120, + "type": "C" + }, + { + "at": 2167.0721, + "frame": 120, + "type": "O" + }, + { + "at": 2167.1334, + "frame": 120, + "type": "C" + }, + { + "at": 2167.1334, + "frame": 120, + "type": "O" + }, + { + "at": 2167.1695, + "frame": 120, + "type": "C" + }, + { + "at": 2167.1695, + "frame": 120, + "type": "O" + }, + { + "at": 2167.1889, + "frame": 120, + "type": "C" + }, + { + "at": 2167.1889, + "frame": 120, + "type": "O" + }, + { + "at": 2172.7809, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8179, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8179, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8319, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8319, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8461, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8461, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8561, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8561, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8766, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8766, + "frame": 117, + "type": "O" + }, + { + "at": 2172.8926, + "frame": 117, + "type": "C" + }, + { + "at": 2172.8926, + "frame": 117, + "type": "O" + }, + { + "at": 2172.9236, + "frame": 117, + "type": "C" + }, + { + "at": 2172.9236, + "frame": 117, + "type": "O" + }, + { + "at": 2172.9726, + "frame": 117, + "type": "C" + }, + { + "at": 2172.9726, + "frame": 120, + "type": "O" + }, + { + "at": 2173.0014, + "frame": 120, + "type": "C" + }, + { + "at": 2173.0014, + "frame": 120, + "type": "C" + }, + { + "at": 2173.0014, + "frame": 81, + "type": "O" + }, + { + "at": 2173.0144, + "frame": 81, + "type": "C" + }, + { + "at": 2173.0144, + "frame": 79, + "type": "C" + }, + { + "at": 2173.0144, + "frame": 82, + "type": "O" + }, + { + "at": 2173.0357, + "frame": 82, + "type": "C" + }, + { + "at": 2173.0357, + "frame": 83, + "type": "O" + }, + { + "at": 2173.0519, + "frame": 83, + "type": "C" + }, + { + "at": 2173.0519, + "frame": 84, + "type": "O" + }, + { + "at": 2173.0665, + "frame": 84, + "type": "C" + }, + { + "at": 2173.0665, + "frame": 67, + "type": "O" + }, + { + "at": 2173.0771, + "frame": 67, + "type": "C" + }, + { + "at": 2173.0771, + "frame": 85, + "type": "O" + }, + { + "at": 2173.0927, + "frame": 85, + "type": "C" + }, + { + "at": 2173.0927, + "frame": 86, + "type": "O" + }, + { + "at": 2173.1119, + "frame": 86, + "type": "C" + }, + { + "at": 2173.1119, + "frame": 87, + "type": "O" + }, + { + "at": 2173.145, + "frame": 87, + "type": "C" + }, + { + "at": 2173.145, + "frame": 99, + "type": "O" + }, + { + "at": 2173.1563, + "frame": 99, + "type": "C" + }, + { + "at": 2173.1563, + "frame": 88, + "type": "O" + }, + { + "at": 2173.1652, + "frame": 88, + "type": "C" + }, + { + "at": 2173.1652, + "frame": 89, + "type": "O" + }, + { + "at": 2173.1782, + "frame": 89, + "type": "C" + }, + { + "at": 2173.1782, + "frame": 66, + "type": "O" + }, + { + "at": 2173.1903, + "frame": 66, + "type": "C" + }, + { + "at": 2173.1903, + "frame": 64, + "type": "O" + }, + { + "at": 2173.2009, + "frame": 64, + "type": "C" + }, + { + "at": 2173.2009, + "frame": 90, + "type": "O" + }, + { + "at": 2173.2204, + "frame": 90, + "type": "C" + }, + { + "at": 2173.2204, + "frame": 91, + "type": "O" + }, + { + "at": 2173.2389, + "frame": 91, + "type": "C" + }, + { + "at": 2173.2389, + "frame": 92, + "type": "O" + }, + { + "at": 2173.2503, + "frame": 92, + "type": "C" + }, + { + "at": 2173.2503, + "frame": 93, + "type": "O" + }, + { + "at": 2173.2609, + "frame": 93, + "type": "C" + }, + { + "at": 2173.2609, + "frame": 94, + "type": "O" + }, + { + "at": 2173.509, + "frame": 95, + "type": "O" + }, + { + "at": 2173.523, + "frame": 95, + "type": "C" + }, + { + "at": 2173.523, + "frame": 95, + "type": "O" + }, + { + "at": 2173.5985, + "frame": 95, + "type": "C" + }, + { + "at": 2173.5985, + "frame": 95, + "type": "O" + }, + { + "at": 2173.6126, + "frame": 95, + "type": "C" + }, + { + "at": 2173.6126, + "frame": 95, + "type": "O" + }, + { + "at": 2173.6301, + "frame": 95, + "type": "C" + }, + { + "at": 2173.6301, + "frame": 95, + "type": "O" + }, + { + "at": 2173.6791, + "frame": 95, + "type": "C" + }, + { + "at": 2173.6791, + "frame": 96, + "type": "O" + }, + { + "at": 2173.8813, + "frame": 96, + "type": "C" + }, + { + "at": 2173.8813, + "frame": 94, + "type": "C" + }, + { + "at": 2173.8813, + "frame": 67, + "type": "O" + }, + { + "at": 2173.904, + "frame": 67, + "type": "C" + }, + { + "at": 2173.904, + "frame": 77, + "type": "O" + }, + { + "at": 2173.9299, + "frame": 77, + "type": "C" + }, + { + "at": 2173.9299, + "frame": 78, + "type": "O" + }, + { + "at": 2174.3018, + "frame": 78, + "type": "C" + }, + { + "at": 2174.3018, + "frame": 79, + "type": "O" + }, + { + "at": 2174.9261, + "frame": 121, + "type": "O" + }, + { + "at": 2174.9392, + "frame": 121, + "type": "C" + }, + { + "at": 2174.9392, + "frame": 121, + "type": "O" + }, + { + "at": 2174.9553, + "frame": 121, + "type": "C" + }, + { + "at": 2174.9553, + "frame": 121, + "type": "O" + }, + { + "at": 2175.0012, + "frame": 121, + "type": "C" + }, + { + "at": 2175.0012, + "frame": 81, + "type": "O" + }, + { + "at": 2175.0155, + "frame": 81, + "type": "C" + }, + { + "at": 2175.0155, + "frame": 79, + "type": "C" + }, + { + "at": 2175.0155, + "frame": 82, + "type": "O" + }, + { + "at": 2175.0271, + "frame": 82, + "type": "C" + }, + { + "at": 2175.0271, + "frame": 83, + "type": "O" + }, + { + "at": 2175.0415, + "frame": 83, + "type": "C" + }, + { + "at": 2175.0415, + "frame": 84, + "type": "O" + }, + { + "at": 2175.0663, + "frame": 84, + "type": "C" + }, + { + "at": 2175.0663, + "frame": 67, + "type": "O" + }, + { + "at": 2175.0775, + "frame": 67, + "type": "C" + }, + { + "at": 2175.0775, + "frame": 85, + "type": "O" + }, + { + "at": 2175.0973, + "frame": 85, + "type": "C" + }, + { + "at": 2175.0973, + "frame": 86, + "type": "O" + }, + { + "at": 2176.9299, + "frame": 86, + "type": "C" + }, + { + "at": 2176.9299, + "frame": 87, + "type": "O" + }, + { + "at": 2176.9584, + "frame": 87, + "type": "C" + }, + { + "at": 2176.9584, + "frame": 88, + "type": "O" + }, + { + "at": 2176.9702, + "frame": 88, + "type": "C" + }, + { + "at": 2176.9702, + "frame": 89, + "type": "O" + }, + { + "at": 2177.0177, + "frame": 89, + "type": "C" + }, + { + "at": 2177.0177, + "frame": 66, + "type": "O" + }, + { + "at": 2177.0313, + "frame": 66, + "type": "C" + }, + { + "at": 2177.0313, + "frame": 64, + "type": "O" + }, + { + "at": 2177.0418, + "frame": 64, + "type": "C" + }, + { + "at": 2177.0418, + "frame": 90, + "type": "O" + }, + { + "at": 2177.0534, + "frame": 90, + "type": "C" + }, + { + "at": 2177.0534, + "frame": 91, + "type": "O" + }, + { + "at": 2177.0717, + "frame": 91, + "type": "C" + }, + { + "at": 2177.0717, + "frame": 92, + "type": "O" + }, + { + "at": 2177.0827, + "frame": 92, + "type": "C" + }, + { + "at": 2177.0827, + "frame": 93, + "type": "O" + }, + { + "at": 2177.1026, + "frame": 93, + "type": "C" + }, + { + "at": 2177.1026, + "frame": 94, + "type": "O" + }, + { + "at": 2177.3687, + "frame": 95, + "type": "O" + }, + { + "at": 2177.3935, + "frame": 95, + "type": "C" + }, + { + "at": 2177.3935, + "frame": 95, + "type": "O" + }, + { + "at": 2177.4649, + "frame": 95, + "type": "C" + }, + { + "at": 2177.4649, + "frame": 95, + "type": "O" + }, + { + "at": 2177.4794, + "frame": 95, + "type": "C" + }, + { + "at": 2177.4794, + "frame": 95, + "type": "O" + }, + { + "at": 2177.4968, + "frame": 95, + "type": "C" + }, + { + "at": 2177.4968, + "frame": 95, + "type": "O" + }, + { + "at": 2177.5412, + "frame": 95, + "type": "C" + }, + { + "at": 2177.5412, + "frame": 96, + "type": "O" + }, + { + "at": 2177.7536, + "frame": 96, + "type": "C" + }, + { + "at": 2177.7536, + "frame": 94, + "type": "C" + }, + { + "at": 2177.7536, + "frame": 67, + "type": "O" + }, + { + "at": 2177.7766, + "frame": 67, + "type": "C" + }, + { + "at": 2177.7766, + "frame": 77, + "type": "O" + }, + { + "at": 2177.7901, + "frame": 77, + "type": "C" + }, + { + "at": 2177.7901, + "frame": 93, + "type": "O" + }, + { + "at": 2177.81, + "frame": 93, + "type": "C" + }, + { + "at": 2177.81, + "frame": 64, + "type": "O" + }, + { + "at": 2177.8267, + "frame": 64, + "type": "C" + }, + { + "at": 2177.8267, + "frame": 122, + "type": "O" + }, + { + "at": 2177.853, + "frame": 122, + "type": "C" + }, + { + "at": 2177.853, + "frame": 123, + "type": "O" + }, + { + "at": 2177.8843, + "frame": 123, + "type": "C" + }, + { + "at": 2177.8843, + "frame": 124, + "type": "O" + }, + { + "at": 2178.0959, + "frame": 124, + "type": "C" + }, + { + "at": 2178.0959, + "frame": 125, + "type": "O" + }, + { + "at": 2178.3588, + "frame": 125, + "type": "C" + }, + { + "at": 2178.3588, + "frame": 126, + "type": "O" + }, + { + "at": 2178.4092, + "frame": 126, + "type": "C" + }, + { + "at": 2178.4092, + "frame": 1, + "type": "C" + } + ] + } + ] +} \ No newline at end of file diff --git a/winfetch.ps1 b/winfetch.ps1 index 7a88581..7a2d6d6 100644 --- a/winfetch.ps1 +++ b/winfetch.ps1 @@ -702,12 +702,14 @@ function info_cpu { function info_gpu { [System.Collections.ArrayList]$lines = @() - #loop through Win32_VideoController - foreach ($gpu in Get-CimInstance -ClassName Win32_VideoController -Property Name -CimSession $cimSession) { - [void]$lines.Add(@{ - title = "GPU" - content = $gpu.Name - }) + # Get list of GPUs from the Registry + Get-ChildItem -path HKLM:\SOFTWARE\Microsoft\DirectX\ | Get-ItemProperty | ForEach-Object { + if(($_.Description -ne "Microsoft Basic Render Driver") -and ($lines.content -notcontains $_.Description)){ + [void]$lines.Add(@{ + title = "GPU" + content = $_.Description + }) + } } return $lines } From b2bafd2c6041cab98f3c84dafe6eb94a10b4e5eb Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Fri, 9 Sep 2022 15:05:41 -0500 Subject: [PATCH 2/4] Accidentally left profiler files --- profiler_0000.speedscope.json | 7892 --------------------------------- profiler_0001.speedscope.json | 7822 -------------------------------- 2 files changed, 15714 deletions(-) delete mode 100644 profiler_0000.speedscope.json delete mode 100644 profiler_0001.speedscope.json diff --git a/profiler_0000.speedscope.json b/profiler_0000.speedscope.json deleted file mode 100644 index 98501fc..0000000 --- a/profiler_0000.speedscope.json +++ /dev/null @@ -1,7892 +0,0 @@ -{ - "exporter": "Profiler@4.0.0", - "name": "profiler_0000.speedscope.json", - "activeProfileIndex": 0, - "schema": "https://www.speedscope.app/file-format-schema.json", - "shared": { - "frames": [ - { - "name": "{|" - }, - { - "name": "& .\\winfetch.ps1" - }, - { - "name": "-not ($IsWindows -or $PSVersionTable.PSVersion.Major -eq 5)" - }, - { - "name": "$help" - }, - { - "name": "$defaultConfig = @'\r\n# ===== WINFETCH CONFIGURATION =====\r\n\r\n# $image = \"~/winfetch.png\"\r\n# $noimage = $true\r\n\r\n# Display image using ASCII characters\r\n# $ascii = $true\r\n\r\n# Set the version of Windows to derive the logo from.\r\n# $logo = \"Windows 10\"\r\n\r\n# Specify width for image/logo\r\n# $imgwidth = 24\r\n\r\n# Custom ASCII Art\r\n# This should be an array of strings, with positive\r\n# height and width equal to $imgwidth defined above.\r\n# $CustomAscii = @(\r\n# \"⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣶⣶⣾⣷⣶⣆⠸⣿⣿⡟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⡈⠻⠿⠟⠻⠿⢿⣷⣤⣤⣄⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⢀⣤⣤⡘⢿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⣿⣿⣿⡇⢸⣿⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣉⣉⡁ ⠀\"\r\n# \"⠀⠀⠀⠈⠛⠛⢡⣾⣿⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⠟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡿⢁⣴⣶⣦⣴⣶⣾⡿⠛⠛⠋⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⠿⢿⡿⠿⠏⢰⣿⣿⣧⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⠟⠀⠀ ⠀\"\r\n# )\r\n\r\n# Make the logo blink\r\n# $blink = $true\r\n\r\n# Display all built-in info segments.\r\n# $all = $true\r\n\r\n# Add a custom info line\r\n# function info_custom_time {\r\n# return @{\r\n# title = \"Time\"\r\n# content = (Get-Date)\r\n# }\r\n# }\r\n\r\n# Configure which disks are shown\r\n# $ShowDisks = @(\"C:\", \"D:\")\r\n# Show all available disks\r\n# $ShowDisks = @(\"*\")\r\n\r\n# Configure which package managers are shown\r\n# disabling unused ones will improve speed\r\n# $ShowPkgs = @(\"winget\", \"scoop\", \"choco\")\r\n\r\n# Use the following option to specify custom package managers.\r\n# Create a function with that name as suffix, and which returns\r\n# the number of packages. Two examples are shown here:\r\n# $CustomPkgs = @(\"cargo\", \"just-install\")\r\n# function info_pkg_cargo {\r\n# return (cargo install --list | Where-Object {$_ -like \"*:\" }).Length\r\n# }\r\n# function info_pkg_just-install {\r\n# return (just-install list).Length\r\n# }\r\n\r\n# Configure how to show info for levels\r\n# Default is for text only.\r\n# 'bar' is for bar only.\r\n# 'textbar' is for text + bar.\r\n# 'bartext' is for bar + text.\r\n# $cpustyle = 'bar'\r\n# $memorystyle = 'textbar'\r\n# $diskstyle = 'bartext'\r\n# $batterystyle = 'bartext'\r\n\r\n\r\n# Remove the '#' from any of the lines in\r\n# the following to **enable** their output.\r\n\r\n@(\r\n \"title\"\r\n \"dashes\"\r\n \"os\"\r\n \"computer\"\r\n \"kernel\"\r\n \"motherboard\"\r\n # \"custom_time\" # use custom info line\r\n \"uptime\"\r\n # \"ps_pkgs\" # takes some time\r\n \"pkgs\"\r\n \"pwsh\"\r\n \"resolution\"\r\n \"terminal\"\r\n # \"theme\"\r\n \"cpu\"\r\n \"gpu\"\r\n # \"cpu_usage\" # takes some time\r\n \"memory\"\r\n \"disk\"\r\n # \"battery\"\r\n # \"locale\"\r\n # \"weather\"\r\n # \"local_ip\"\r\n # \"public_ip\"\r\n \"blank\"\r\n \"colorbar\"\r\n)\r\n\r\n'@" - }, - { - "name": "-not $configPath" - }, - { - "name": "$env:WINFETCH_CONFIG_PATH" - }, - { - "name": "$configPath = \"${env:USERPROFILE}\\.config\\winfetch\\config.ps1\"" - }, - { - "name": "$genconf -and (Test-Path $configPath)" - }, - { - "name": "-not (Test-Path $configPath) -or [String]::IsNullOrWhiteSpace((Get-Content $configPath))" - }, - { - "name": "$config = . $configPath" - }, - { - "name": "$ShowDisks = @(\"*\")" - }, - { - "name": "$runspaces = $true" - }, - { - "name": "$RunspaceOps = @(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n \"motherboard\"\n \"custom_time\"\n \"uptime\"\n \"ps_pkgs\"\n \"pkgs\"\n \"pwsh\"\n \"resolution\"\n \"terminal\"\n \"theme\"\n \"cpu\"\n \"gpu\"\n \"cpu_usage\"\n #\"memory\" # Causes Errors\n \"disk\"\n #\"battery\" # Causes Errors\n \"locale\"\n \"weather\"\n \"local_ip\"\n \"public_ip\"\n \"blank\"\n \"colorbar\"\n)" - }, - { - "name": "\"title\"" - }, - { - "name": "\"dashes\"" - }, - { - "name": "\"os\"" - }, - { - "name": "\"computer\"" - }, - { - "name": "\"kernel\"" - }, - { - "name": "\"motherboard\"" - }, - { - "name": "\"custom_time\"" - }, - { - "name": "\"uptime\"" - }, - { - "name": "\"ps_pkgs\"" - }, - { - "name": "\"pkgs\"" - }, - { - "name": "\"pwsh\"" - }, - { - "name": "\"resolution\"" - }, - { - "name": "\"terminal\"" - }, - { - "name": "\"theme\"" - }, - { - "name": "\"cpu\"" - }, - { - "name": "\"gpu\"" - }, - { - "name": "\"cpu_usage\"" - }, - { - "name": "\"disk\"" - }, - { - "name": "\"locale\"" - }, - { - "name": "\"weather\"" - }, - { - "name": "\"local_ip\"" - }, - { - "name": "\"public_ip\"" - }, - { - "name": "\"blank\"" - }, - { - "name": "\"colorbar\"" - }, - { - "name": "@(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n #\"motherboard\"\n # \"custom_time\" # use custom info line\n \"uptime\"\n # \"ps_pkgs\" # takes some time\n #\"pkgs\"\n #\"pwsh\"\n \"resolution\"\n #\"terminal\"\n # \"theme\"\n \"cpu\"\n \"gpu\"\n # \"cpu_usage\" # takes some time\n \"memory\"\n \"disk\"\n \"battery\"\n # \"locale\"\n # \"weather\"\n # \"local_ip\"\n # \"public_ip\"\n \"blank\"\n #\"colorbar\"\n)" - }, - { - "name": "\"memory\"" - }, - { - "name": "\"battery\"" - }, - { - "name": "-not $config -or $all" - }, - { - "name": "$PSBoundParameters.Keys" - }, - { - "name": "$param" - }, - { - "name": "$e = [char]0x1B" - }, - { - "name": "$ansiRegex = '([\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~])))'" - }, - { - "name": "$cimSession = New-CimSession" - }, - { - "name": "$os = Get-CimInstance -ClassName Win32_OperatingSystem -Property Caption,OSArchitecture -CimSession $cimSession" - }, - { - "name": "$t = if ($blink) { \"5\" } else { \"1\" }" - }, - { - "name": "$blink" - }, - { - "name": "\"1\"" - }, - { - "name": "$COLUMNS = $imgwidth" - }, - { - "name": "$img = if (-not $noimage) {\r\n if ($image) {\r\n if ($image -eq 'wallpaper') {\r\n $image = (Get-ItemProperty -Path 'HKCU:\\Control Panel\\Desktop' -Name Wallpaper).Wallpaper\r\n }\r\n\r\n Add-Type -AssemblyName 'System.Drawing'\r\n $OldImage = if (Test-Path $image -PathType Leaf) {\r\n [Drawing.Bitmap]::FromFile((Resolve-Path $image))\r\n } else {\r\n [Drawing.Bitmap]::FromStream((Invoke-WebRequest $image -UseBasicParsing).RawContentStream)\r\n }\r\n\r\n # Divide scaled height by 2.2 to compensate for ASCII characters being taller than they are wide\r\n [int]$ROWS = $OldImage.Height / $OldImage.Width * $COLUMNS / $(if ($ascii) { 2.2 } else { 1 })\r\n $Bitmap = New-Object System.Drawing.Bitmap @($OldImage, [Drawing.Size]\"$COLUMNS,$ROWS\")\r\n\r\n if ($ascii) {\r\n $chars = ' .,:;+iIH$@'\r\n for ($i = 0; $i -lt $Bitmap.Height; $i++) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $p = $Bitmap.GetPixel($j, $i)\r\n $currline += \"$e[38;2;$($p.R);$($p.G);$($p.B)m$($chars[[math]::Floor($p.GetBrightness() * $chars.Length)])$e[0m\"\r\n }\r\n $currline\r\n }\r\n } else {\r\n for ($i = 0; $i -lt $Bitmap.Height; $i += 2) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $back = $Bitmap.GetPixel($j, $i)\r\n if ($i -ge $Bitmap.Height - 1) {\r\n $foreVT = \"\"\r\n } else {\r\n $fore = $Bitmap.GetPixel($j, $i + 1)\r\n $foreVT = \"$e[48;2;$($fore.R);$($fore.G);$($fore.B)m\"\r\n }\r\n $backVT = \"$e[38;2;$($back.R);$($back.G);$($back.B)m\"\r\n $currline += \"$backVT$foreVT$([char]0x2580)$e[0m\"\r\n }\r\n $currline\r\n }\r\n }\r\n\r\n $Bitmap.Dispose()\r\n $OldImage.Dispose()\r\n\r\n } elseif (($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)) {\r\n $CustomAscii\r\n } else {\r\n if (-not $logo) {\r\n if ($os -Like \"*Windows 11 *\") {\r\n $logo = \"Windows 11\"\r\n } elseif ($os -Like \"*Windows 10 *\" -Or $os -Like \"*Windows 8.1 *\" -Or $os -Like \"*Windows 8 *\") {\r\n $logo = \"Windows 10\"\r\n } else {\r\n $logo = \"Windows 7\"\r\n }\r\n }\r\n\r\n if ($logo -eq \"Windows 11\") {\r\n $COLUMNS = 32\r\n @(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )\r\n } elseif ($logo -eq \"Windows 10\" -Or $logo -eq \"Windows 8.1\" -Or $logo -eq \"Windows 8\") {\r\n $COLUMNS = 34\r\n @(\r\n \"${e}[${t};34m ....,,:;+ccllll\"\r\n \"${e}[${t};34m ...,,+:; cllllllllllllllllll\"\r\n \"${e}[${t};34m,cclllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m``'ccllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m ``' \\\\*:: :ccllllllllllllllll\"\r\n \"${e}[${t};34m ````````''*::cll\"\r\n \"${e}[${t};34m ````\"\r\n )\r\n } elseif ($logo -eq \"Windows 7\" -Or $logo -eq \"Windows Vista\" -Or $logo -eq \"Windows XP\") {\r\n $COLUMNS = 35\r\n @(\r\n \"${e}[${t};31m ,.=:!!t3Z3z., \"\r\n \"${e}[${t};31m :tt:::tt333EE3 \"\r\n \"${e}[${t};31m Et:::ztt33EEE ${e}[32m@Ee., ..,\"\r\n \"${e}[${t};31m ;tt:::tt333EE7 ${e}[32m;EEEEEEttttt33#\"\r\n \"${e}[${t};31m :Et:::zt333EEQ. ${e}[32mSEEEEEttttt33QL\"\r\n \"${e}[${t};31m it::::tt333EEF ${e}[32m@EEEEEEttttt33F \"\r\n \"${e}[${t};31m ;3=*^``````'*4EEV ${e}[32m:EEEEEEttttt33@. \"\r\n \"${e}[${t};34m ,.=::::it=., ${e}[31m`` ${e}[32m@EEEEEEtttz33QF \"\r\n \"${e}[${t};34m ;::::::::zt33) ${e}[32m'4EEEtttji3P* \"\r\n \"${e}[${t};34m :t::::::::tt33 ${e}[33m:Z3z.. ${e}[32m```` ${e}[33m,..g. \"\r\n \"${e}[${t};34m i::::::::zt33F ${e}[33mAEEEtttt::::ztF \"\r\n \"${e}[${t};34m ;:::::::::t33V ${e}[33m;EEEttttt::::t3 \"\r\n \"${e}[${t};34m E::::::::zt33L ${e}[33m@EEEtttt::::z3F \"\r\n \"${e}[${t};34m{3=*^``````'*4E3) ${e}[33m;EEEtttt:::::tZ`` \"\r\n \"${e}[${t};34m `` ${e}[33m:EEEEtttt::::z7 \"\r\n \"${e}[${t};33m 'VEzjt:;;z>*`` \"\r\n )\r\n } elseif ($logo -eq \"Microsoft\") {\r\n $COLUMNS = 13\r\n @(\r\n \"${e}[${t};31m┌─────┐${e}[32m┌─────┐\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m└─────┘${e}[32m└─────┘\"\r\n \"${e}[${t};34m┌─────┐${e}[33m┌─────┐\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m└─────┘${e}[33m└─────┘\"\r\n )\r\n } elseif ($logo -eq \"Windows 2000\" -Or $logo -eq \"Windows 98\" -Or $logo -eq \"Windows 95\") {\r\n $COLUMNS = 45\r\n @(\r\n \" ${e}[${t};30mdBBBBBBBb\"\r\n \" ${e}[${t};30mdBBBBBBBBBBBBBBBb\"\r\n \" ${e}[${t};30m 000 BBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: 000000 BBBBB${e}[${t};31mdBB${e}[${t};30mBBBB${e}[${t};32mBBBb${e}[${t};30mBBBBBBB\"\r\n \"${e}[${t};31m::::: ${e}[${t};30m====== 000${e}[${t};31m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};32m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};31m====== 000${e}[${t};30m000 BBBBBBBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: ====== 000000 BBBBB${e}[${t};34mdBB${e}[${t};30mBBBB${e}[${t};33mBBBb${e}[${t};30mBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ${e}[${t};30m====== 000${e}[${t};34m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};33m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};34m====== 000${e}[${t};30m000 BBBBBf `BBBBBBBBB\"\r\n \"${e}[${t};30m :: ====== 000000 BBf `BBBBB\"\r\n \" ${c1} == 000000 B BBB\"\r\n )\r\n } else {\r\n Write-Error 'The only version logos supported are Windows 11, Windows 10/8.1/8, Windows 7/Vista/XP, Windows 2000/98/95 and Microsoft.'\r\n exit 1\r\n }\r\n }\r\n}" - }, - { - "name": "-not $noimage" - }, - { - "name": "$image" - }, - { - "name": "($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)" - }, - { - "name": "-not $logo" - }, - { - "name": "$os -Like \"*Windows 11 *\"" - }, - { - "name": "$logo = \"Windows 11\"" - }, - { - "name": "$logo -eq \"Windows 11\"" - }, - { - "name": "$COLUMNS = 32" - }, - { - "name": "@(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )" - }, - { - "name": "\"${e}[${t};34mlllllllllllllll lllllllllllllll\"" - }, - { - "name": "\"${e}[${t};34m \"" - }, - { - "name": "-not $stripansi" - }, - { - "name": "Write-Output \"$e[0m$e[?25l\"" - }, - { - "name": "$img" - }, - { - "name": "$line" - }, - { - "name": "Write-Output \" $line\"" - }, - { - "name": "$GAP = 3" - }, - { - "name": "$writtenLines = 0" - }, - { - "name": "$freeSpace = $Host.UI.RawUI.WindowSize.Width - 1" - }, - { - "name": "$img -and -not $stripansi" - }, - { - "name": "$freeSpace -= 1 + $COLUMNS + $GAP" - }, - { - "name": "Write-Output \"$e[$($img.Length + 1)A\"" - }, - { - "name": "$img.Length + 1" - }, - { - "name": "$config" - }, - { - "name": "$item" - }, - { - "name": "Test-Path Function:\"info_$item\"" - }, - { - "name": "$info = & \"info_$item\"" - }, - { - "name": "info_title" - }, - { - "name": "-not $info" - }, - { - "name": "$info -isnot [array]" - }, - { - "name": "$info = @($info)" - }, - { - "name": "$info" - }, - { - "name": "$output = \"$e[1;33m$($line[\"title\"])$e[0m\"" - }, - { - "name": "$line[\"title\"]" - }, - { - "name": "$line[\"title\"] -and $line[\"content\"]" - }, - { - "name": "$output += \"$($line[\"content\"])\"" - }, - { - "name": "$line[\"content\"]" - }, - { - "name": "$output = \"$e[$(2 + $COLUMNS + $GAP)G$output\"" - }, - { - "name": "2 + $COLUMNS + $GAP" - }, - { - "name": "$writtenLines++" - }, - { - "name": "$stripansi" - }, - { - "name": "$output = truncate_line $output $freeSpace" - }, - { - "name": "truncate_line" - }, - { - "name": "Write-Output $output" - }, - { - "name": "info_dashes" - }, - { - "name": "info_os" - }, - { - "name": "$output += \": \"" - }, - { - "name": "info_computer" - }, - { - "name": "info_kernel" - }, - { - "name": "info_uptime" - }, - { - "name": "{|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" - }, - { - "name": "$PSItem.Days -eq 1" - }, - { - "name": "}|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" - }, - { - "name": "$PSItem.Days -gt 1" - }, - { - "name": "$PSItem.Hours -eq 1" - }, - { - "name": "$PSItem.Hours -gt 1" - }, - { - "name": "$PSItem.Minutes -eq 1" - }, - { - "name": "$PSItem.Minutes -gt 1" - }, - { - "name": "info_resolution" - }, - { - "name": "info_cpu" - }, - { - "name": "info_gpu" - }, - { - "name": "($_.Description -ne \"Microsoft Basic Render Driver\") -and ($GPUs -notcontains $_.Description)" - }, - { - "name": "$GPUs.Add($_.Description) | Out-Null" - }, - { - "name": "info_memory" - }, - { - "name": "get_level_info" - }, - { - "name": "info_disk" - }, - { - "name": "to_units" - }, - { - "name": "info_battery" - }, - { - "name": "info_blank" - }, - { - "name": "$diff = $img.Length - $writtenLines" - }, - { - "name": "$img -and $diff -gt 0" - }, - { - "name": "Write-Output \"$e[${diff}B\"" - }, - { - "name": "Write-Output \"$e[?25h\"" - }, - { - "name": "}|" - } - ] - }, - "profiles": [ - { - "type": "evented", - "name": "pwsh (5452) Time=2189.6099ms", - "unit": "milliseconds", - "startValue": 0, - "endValue": 2189.6099, - "events": [ - { - "at": 0.0, - "frame": 0, - "type": "O" - }, - { - "at": 0.0221, - "frame": 0, - "type": "C" - }, - { - "at": 0.0221, - "frame": 1, - "type": "O" - }, - { - "at": 179.2703, - "frame": 1, - "type": "C" - }, - { - "at": 179.2703, - "frame": 1, - "type": "O" - }, - { - "at": 182.8513, - "frame": 1, - "type": "C" - }, - { - "at": 182.8513, - "frame": 1, - "type": "O" - }, - { - "at": 183.5431, - "frame": 2, - "type": "O" - }, - { - "at": 183.5974, - "frame": 2, - "type": "C" - }, - { - "at": 183.5974, - "frame": 3, - "type": "O" - }, - { - "at": 183.6203, - "frame": 3, - "type": "C" - }, - { - "at": 183.6203, - "frame": 4, - "type": "O" - }, - { - "at": 183.648, - "frame": 4, - "type": "C" - }, - { - "at": 183.648, - "frame": 5, - "type": "O" - }, - { - "at": 185.305, - "frame": 5, - "type": "C" - }, - { - "at": 185.305, - "frame": 6, - "type": "O" - }, - { - "at": 185.5597, - "frame": 6, - "type": "C" - }, - { - "at": 185.5597, - "frame": 7, - "type": "O" - }, - { - "at": 185.7318, - "frame": 7, - "type": "C" - }, - { - "at": 185.7318, - "frame": 8, - "type": "O" - }, - { - "at": 185.7532, - "frame": 8, - "type": "C" - }, - { - "at": 185.7532, - "frame": 9, - "type": "O" - }, - { - "at": 257.5931, - "frame": 9, - "type": "C" - }, - { - "at": 257.5931, - "frame": 10, - "type": "O" - }, - { - "at": 267.5363, - "frame": 11, - "type": "O" - }, - { - "at": 267.6121, - "frame": 11, - "type": "C" - }, - { - "at": 267.6121, - "frame": 12, - "type": "O" - }, - { - "at": 267.6354, - "frame": 12, - "type": "C" - }, - { - "at": 267.6354, - "frame": 13, - "type": "O" - }, - { - "at": 267.6559, - "frame": 13, - "type": "C" - }, - { - "at": 267.6559, - "frame": 14, - "type": "O" - }, - { - "at": 267.6655, - "frame": 14, - "type": "C" - }, - { - "at": 267.6655, - "frame": 15, - "type": "O" - }, - { - "at": 267.6732, - "frame": 15, - "type": "C" - }, - { - "at": 267.6732, - "frame": 16, - "type": "O" - }, - { - "at": 267.6817, - "frame": 16, - "type": "C" - }, - { - "at": 267.6817, - "frame": 17, - "type": "O" - }, - { - "at": 267.6892, - "frame": 17, - "type": "C" - }, - { - "at": 267.6892, - "frame": 18, - "type": "O" - }, - { - "at": 267.6965, - "frame": 18, - "type": "C" - }, - { - "at": 267.6965, - "frame": 19, - "type": "O" - }, - { - "at": 267.7039, - "frame": 19, - "type": "C" - }, - { - "at": 267.7039, - "frame": 20, - "type": "O" - }, - { - "at": 267.7108, - "frame": 20, - "type": "C" - }, - { - "at": 267.7108, - "frame": 21, - "type": "O" - }, - { - "at": 267.7175, - "frame": 21, - "type": "C" - }, - { - "at": 267.7175, - "frame": 22, - "type": "O" - }, - { - "at": 267.7251, - "frame": 22, - "type": "C" - }, - { - "at": 267.7251, - "frame": 23, - "type": "O" - }, - { - "at": 267.7322, - "frame": 23, - "type": "C" - }, - { - "at": 267.7322, - "frame": 24, - "type": "O" - }, - { - "at": 267.7389, - "frame": 24, - "type": "C" - }, - { - "at": 267.7389, - "frame": 25, - "type": "O" - }, - { - "at": 267.7459, - "frame": 25, - "type": "C" - }, - { - "at": 267.7459, - "frame": 26, - "type": "O" - }, - { - "at": 267.7529, - "frame": 26, - "type": "C" - }, - { - "at": 267.7529, - "frame": 27, - "type": "O" - }, - { - "at": 267.76, - "frame": 27, - "type": "C" - }, - { - "at": 267.76, - "frame": 28, - "type": "O" - }, - { - "at": 267.7682, - "frame": 28, - "type": "C" - }, - { - "at": 267.7682, - "frame": 29, - "type": "O" - }, - { - "at": 267.778, - "frame": 29, - "type": "C" - }, - { - "at": 267.778, - "frame": 30, - "type": "O" - }, - { - "at": 267.7856, - "frame": 30, - "type": "C" - }, - { - "at": 267.7856, - "frame": 31, - "type": "O" - }, - { - "at": 267.7924, - "frame": 31, - "type": "C" - }, - { - "at": 267.7924, - "frame": 32, - "type": "O" - }, - { - "at": 267.7996, - "frame": 32, - "type": "C" - }, - { - "at": 267.7996, - "frame": 33, - "type": "O" - }, - { - "at": 267.8065, - "frame": 33, - "type": "C" - }, - { - "at": 267.8065, - "frame": 34, - "type": "O" - }, - { - "at": 267.8135, - "frame": 34, - "type": "C" - }, - { - "at": 267.8135, - "frame": 35, - "type": "O" - }, - { - "at": 267.8203, - "frame": 35, - "type": "C" - }, - { - "at": 267.8203, - "frame": 36, - "type": "O" - }, - { - "at": 267.8271, - "frame": 36, - "type": "C" - }, - { - "at": 267.8271, - "frame": 37, - "type": "O" - }, - { - "at": 267.849, - "frame": 37, - "type": "C" - }, - { - "at": 267.849, - "frame": 38, - "type": "O" - }, - { - "at": 267.8627, - "frame": 38, - "type": "C" - }, - { - "at": 267.8627, - "frame": 14, - "type": "O" - }, - { - "at": 267.871, - "frame": 14, - "type": "C" - }, - { - "at": 267.871, - "frame": 15, - "type": "O" - }, - { - "at": 267.8782, - "frame": 15, - "type": "C" - }, - { - "at": 267.8782, - "frame": 16, - "type": "O" - }, - { - "at": 267.8852, - "frame": 16, - "type": "C" - }, - { - "at": 267.8852, - "frame": 17, - "type": "O" - }, - { - "at": 267.8922, - "frame": 17, - "type": "C" - }, - { - "at": 267.8922, - "frame": 18, - "type": "O" - }, - { - "at": 267.8997, - "frame": 18, - "type": "C" - }, - { - "at": 267.8997, - "frame": 21, - "type": "O" - }, - { - "at": 267.9068, - "frame": 21, - "type": "C" - }, - { - "at": 267.9068, - "frame": 25, - "type": "O" - }, - { - "at": 267.9136, - "frame": 25, - "type": "C" - }, - { - "at": 267.9136, - "frame": 28, - "type": "O" - }, - { - "at": 267.9207, - "frame": 28, - "type": "C" - }, - { - "at": 267.9207, - "frame": 29, - "type": "O" - }, - { - "at": 267.9281, - "frame": 29, - "type": "C" - }, - { - "at": 267.9281, - "frame": 39, - "type": "O" - }, - { - "at": 267.937, - "frame": 39, - "type": "C" - }, - { - "at": 267.937, - "frame": 31, - "type": "O" - }, - { - "at": 267.9506, - "frame": 31, - "type": "C" - }, - { - "at": 267.9506, - "frame": 40, - "type": "O" - }, - { - "at": 267.9579, - "frame": 40, - "type": "C" - }, - { - "at": 267.9579, - "frame": 36, - "type": "O" - }, - { - "at": 268.0205, - "frame": 36, - "type": "C" - }, - { - "at": 268.0205, - "frame": 41, - "type": "O" - }, - { - "at": 269.7211, - "frame": 41, - "type": "C" - }, - { - "at": 269.7211, - "frame": 10, - "type": "C" - }, - { - "at": 269.7211, - "frame": 42, - "type": "O" - }, - { - "at": 278.3916, - "frame": 42, - "type": "C" - }, - { - "at": 278.3916, - "frame": 43, - "type": "O" - }, - { - "at": 278.4373, - "frame": 43, - "type": "C" - }, - { - "at": 278.4373, - "frame": 44, - "type": "O" - }, - { - "at": 279.4438, - "frame": 44, - "type": "C" - }, - { - "at": 279.4438, - "frame": 45, - "type": "O" - }, - { - "at": 279.4765, - "frame": 45, - "type": "C" - }, - { - "at": 279.4765, - "frame": 46, - "type": "O" - }, - { - "at": 382.9326, - "frame": 46, - "type": "C" - }, - { - "at": 382.9326, - "frame": 47, - "type": "O" - }, - { - "at": 446.784, - "frame": 47, - "type": "C" - }, - { - "at": 446.784, - "frame": 48, - "type": "O" - }, - { - "at": 446.8755, - "frame": 48, - "type": "C" - }, - { - "at": 446.8755, - "frame": 49, - "type": "O" - }, - { - "at": 446.9092, - "frame": 49, - "type": "C" - }, - { - "at": 446.9092, - "frame": 50, - "type": "O" - }, - { - "at": 446.9472, - "frame": 50, - "type": "C" - }, - { - "at": 446.9472, - "frame": 51, - "type": "O" - }, - { - "at": 447.0131, - "frame": 51, - "type": "C" - }, - { - "at": 447.0131, - "frame": 52, - "type": "O" - }, - { - "at": 447.0333, - "frame": 52, - "type": "C" - }, - { - "at": 447.0333, - "frame": 53, - "type": "O" - }, - { - "at": 448.6094, - "frame": 53, - "type": "C" - }, - { - "at": 448.6094, - "frame": 54, - "type": "O" - }, - { - "at": 450.723, - "frame": 54, - "type": "C" - }, - { - "at": 450.723, - "frame": 55, - "type": "O" - }, - { - "at": 450.7875, - "frame": 55, - "type": "C" - }, - { - "at": 450.7875, - "frame": 56, - "type": "O" - }, - { - "at": 450.8107, - "frame": 56, - "type": "C" - }, - { - "at": 450.8107, - "frame": 57, - "type": "O" - }, - { - "at": 457.6885, - "frame": 57, - "type": "C" - }, - { - "at": 457.6885, - "frame": 58, - "type": "O" - }, - { - "at": 457.747, - "frame": 58, - "type": "C" - }, - { - "at": 457.747, - "frame": 59, - "type": "O" - }, - { - "at": 459.8646, - "frame": 59, - "type": "C" - }, - { - "at": 459.8646, - "frame": 60, - "type": "O" - }, - { - "at": 459.9041, - "frame": 60, - "type": "C" - }, - { - "at": 459.9041, - "frame": 61, - "type": "O" - }, - { - "at": 459.9317, - "frame": 61, - "type": "C" - }, - { - "at": 459.9317, - "frame": 62, - "type": "O" - }, - { - "at": 461.0492, - "frame": 62, - "type": "C" - }, - { - "at": 461.0492, - "frame": 62, - "type": "O" - }, - { - "at": 461.0986, - "frame": 62, - "type": "C" - }, - { - "at": 461.0986, - "frame": 62, - "type": "O" - }, - { - "at": 461.1164, - "frame": 62, - "type": "C" - }, - { - "at": 461.1164, - "frame": 62, - "type": "O" - }, - { - "at": 461.1347, - "frame": 62, - "type": "C" - }, - { - "at": 461.1347, - "frame": 62, - "type": "O" - }, - { - "at": 461.1516, - "frame": 62, - "type": "C" - }, - { - "at": 461.1516, - "frame": 62, - "type": "O" - }, - { - "at": 461.1665, - "frame": 62, - "type": "C" - }, - { - "at": 461.1665, - "frame": 62, - "type": "O" - }, - { - "at": 461.1811, - "frame": 62, - "type": "C" - }, - { - "at": 461.1811, - "frame": 63, - "type": "O" - }, - { - "at": 461.1956, - "frame": 63, - "type": "C" - }, - { - "at": 461.1956, - "frame": 62, - "type": "O" - }, - { - "at": 461.2118, - "frame": 62, - "type": "C" - }, - { - "at": 461.2118, - "frame": 62, - "type": "O" - }, - { - "at": 461.2254, - "frame": 62, - "type": "C" - }, - { - "at": 461.2254, - "frame": 62, - "type": "O" - }, - { - "at": 461.2393, - "frame": 62, - "type": "C" - }, - { - "at": 461.2393, - "frame": 62, - "type": "O" - }, - { - "at": 461.253, - "frame": 62, - "type": "C" - }, - { - "at": 461.253, - "frame": 62, - "type": "O" - }, - { - "at": 461.2688, - "frame": 62, - "type": "C" - }, - { - "at": 461.2688, - "frame": 62, - "type": "O" - }, - { - "at": 461.2833, - "frame": 62, - "type": "C" - }, - { - "at": 461.2833, - "frame": 62, - "type": "O" - }, - { - "at": 461.4314, - "frame": 62, - "type": "C" - }, - { - "at": 461.4314, - "frame": 64, - "type": "O" - }, - { - "at": 461.5656, - "frame": 64, - "type": "C" - }, - { - "at": 461.5656, - "frame": 65, - "type": "O" - }, - { - "at": 465.0729, - "frame": 65, - "type": "C" - }, - { - "at": 465.0729, - "frame": 64, - "type": "O" - }, - { - "at": 465.1156, - "frame": 64, - "type": "C" - }, - { - "at": 465.1156, - "frame": 66, - "type": "O" - }, - { - "at": 465.1409, - "frame": 66, - "type": "C" - }, - { - "at": 465.1409, - "frame": 67, - "type": "O" - }, - { - "at": 465.1714, - "frame": 67, - "type": "C" - }, - { - "at": 465.1714, - "frame": 68, - "type": "O" - }, - { - "at": 465.4359, - "frame": 68, - "type": "C" - }, - { - "at": 465.4359, - "frame": 67, - "type": "O" - }, - { - "at": 465.4586, - "frame": 67, - "type": "C" - }, - { - "at": 465.4586, - "frame": 68, - "type": "O" - }, - { - "at": 465.6281, - "frame": 68, - "type": "C" - }, - { - "at": 465.6281, - "frame": 67, - "type": "O" - }, - { - "at": 465.6482, - "frame": 67, - "type": "C" - }, - { - "at": 465.6482, - "frame": 68, - "type": "O" - }, - { - "at": 465.7993, - "frame": 68, - "type": "C" - }, - { - "at": 465.7993, - "frame": 67, - "type": "O" - }, - { - "at": 465.8182, - "frame": 67, - "type": "C" - }, - { - "at": 465.8182, - "frame": 68, - "type": "O" - }, - { - "at": 465.961, - "frame": 68, - "type": "C" - }, - { - "at": 465.961, - "frame": 67, - "type": "O" - }, - { - "at": 465.9793, - "frame": 67, - "type": "C" - }, - { - "at": 465.9793, - "frame": 68, - "type": "O" - }, - { - "at": 466.1183, - "frame": 68, - "type": "C" - }, - { - "at": 466.1183, - "frame": 67, - "type": "O" - }, - { - "at": 466.1364, - "frame": 67, - "type": "C" - }, - { - "at": 466.1364, - "frame": 68, - "type": "O" - }, - { - "at": 466.2755, - "frame": 68, - "type": "C" - }, - { - "at": 466.2755, - "frame": 67, - "type": "O" - }, - { - "at": 466.294, - "frame": 67, - "type": "C" - }, - { - "at": 466.294, - "frame": 68, - "type": "O" - }, - { - "at": 466.4303, - "frame": 68, - "type": "C" - }, - { - "at": 466.4303, - "frame": 67, - "type": "O" - }, - { - "at": 466.4484, - "frame": 67, - "type": "C" - }, - { - "at": 466.4484, - "frame": 68, - "type": "O" - }, - { - "at": 466.5865, - "frame": 68, - "type": "C" - }, - { - "at": 466.5865, - "frame": 67, - "type": "O" - }, - { - "at": 466.6042, - "frame": 67, - "type": "C" - }, - { - "at": 466.6042, - "frame": 68, - "type": "O" - }, - { - "at": 466.7383, - "frame": 68, - "type": "C" - }, - { - "at": 466.7383, - "frame": 67, - "type": "O" - }, - { - "at": 466.7558, - "frame": 67, - "type": "C" - }, - { - "at": 466.7558, - "frame": 68, - "type": "O" - }, - { - "at": 466.8921, - "frame": 68, - "type": "C" - }, - { - "at": 466.8921, - "frame": 67, - "type": "O" - }, - { - "at": 466.9104, - "frame": 67, - "type": "C" - }, - { - "at": 466.9104, - "frame": 68, - "type": "O" - }, - { - "at": 467.0467, - "frame": 68, - "type": "C" - }, - { - "at": 467.0467, - "frame": 67, - "type": "O" - }, - { - "at": 467.0643, - "frame": 67, - "type": "C" - }, - { - "at": 467.0643, - "frame": 68, - "type": "O" - }, - { - "at": 467.1969, - "frame": 68, - "type": "C" - }, - { - "at": 467.1969, - "frame": 67, - "type": "O" - }, - { - "at": 467.2144, - "frame": 67, - "type": "C" - }, - { - "at": 467.2144, - "frame": 68, - "type": "O" - }, - { - "at": 467.3467, - "frame": 68, - "type": "C" - }, - { - "at": 467.3467, - "frame": 67, - "type": "O" - }, - { - "at": 467.364, - "frame": 67, - "type": "C" - }, - { - "at": 467.364, - "frame": 68, - "type": "O" - }, - { - "at": 467.495, - "frame": 68, - "type": "C" - }, - { - "at": 467.495, - "frame": 67, - "type": "O" - }, - { - "at": 467.5124, - "frame": 67, - "type": "C" - }, - { - "at": 467.5124, - "frame": 68, - "type": "O" - }, - { - "at": 467.6461, - "frame": 68, - "type": "C" - }, - { - "at": 467.6461, - "frame": 67, - "type": "O" - }, - { - "at": 467.6669, - "frame": 67, - "type": "C" - }, - { - "at": 467.6669, - "frame": 69, - "type": "O" - }, - { - "at": 467.6882, - "frame": 69, - "type": "C" - }, - { - "at": 467.6882, - "frame": 70, - "type": "O" - }, - { - "at": 467.7015, - "frame": 70, - "type": "C" - }, - { - "at": 467.7015, - "frame": 71, - "type": "O" - }, - { - "at": 474.91, - "frame": 71, - "type": "C" - }, - { - "at": 474.91, - "frame": 72, - "type": "O" - }, - { - "at": 477.0457, - "frame": 72, - "type": "C" - }, - { - "at": 477.0457, - "frame": 73, - "type": "O" - }, - { - "at": 480.7915, - "frame": 73, - "type": "C" - }, - { - "at": 480.7915, - "frame": 74, - "type": "O" - }, - { - "at": 480.8406, - "frame": 74, - "type": "C" - }, - { - "at": 480.8406, - "frame": 75, - "type": "O" - }, - { - "at": 484.4257, - "frame": 75, - "type": "C" - }, - { - "at": 484.4257, - "frame": 76, - "type": "O" - }, - { - "at": 484.4574, - "frame": 76, - "type": "C" - }, - { - "at": 484.4574, - "frame": 77, - "type": "O" - }, - { - "at": 484.4939, - "frame": 77, - "type": "C" - }, - { - "at": 484.4939, - "frame": 78, - "type": "O" - }, - { - "at": 488.1763, - "frame": 78, - "type": "C" - }, - { - "at": 488.1763, - "frame": 79, - "type": "O" - }, - { - "at": 489.385, - "frame": 80, - "type": "O" - }, - { - "at": 489.4002, - "frame": 80, - "type": "C" - }, - { - "at": 489.4002, - "frame": 80, - "type": "O" - }, - { - "at": 489.8993, - "frame": 80, - "type": "C" - }, - { - "at": 489.8993, - "frame": 80, - "type": "O" - }, - { - "at": 489.9798, - "frame": 80, - "type": "C" - }, - { - "at": 489.9798, - "frame": 81, - "type": "O" - }, - { - "at": 491.5646, - "frame": 81, - "type": "C" - }, - { - "at": 491.5646, - "frame": 79, - "type": "C" - }, - { - "at": 491.5646, - "frame": 82, - "type": "O" - }, - { - "at": 491.5988, - "frame": 82, - "type": "C" - }, - { - "at": 491.5988, - "frame": 83, - "type": "O" - }, - { - "at": 492.6357, - "frame": 83, - "type": "C" - }, - { - "at": 492.6357, - "frame": 84, - "type": "O" - }, - { - "at": 492.664, - "frame": 84, - "type": "C" - }, - { - "at": 492.664, - "frame": 67, - "type": "O" - }, - { - "at": 492.6841, - "frame": 67, - "type": "C" - }, - { - "at": 492.6841, - "frame": 85, - "type": "O" - }, - { - "at": 492.7161, - "frame": 85, - "type": "C" - }, - { - "at": 492.7161, - "frame": 86, - "type": "O" - }, - { - "at": 496.4843, - "frame": 86, - "type": "C" - }, - { - "at": 496.4843, - "frame": 87, - "type": "O" - }, - { - "at": 496.5189, - "frame": 87, - "type": "C" - }, - { - "at": 496.5189, - "frame": 88, - "type": "O" - }, - { - "at": 496.5393, - "frame": 88, - "type": "C" - }, - { - "at": 496.5393, - "frame": 89, - "type": "O" - }, - { - "at": 497.7392, - "frame": 89, - "type": "C" - }, - { - "at": 497.7392, - "frame": 66, - "type": "O" - }, - { - "at": 497.7727, - "frame": 66, - "type": "C" - }, - { - "at": 497.7727, - "frame": 64, - "type": "O" - }, - { - "at": 497.7923, - "frame": 64, - "type": "C" - }, - { - "at": 497.7923, - "frame": 90, - "type": "O" - }, - { - "at": 497.8228, - "frame": 90, - "type": "C" - }, - { - "at": 497.8228, - "frame": 91, - "type": "O" - }, - { - "at": 497.8937, - "frame": 91, - "type": "C" - }, - { - "at": 497.8937, - "frame": 92, - "type": "O" - }, - { - "at": 498.9611, - "frame": 92, - "type": "C" - }, - { - "at": 498.9611, - "frame": 93, - "type": "O" - }, - { - "at": 498.9883, - "frame": 93, - "type": "C" - }, - { - "at": 498.9883, - "frame": 94, - "type": "O" - }, - { - "at": 504.8885, - "frame": 95, - "type": "O" - }, - { - "at": 504.9075, - "frame": 95, - "type": "C" - }, - { - "at": 504.9075, - "frame": 95, - "type": "O" - }, - { - "at": 512.4187, - "frame": 95, - "type": "C" - }, - { - "at": 512.4187, - "frame": 95, - "type": "O" - }, - { - "at": 513.734, - "frame": 95, - "type": "C" - }, - { - "at": 513.734, - "frame": 95, - "type": "O" - }, - { - "at": 513.7735, - "frame": 95, - "type": "C" - }, - { - "at": 513.7735, - "frame": 95, - "type": "O" - }, - { - "at": 513.8396, - "frame": 95, - "type": "C" - }, - { - "at": 513.8396, - "frame": 96, - "type": "O" - }, - { - "at": 514.0731, - "frame": 96, - "type": "C" - }, - { - "at": 514.0731, - "frame": 94, - "type": "C" - }, - { - "at": 514.0731, - "frame": 67, - "type": "O" - }, - { - "at": 514.0972, - "frame": 67, - "type": "C" - }, - { - "at": 514.0972, - "frame": 77, - "type": "O" - }, - { - "at": 514.125, - "frame": 77, - "type": "C" - }, - { - "at": 514.125, - "frame": 78, - "type": "O" - }, - { - "at": 514.4981, - "frame": 78, - "type": "C" - }, - { - "at": 514.4981, - "frame": 79, - "type": "O" - }, - { - "at": 515.5812, - "frame": 97, - "type": "O" - }, - { - "at": 515.5987, - "frame": 97, - "type": "C" - }, - { - "at": 515.5987, - "frame": 97, - "type": "O" - }, - { - "at": 517.868, - "frame": 97, - "type": "C" - }, - { - "at": 517.868, - "frame": 97, - "type": "O" - }, - { - "at": 519.5211, - "frame": 97, - "type": "C" - }, - { - "at": 519.5211, - "frame": 97, - "type": "O" - }, - { - "at": 519.6003, - "frame": 97, - "type": "C" - }, - { - "at": 519.6003, - "frame": 81, - "type": "O" - }, - { - "at": 519.6163, - "frame": 81, - "type": "C" - }, - { - "at": 519.6163, - "frame": 79, - "type": "C" - }, - { - "at": 519.6163, - "frame": 82, - "type": "O" - }, - { - "at": 519.6293, - "frame": 82, - "type": "C" - }, - { - "at": 519.6293, - "frame": 83, - "type": "O" - }, - { - "at": 519.6487, - "frame": 83, - "type": "C" - }, - { - "at": 519.6487, - "frame": 84, - "type": "O" - }, - { - "at": 519.6649, - "frame": 84, - "type": "C" - }, - { - "at": 519.6649, - "frame": 67, - "type": "O" - }, - { - "at": 519.6803, - "frame": 67, - "type": "C" - }, - { - "at": 519.6803, - "frame": 85, - "type": "O" - }, - { - "at": 519.7102, - "frame": 85, - "type": "C" - }, - { - "at": 519.7102, - "frame": 86, - "type": "O" - }, - { - "at": 519.7448, - "frame": 86, - "type": "C" - }, - { - "at": 519.7448, - "frame": 87, - "type": "O" - }, - { - "at": 519.7604, - "frame": 87, - "type": "C" - }, - { - "at": 519.7604, - "frame": 88, - "type": "O" - }, - { - "at": 519.7752, - "frame": 88, - "type": "C" - }, - { - "at": 519.7752, - "frame": 89, - "type": "O" - }, - { - "at": 519.7957, - "frame": 89, - "type": "C" - }, - { - "at": 519.7957, - "frame": 66, - "type": "O" - }, - { - "at": 519.8093, - "frame": 66, - "type": "C" - }, - { - "at": 519.8093, - "frame": 64, - "type": "O" - }, - { - "at": 519.8204, - "frame": 64, - "type": "C" - }, - { - "at": 519.8204, - "frame": 90, - "type": "O" - }, - { - "at": 519.8343, - "frame": 90, - "type": "C" - }, - { - "at": 519.8343, - "frame": 91, - "type": "O" - }, - { - "at": 519.8612, - "frame": 91, - "type": "C" - }, - { - "at": 519.8612, - "frame": 92, - "type": "O" - }, - { - "at": 519.8758, - "frame": 92, - "type": "C" - }, - { - "at": 519.8758, - "frame": 93, - "type": "O" - }, - { - "at": 519.8874, - "frame": 93, - "type": "C" - }, - { - "at": 519.8874, - "frame": 94, - "type": "O" - }, - { - "at": 520.1446, - "frame": 95, - "type": "O" - }, - { - "at": 520.1591, - "frame": 95, - "type": "C" - }, - { - "at": 520.1591, - "frame": 95, - "type": "O" - }, - { - "at": 520.4848, - "frame": 95, - "type": "C" - }, - { - "at": 520.4848, - "frame": 95, - "type": "O" - }, - { - "at": 520.5052, - "frame": 95, - "type": "C" - }, - { - "at": 520.5052, - "frame": 95, - "type": "O" - }, - { - "at": 520.5244, - "frame": 95, - "type": "C" - }, - { - "at": 520.5244, - "frame": 95, - "type": "O" - }, - { - "at": 520.5782, - "frame": 95, - "type": "C" - }, - { - "at": 520.5782, - "frame": 96, - "type": "O" - }, - { - "at": 520.8004, - "frame": 96, - "type": "C" - }, - { - "at": 520.8004, - "frame": 94, - "type": "C" - }, - { - "at": 520.8004, - "frame": 67, - "type": "O" - }, - { - "at": 520.8235, - "frame": 67, - "type": "C" - }, - { - "at": 520.8235, - "frame": 77, - "type": "O" - }, - { - "at": 520.8474, - "frame": 77, - "type": "C" - }, - { - "at": 520.8474, - "frame": 78, - "type": "O" - }, - { - "at": 521.1781, - "frame": 78, - "type": "C" - }, - { - "at": 521.1781, - "frame": 79, - "type": "O" - }, - { - "at": 522.1686, - "frame": 98, - "type": "O" - }, - { - "at": 522.197, - "frame": 98, - "type": "C" - }, - { - "at": 522.197, - "frame": 98, - "type": "O" - }, - { - "at": 522.2208, - "frame": 98, - "type": "C" - }, - { - "at": 522.2208, - "frame": 98, - "type": "O" - }, - { - "at": 529.0451, - "frame": 98, - "type": "C" - }, - { - "at": 529.0451, - "frame": 98, - "type": "O" - }, - { - "at": 530.8034, - "frame": 98, - "type": "C" - }, - { - "at": 530.8034, - "frame": 98, - "type": "O" - }, - { - "at": 530.8779, - "frame": 98, - "type": "C" - }, - { - "at": 530.8779, - "frame": 81, - "type": "O" - }, - { - "at": 530.8944, - "frame": 81, - "type": "C" - }, - { - "at": 530.8944, - "frame": 79, - "type": "C" - }, - { - "at": 530.8944, - "frame": 82, - "type": "O" - }, - { - "at": 530.9065, - "frame": 82, - "type": "C" - }, - { - "at": 530.9065, - "frame": 83, - "type": "O" - }, - { - "at": 530.9233, - "frame": 83, - "type": "C" - }, - { - "at": 530.9233, - "frame": 84, - "type": "O" - }, - { - "at": 530.9382, - "frame": 84, - "type": "C" - }, - { - "at": 530.9382, - "frame": 67, - "type": "O" - }, - { - "at": 530.954, - "frame": 67, - "type": "C" - }, - { - "at": 530.954, - "frame": 85, - "type": "O" - }, - { - "at": 530.983, - "frame": 85, - "type": "C" - }, - { - "at": 530.983, - "frame": 86, - "type": "O" - }, - { - "at": 531.0144, - "frame": 86, - "type": "C" - }, - { - "at": 531.0144, - "frame": 87, - "type": "O" - }, - { - "at": 531.0377, - "frame": 87, - "type": "C" - }, - { - "at": 531.0377, - "frame": 99, - "type": "O" - }, - { - "at": 531.0532, - "frame": 99, - "type": "C" - }, - { - "at": 531.0532, - "frame": 88, - "type": "O" - }, - { - "at": 531.0661, - "frame": 88, - "type": "C" - }, - { - "at": 531.0661, - "frame": 89, - "type": "O" - }, - { - "at": 531.0847, - "frame": 89, - "type": "C" - }, - { - "at": 531.0847, - "frame": 66, - "type": "O" - }, - { - "at": 531.0978, - "frame": 66, - "type": "C" - }, - { - "at": 531.0978, - "frame": 64, - "type": "O" - }, - { - "at": 531.1099, - "frame": 64, - "type": "C" - }, - { - "at": 531.1099, - "frame": 90, - "type": "O" - }, - { - "at": 531.1248, - "frame": 90, - "type": "C" - }, - { - "at": 531.1248, - "frame": 91, - "type": "O" - }, - { - "at": 531.1509, - "frame": 91, - "type": "C" - }, - { - "at": 531.1509, - "frame": 92, - "type": "O" - }, - { - "at": 531.1646, - "frame": 92, - "type": "C" - }, - { - "at": 531.1646, - "frame": 93, - "type": "O" - }, - { - "at": 531.1765, - "frame": 93, - "type": "C" - }, - { - "at": 531.1765, - "frame": 94, - "type": "O" - }, - { - "at": 531.4473, - "frame": 95, - "type": "O" - }, - { - "at": 531.4619, - "frame": 95, - "type": "C" - }, - { - "at": 531.4619, - "frame": 95, - "type": "O" - }, - { - "at": 531.5391, - "frame": 95, - "type": "C" - }, - { - "at": 531.5391, - "frame": 95, - "type": "O" - }, - { - "at": 531.5566, - "frame": 95, - "type": "C" - }, - { - "at": 531.5566, - "frame": 95, - "type": "O" - }, - { - "at": 531.5733, - "frame": 95, - "type": "C" - }, - { - "at": 531.5733, - "frame": 95, - "type": "O" - }, - { - "at": 531.6185, - "frame": 95, - "type": "C" - }, - { - "at": 531.6185, - "frame": 96, - "type": "O" - }, - { - "at": 531.8219, - "frame": 96, - "type": "C" - }, - { - "at": 531.8219, - "frame": 94, - "type": "C" - }, - { - "at": 531.8219, - "frame": 67, - "type": "O" - }, - { - "at": 531.8466, - "frame": 67, - "type": "C" - }, - { - "at": 531.8466, - "frame": 77, - "type": "O" - }, - { - "at": 531.8703, - "frame": 77, - "type": "C" - }, - { - "at": 531.8703, - "frame": 78, - "type": "O" - }, - { - "at": 532.2007, - "frame": 78, - "type": "C" - }, - { - "at": 532.2007, - "frame": 79, - "type": "O" - }, - { - "at": 533.199, - "frame": 100, - "type": "O" - }, - { - "at": 533.2154, - "frame": 100, - "type": "C" - }, - { - "at": 533.2154, - "frame": 100, - "type": "O" - }, - { - "at": 553.368, - "frame": 100, - "type": "C" - }, - { - "at": 553.368, - "frame": 100, - "type": "O" - }, - { - "at": 557.5209, - "frame": 100, - "type": "C" - }, - { - "at": 557.5209, - "frame": 100, - "type": "O" - }, - { - "at": 557.6183, - "frame": 100, - "type": "C" - }, - { - "at": 557.6183, - "frame": 81, - "type": "O" - }, - { - "at": 557.6373, - "frame": 81, - "type": "C" - }, - { - "at": 557.6373, - "frame": 79, - "type": "C" - }, - { - "at": 557.6373, - "frame": 82, - "type": "O" - }, - { - "at": 557.652, - "frame": 82, - "type": "C" - }, - { - "at": 557.652, - "frame": 83, - "type": "O" - }, - { - "at": 557.6733, - "frame": 83, - "type": "C" - }, - { - "at": 557.6733, - "frame": 84, - "type": "O" - }, - { - "at": 557.6913, - "frame": 84, - "type": "C" - }, - { - "at": 557.6913, - "frame": 67, - "type": "O" - }, - { - "at": 557.7105, - "frame": 67, - "type": "C" - }, - { - "at": 557.7105, - "frame": 85, - "type": "O" - }, - { - "at": 557.7467, - "frame": 85, - "type": "C" - }, - { - "at": 557.7467, - "frame": 86, - "type": "O" - }, - { - "at": 557.7842, - "frame": 86, - "type": "C" - }, - { - "at": 557.7842, - "frame": 87, - "type": "O" - }, - { - "at": 557.8042, - "frame": 87, - "type": "C" - }, - { - "at": 557.8042, - "frame": 99, - "type": "O" - }, - { - "at": 557.82, - "frame": 99, - "type": "C" - }, - { - "at": 557.82, - "frame": 88, - "type": "O" - }, - { - "at": 557.8335, - "frame": 88, - "type": "C" - }, - { - "at": 557.8335, - "frame": 89, - "type": "O" - }, - { - "at": 557.8535, - "frame": 89, - "type": "C" - }, - { - "at": 557.8535, - "frame": 66, - "type": "O" - }, - { - "at": 557.8683, - "frame": 66, - "type": "C" - }, - { - "at": 557.8683, - "frame": 64, - "type": "O" - }, - { - "at": 557.8806, - "frame": 64, - "type": "C" - }, - { - "at": 557.8806, - "frame": 90, - "type": "O" - }, - { - "at": 557.8948, - "frame": 90, - "type": "C" - }, - { - "at": 557.8948, - "frame": 91, - "type": "O" - }, - { - "at": 557.9262, - "frame": 91, - "type": "C" - }, - { - "at": 557.9262, - "frame": 92, - "type": "O" - }, - { - "at": 557.9403, - "frame": 92, - "type": "C" - }, - { - "at": 557.9403, - "frame": 93, - "type": "O" - }, - { - "at": 557.9531, - "frame": 93, - "type": "C" - }, - { - "at": 557.9531, - "frame": 94, - "type": "O" - }, - { - "at": 558.2838, - "frame": 95, - "type": "O" - }, - { - "at": 558.2987, - "frame": 95, - "type": "C" - }, - { - "at": 558.2987, - "frame": 95, - "type": "O" - }, - { - "at": 558.3875, - "frame": 95, - "type": "C" - }, - { - "at": 558.3875, - "frame": 95, - "type": "O" - }, - { - "at": 558.4025, - "frame": 95, - "type": "C" - }, - { - "at": 558.4025, - "frame": 95, - "type": "O" - }, - { - "at": 558.4932, - "frame": 95, - "type": "C" - }, - { - "at": 558.4932, - "frame": 95, - "type": "O" - }, - { - "at": 558.5437, - "frame": 95, - "type": "C" - }, - { - "at": 558.5437, - "frame": 96, - "type": "O" - }, - { - "at": 558.7684, - "frame": 96, - "type": "C" - }, - { - "at": 558.7684, - "frame": 94, - "type": "C" - }, - { - "at": 558.7684, - "frame": 67, - "type": "O" - }, - { - "at": 558.7928, - "frame": 67, - "type": "C" - }, - { - "at": 558.7928, - "frame": 77, - "type": "O" - }, - { - "at": 558.8178, - "frame": 77, - "type": "C" - }, - { - "at": 558.8178, - "frame": 78, - "type": "O" - }, - { - "at": 559.176, - "frame": 78, - "type": "C" - }, - { - "at": 559.176, - "frame": 79, - "type": "O" - }, - { - "at": 560.5879, - "frame": 101, - "type": "O" - }, - { - "at": 560.604, - "frame": 101, - "type": "C" - }, - { - "at": 560.604, - "frame": 101, - "type": "O" - }, - { - "at": 560.6279, - "frame": 101, - "type": "C" - }, - { - "at": 560.6279, - "frame": 101, - "type": "O" - }, - { - "at": 566.1485, - "frame": 101, - "type": "C" - }, - { - "at": 566.1485, - "frame": 101, - "type": "O" - }, - { - "at": 566.2513, - "frame": 101, - "type": "C" - }, - { - "at": 566.2513, - "frame": 81, - "type": "O" - }, - { - "at": 566.2779, - "frame": 81, - "type": "C" - }, - { - "at": 566.2779, - "frame": 79, - "type": "C" - }, - { - "at": 566.2779, - "frame": 82, - "type": "O" - }, - { - "at": 566.2986, - "frame": 82, - "type": "C" - }, - { - "at": 566.2986, - "frame": 83, - "type": "O" - }, - { - "at": 566.326, - "frame": 83, - "type": "C" - }, - { - "at": 566.326, - "frame": 84, - "type": "O" - }, - { - "at": 566.3555, - "frame": 84, - "type": "C" - }, - { - "at": 566.3555, - "frame": 67, - "type": "O" - }, - { - "at": 566.3814, - "frame": 67, - "type": "C" - }, - { - "at": 566.3814, - "frame": 85, - "type": "O" - }, - { - "at": 566.4182, - "frame": 85, - "type": "C" - }, - { - "at": 566.4182, - "frame": 86, - "type": "O" - }, - { - "at": 566.4686, - "frame": 86, - "type": "C" - }, - { - "at": 566.4686, - "frame": 87, - "type": "O" - }, - { - "at": 566.5095, - "frame": 87, - "type": "C" - }, - { - "at": 566.5095, - "frame": 99, - "type": "O" - }, - { - "at": 566.534, - "frame": 99, - "type": "C" - }, - { - "at": 566.534, - "frame": 88, - "type": "O" - }, - { - "at": 566.561, - "frame": 88, - "type": "C" - }, - { - "at": 566.561, - "frame": 89, - "type": "O" - }, - { - "at": 566.5958, - "frame": 89, - "type": "C" - }, - { - "at": 566.5958, - "frame": 66, - "type": "O" - }, - { - "at": 566.62, - "frame": 66, - "type": "C" - }, - { - "at": 566.62, - "frame": 64, - "type": "O" - }, - { - "at": 566.641, - "frame": 64, - "type": "C" - }, - { - "at": 566.641, - "frame": 90, - "type": "O" - }, - { - "at": 566.6697, - "frame": 90, - "type": "C" - }, - { - "at": 566.6697, - "frame": 91, - "type": "O" - }, - { - "at": 566.7169, - "frame": 91, - "type": "C" - }, - { - "at": 566.7169, - "frame": 92, - "type": "O" - }, - { - "at": 566.7427, - "frame": 92, - "type": "C" - }, - { - "at": 566.7427, - "frame": 93, - "type": "O" - }, - { - "at": 566.7643, - "frame": 93, - "type": "C" - }, - { - "at": 566.7643, - "frame": 94, - "type": "O" - }, - { - "at": 567.1199, - "frame": 95, - "type": "O" - }, - { - "at": 567.144, - "frame": 95, - "type": "C" - }, - { - "at": 567.144, - "frame": 95, - "type": "O" - }, - { - "at": 567.2586, - "frame": 95, - "type": "C" - }, - { - "at": 567.2586, - "frame": 95, - "type": "O" - }, - { - "at": 567.2844, - "frame": 95, - "type": "C" - }, - { - "at": 567.2844, - "frame": 95, - "type": "O" - }, - { - "at": 567.3119, - "frame": 95, - "type": "C" - }, - { - "at": 567.3119, - "frame": 95, - "type": "O" - }, - { - "at": 567.3806, - "frame": 95, - "type": "C" - }, - { - "at": 567.3806, - "frame": 96, - "type": "O" - }, - { - "at": 567.6772, - "frame": 96, - "type": "C" - }, - { - "at": 567.6772, - "frame": 94, - "type": "C" - }, - { - "at": 567.6772, - "frame": 67, - "type": "O" - }, - { - "at": 567.707, - "frame": 67, - "type": "C" - }, - { - "at": 567.707, - "frame": 77, - "type": "O" - }, - { - "at": 567.7327, - "frame": 77, - "type": "C" - }, - { - "at": 567.7327, - "frame": 78, - "type": "O" - }, - { - "at": 568.1275, - "frame": 78, - "type": "C" - }, - { - "at": 568.1275, - "frame": 79, - "type": "O" - }, - { - "at": 572.262, - "frame": 102, - "type": "O" - }, - { - "at": 572.2766, - "frame": 102, - "type": "C" - }, - { - "at": 572.2766, - "frame": 102, - "type": "O" - }, - { - "at": 599.4733, - "frame": 102, - "type": "C" - }, - { - "at": 599.4733, - "frame": 102, - "type": "O" - }, - { - "at": 599.5189, - "frame": 102, - "type": "C" - }, - { - "at": 599.5189, - "frame": 102, - "type": "O" - }, - { - "at": 605.9178, - "frame": 103, - "type": "O" - }, - { - "at": 605.9341, - "frame": 103, - "type": "C" - }, - { - "at": 605.9341, - "frame": 104, - "type": "O" - }, - { - "at": 609.3346, - "frame": 104, - "type": "C" - }, - { - "at": 609.3346, - "frame": 105, - "type": "O" - }, - { - "at": 609.4027, - "frame": 105, - "type": "C" - }, - { - "at": 609.4027, - "frame": 102, - "type": "O" - }, - { - "at": 610.9727, - "frame": 103, - "type": "O" - }, - { - "at": 610.9998, - "frame": 103, - "type": "C" - }, - { - "at": 610.9998, - "frame": 102, - "type": "C" - }, - { - "at": 610.9998, - "frame": 106, - "type": "O" - }, - { - "at": 612.6221, - "frame": 106, - "type": "C" - }, - { - "at": 612.6221, - "frame": 105, - "type": "O" - }, - { - "at": 612.7001, - "frame": 105, - "type": "C" - }, - { - "at": 612.7001, - "frame": 102, - "type": "O" - }, - { - "at": 612.7315, - "frame": 102, - "type": "C" - }, - { - "at": 612.7315, - "frame": 102, - "type": "C" - }, - { - "at": 612.7315, - "frame": 102, - "type": "O" - }, - { - "at": 612.8004, - "frame": 102, - "type": "C" - }, - { - "at": 612.8004, - "frame": 102, - "type": "O" - }, - { - "at": 614.4757, - "frame": 103, - "type": "O" - }, - { - "at": 614.4977, - "frame": 103, - "type": "C" - }, - { - "at": 614.4977, - "frame": 107, - "type": "O" - }, - { - "at": 616.4629, - "frame": 107, - "type": "C" - }, - { - "at": 616.4629, - "frame": 105, - "type": "O" - }, - { - "at": 616.4986, - "frame": 105, - "type": "C" - }, - { - "at": 616.4986, - "frame": 102, - "type": "O" - }, - { - "at": 618.0666, - "frame": 103, - "type": "O" - }, - { - "at": 618.089, - "frame": 103, - "type": "C" - }, - { - "at": 618.089, - "frame": 102, - "type": "C" - }, - { - "at": 618.089, - "frame": 108, - "type": "O" - }, - { - "at": 618.154, - "frame": 108, - "type": "C" - }, - { - "at": 618.154, - "frame": 105, - "type": "O" - }, - { - "at": 618.1927, - "frame": 105, - "type": "C" - }, - { - "at": 618.1927, - "frame": 102, - "type": "O" - }, - { - "at": 618.2184, - "frame": 102, - "type": "C" - }, - { - "at": 618.2184, - "frame": 102, - "type": "C" - }, - { - "at": 618.2184, - "frame": 102, - "type": "O" - }, - { - "at": 618.2737, - "frame": 102, - "type": "C" - }, - { - "at": 618.2737, - "frame": 102, - "type": "O" - }, - { - "at": 620.0972, - "frame": 103, - "type": "O" - }, - { - "at": 620.1194, - "frame": 103, - "type": "C" - }, - { - "at": 620.1194, - "frame": 109, - "type": "O" - }, - { - "at": 622.1598, - "frame": 109, - "type": "C" - }, - { - "at": 622.1598, - "frame": 105, - "type": "O" - }, - { - "at": 622.1962, - "frame": 105, - "type": "C" - }, - { - "at": 622.1962, - "frame": 102, - "type": "O" - }, - { - "at": 623.5865, - "frame": 103, - "type": "O" - }, - { - "at": 623.6016, - "frame": 103, - "type": "C" - }, - { - "at": 623.6016, - "frame": 102, - "type": "C" - }, - { - "at": 623.6016, - "frame": 110, - "type": "O" - }, - { - "at": 623.6313, - "frame": 110, - "type": "C" - }, - { - "at": 623.6313, - "frame": 105, - "type": "O" - }, - { - "at": 623.6552, - "frame": 105, - "type": "C" - }, - { - "at": 623.6552, - "frame": 102, - "type": "O" - }, - { - "at": 623.6731, - "frame": 102, - "type": "C" - }, - { - "at": 623.6731, - "frame": 102, - "type": "C" - }, - { - "at": 623.6731, - "frame": 102, - "type": "O" - }, - { - "at": 623.705, - "frame": 102, - "type": "C" - }, - { - "at": 623.705, - "frame": 102, - "type": "O" - }, - { - "at": 623.8115, - "frame": 102, - "type": "C" - }, - { - "at": 623.8115, - "frame": 102, - "type": "O" - }, - { - "at": 623.8754, - "frame": 102, - "type": "C" - }, - { - "at": 623.8754, - "frame": 81, - "type": "O" - }, - { - "at": 623.893, - "frame": 81, - "type": "C" - }, - { - "at": 623.893, - "frame": 79, - "type": "C" - }, - { - "at": 623.893, - "frame": 82, - "type": "O" - }, - { - "at": 623.9058, - "frame": 82, - "type": "C" - }, - { - "at": 623.9058, - "frame": 83, - "type": "O" - }, - { - "at": 623.9237, - "frame": 83, - "type": "C" - }, - { - "at": 623.9237, - "frame": 84, - "type": "O" - }, - { - "at": 623.9395, - "frame": 84, - "type": "C" - }, - { - "at": 623.9395, - "frame": 67, - "type": "O" - }, - { - "at": 623.9564, - "frame": 67, - "type": "C" - }, - { - "at": 623.9564, - "frame": 85, - "type": "O" - }, - { - "at": 623.9847, - "frame": 85, - "type": "C" - }, - { - "at": 623.9847, - "frame": 86, - "type": "O" - }, - { - "at": 624.0193, - "frame": 86, - "type": "C" - }, - { - "at": 624.0193, - "frame": 87, - "type": "O" - }, - { - "at": 624.0395, - "frame": 87, - "type": "C" - }, - { - "at": 624.0395, - "frame": 99, - "type": "O" - }, - { - "at": 624.0527, - "frame": 99, - "type": "C" - }, - { - "at": 624.0527, - "frame": 88, - "type": "O" - }, - { - "at": 624.0654, - "frame": 88, - "type": "C" - }, - { - "at": 624.0654, - "frame": 89, - "type": "O" - }, - { - "at": 624.0838, - "frame": 89, - "type": "C" - }, - { - "at": 624.0838, - "frame": 66, - "type": "O" - }, - { - "at": 624.0975, - "frame": 66, - "type": "C" - }, - { - "at": 624.0975, - "frame": 64, - "type": "O" - }, - { - "at": 624.1088, - "frame": 64, - "type": "C" - }, - { - "at": 624.1088, - "frame": 90, - "type": "O" - }, - { - "at": 624.1246, - "frame": 90, - "type": "C" - }, - { - "at": 624.1246, - "frame": 91, - "type": "O" - }, - { - "at": 624.1603, - "frame": 91, - "type": "C" - }, - { - "at": 624.1603, - "frame": 92, - "type": "O" - }, - { - "at": 624.1744, - "frame": 92, - "type": "C" - }, - { - "at": 624.1744, - "frame": 93, - "type": "O" - }, - { - "at": 624.187, - "frame": 93, - "type": "C" - }, - { - "at": 624.187, - "frame": 94, - "type": "O" - }, - { - "at": 624.4908, - "frame": 95, - "type": "O" - }, - { - "at": 624.5059, - "frame": 95, - "type": "C" - }, - { - "at": 624.5059, - "frame": 95, - "type": "O" - }, - { - "at": 624.5943, - "frame": 95, - "type": "C" - }, - { - "at": 624.5943, - "frame": 95, - "type": "O" - }, - { - "at": 624.6096, - "frame": 95, - "type": "C" - }, - { - "at": 624.6096, - "frame": 95, - "type": "O" - }, - { - "at": 624.6292, - "frame": 95, - "type": "C" - }, - { - "at": 624.6292, - "frame": 95, - "type": "O" - }, - { - "at": 624.6758, - "frame": 95, - "type": "C" - }, - { - "at": 624.6758, - "frame": 96, - "type": "O" - }, - { - "at": 624.896, - "frame": 96, - "type": "C" - }, - { - "at": 624.896, - "frame": 94, - "type": "C" - }, - { - "at": 624.896, - "frame": 67, - "type": "O" - }, - { - "at": 624.9191, - "frame": 67, - "type": "C" - }, - { - "at": 624.9191, - "frame": 77, - "type": "O" - }, - { - "at": 624.9436, - "frame": 77, - "type": "C" - }, - { - "at": 624.9436, - "frame": 78, - "type": "O" - }, - { - "at": 625.3014, - "frame": 78, - "type": "C" - }, - { - "at": 625.3014, - "frame": 79, - "type": "O" - }, - { - "at": 628.0042, - "frame": 111, - "type": "O" - }, - { - "at": 628.0228, - "frame": 111, - "type": "C" - }, - { - "at": 628.0228, - "frame": 111, - "type": "O" - }, - { - "at": 634.5867, - "frame": 111, - "type": "C" - }, - { - "at": 634.5867, - "frame": 111, - "type": "O" - }, - { - "at": 634.6233, - "frame": 111, - "type": "C" - }, - { - "at": 634.6233, - "frame": 111, - "type": "O" - }, - { - "at": 660.507, - "frame": 111, - "type": "C" - }, - { - "at": 660.507, - "frame": 111, - "type": "O" - }, - { - "at": 660.5388, - "frame": 111, - "type": "C" - }, - { - "at": 660.5388, - "frame": 111, - "type": "O" - }, - { - "at": 660.5735, - "frame": 111, - "type": "C" - }, - { - "at": 660.5735, - "frame": 111, - "type": "O" - }, - { - "at": 667.0111, - "frame": 111, - "type": "C" - }, - { - "at": 667.0111, - "frame": 111, - "type": "O" - }, - { - "at": 668.5875, - "frame": 111, - "type": "C" - }, - { - "at": 668.5875, - "frame": 111, - "type": "O" - }, - { - "at": 668.6401, - "frame": 111, - "type": "C" - }, - { - "at": 668.6401, - "frame": 111, - "type": "O" - }, - { - "at": 668.6812, - "frame": 111, - "type": "C" - }, - { - "at": 668.6812, - "frame": 111, - "type": "O" - }, - { - "at": 668.7492, - "frame": 111, - "type": "C" - }, - { - "at": 668.7492, - "frame": 81, - "type": "O" - }, - { - "at": 668.7643, - "frame": 81, - "type": "C" - }, - { - "at": 668.7643, - "frame": 79, - "type": "C" - }, - { - "at": 668.7643, - "frame": 82, - "type": "O" - }, - { - "at": 668.7804, - "frame": 82, - "type": "C" - }, - { - "at": 668.7804, - "frame": 83, - "type": "O" - }, - { - "at": 668.7978, - "frame": 83, - "type": "C" - }, - { - "at": 668.7978, - "frame": 84, - "type": "O" - }, - { - "at": 668.8135, - "frame": 84, - "type": "C" - }, - { - "at": 668.8135, - "frame": 67, - "type": "O" - }, - { - "at": 668.8304, - "frame": 67, - "type": "C" - }, - { - "at": 668.8304, - "frame": 85, - "type": "O" - }, - { - "at": 668.8584, - "frame": 85, - "type": "C" - }, - { - "at": 668.8584, - "frame": 86, - "type": "O" - }, - { - "at": 668.8909, - "frame": 86, - "type": "C" - }, - { - "at": 668.8909, - "frame": 87, - "type": "O" - }, - { - "at": 668.9121, - "frame": 87, - "type": "C" - }, - { - "at": 668.9121, - "frame": 99, - "type": "O" - }, - { - "at": 668.9264, - "frame": 99, - "type": "C" - }, - { - "at": 668.9264, - "frame": 88, - "type": "O" - }, - { - "at": 668.94, - "frame": 88, - "type": "C" - }, - { - "at": 668.94, - "frame": 89, - "type": "O" - }, - { - "at": 668.96, - "frame": 89, - "type": "C" - }, - { - "at": 668.96, - "frame": 66, - "type": "O" - }, - { - "at": 668.9744, - "frame": 66, - "type": "C" - }, - { - "at": 668.9744, - "frame": 64, - "type": "O" - }, - { - "at": 668.986, - "frame": 64, - "type": "C" - }, - { - "at": 668.986, - "frame": 90, - "type": "O" - }, - { - "at": 669.0023, - "frame": 90, - "type": "C" - }, - { - "at": 669.0023, - "frame": 91, - "type": "O" - }, - { - "at": 669.0298, - "frame": 91, - "type": "C" - }, - { - "at": 669.0298, - "frame": 92, - "type": "O" - }, - { - "at": 669.0433, - "frame": 92, - "type": "C" - }, - { - "at": 669.0433, - "frame": 93, - "type": "O" - }, - { - "at": 669.0557, - "frame": 93, - "type": "C" - }, - { - "at": 669.0557, - "frame": 94, - "type": "O" - }, - { - "at": 669.3678, - "frame": 95, - "type": "O" - }, - { - "at": 669.382, - "frame": 95, - "type": "C" - }, - { - "at": 669.382, - "frame": 95, - "type": "O" - }, - { - "at": 669.4723, - "frame": 95, - "type": "C" - }, - { - "at": 669.4723, - "frame": 95, - "type": "O" - }, - { - "at": 669.488, - "frame": 95, - "type": "C" - }, - { - "at": 669.488, - "frame": 95, - "type": "O" - }, - { - "at": 669.5132, - "frame": 95, - "type": "C" - }, - { - "at": 669.5132, - "frame": 95, - "type": "O" - }, - { - "at": 669.5617, - "frame": 95, - "type": "C" - }, - { - "at": 669.5617, - "frame": 96, - "type": "O" - }, - { - "at": 669.7806, - "frame": 96, - "type": "C" - }, - { - "at": 669.7806, - "frame": 94, - "type": "C" - }, - { - "at": 669.7806, - "frame": 67, - "type": "O" - }, - { - "at": 669.8037, - "frame": 67, - "type": "C" - }, - { - "at": 669.8037, - "frame": 77, - "type": "O" - }, - { - "at": 669.8278, - "frame": 77, - "type": "C" - }, - { - "at": 669.8278, - "frame": 78, - "type": "O" - }, - { - "at": 670.1835, - "frame": 78, - "type": "C" - }, - { - "at": 670.1835, - "frame": 79, - "type": "O" - }, - { - "at": 672.8039, - "frame": 112, - "type": "O" - }, - { - "at": 672.8215, - "frame": 112, - "type": "C" - }, - { - "at": 672.8215, - "frame": 112, - "type": "O" - }, - { - "at": 707.4017, - "frame": 112, - "type": "C" - }, - { - "at": 707.4017, - "frame": 112, - "type": "O" - }, - { - "at": 707.436, - "frame": 112, - "type": "C" - }, - { - "at": 707.436, - "frame": 112, - "type": "O" - }, - { - "at": 712.7599, - "frame": 112, - "type": "C" - }, - { - "at": 712.7599, - "frame": 112, - "type": "O" - }, - { - "at": 714.82, - "frame": 112, - "type": "C" - }, - { - "at": 714.82, - "frame": 112, - "type": "O" - }, - { - "at": 726.5483, - "frame": 112, - "type": "C" - }, - { - "at": 726.5483, - "frame": 112, - "type": "O" - }, - { - "at": 728.0344, - "frame": 112, - "type": "C" - }, - { - "at": 728.0344, - "frame": 112, - "type": "O" - }, - { - "at": 728.1355, - "frame": 112, - "type": "C" - }, - { - "at": 728.1355, - "frame": 81, - "type": "O" - }, - { - "at": 728.1534, - "frame": 81, - "type": "C" - }, - { - "at": 728.1534, - "frame": 79, - "type": "C" - }, - { - "at": 728.1534, - "frame": 82, - "type": "O" - }, - { - "at": 728.167, - "frame": 82, - "type": "C" - }, - { - "at": 728.167, - "frame": 83, - "type": "O" - }, - { - "at": 728.1863, - "frame": 83, - "type": "C" - }, - { - "at": 728.1863, - "frame": 84, - "type": "O" - }, - { - "at": 728.2068, - "frame": 84, - "type": "C" - }, - { - "at": 728.2068, - "frame": 67, - "type": "O" - }, - { - "at": 728.2253, - "frame": 67, - "type": "C" - }, - { - "at": 728.2253, - "frame": 85, - "type": "O" - }, - { - "at": 728.2605, - "frame": 85, - "type": "C" - }, - { - "at": 728.2605, - "frame": 86, - "type": "O" - }, - { - "at": 728.2973, - "frame": 86, - "type": "C" - }, - { - "at": 728.2973, - "frame": 87, - "type": "O" - }, - { - "at": 728.3179, - "frame": 87, - "type": "C" - }, - { - "at": 728.3179, - "frame": 99, - "type": "O" - }, - { - "at": 728.3401, - "frame": 99, - "type": "C" - }, - { - "at": 728.3401, - "frame": 88, - "type": "O" - }, - { - "at": 728.3559, - "frame": 88, - "type": "C" - }, - { - "at": 728.3559, - "frame": 89, - "type": "O" - }, - { - "at": 728.3757, - "frame": 89, - "type": "C" - }, - { - "at": 728.3757, - "frame": 66, - "type": "O" - }, - { - "at": 728.3911, - "frame": 66, - "type": "C" - }, - { - "at": 728.3911, - "frame": 64, - "type": "O" - }, - { - "at": 728.4037, - "frame": 64, - "type": "C" - }, - { - "at": 728.4037, - "frame": 90, - "type": "O" - }, - { - "at": 728.4177, - "frame": 90, - "type": "C" - }, - { - "at": 728.4177, - "frame": 91, - "type": "O" - }, - { - "at": 728.444, - "frame": 91, - "type": "C" - }, - { - "at": 728.444, - "frame": 92, - "type": "O" - }, - { - "at": 728.4594, - "frame": 92, - "type": "C" - }, - { - "at": 728.4594, - "frame": 93, - "type": "O" - }, - { - "at": 728.4725, - "frame": 93, - "type": "C" - }, - { - "at": 728.4725, - "frame": 94, - "type": "O" - }, - { - "at": 728.8416, - "frame": 95, - "type": "O" - }, - { - "at": 728.8568, - "frame": 95, - "type": "C" - }, - { - "at": 728.8568, - "frame": 95, - "type": "O" - }, - { - "at": 728.953, - "frame": 95, - "type": "C" - }, - { - "at": 728.953, - "frame": 95, - "type": "O" - }, - { - "at": 728.9681, - "frame": 95, - "type": "C" - }, - { - "at": 728.9681, - "frame": 95, - "type": "O" - }, - { - "at": 728.9857, - "frame": 95, - "type": "C" - }, - { - "at": 728.9857, - "frame": 95, - "type": "O" - }, - { - "at": 729.0335, - "frame": 95, - "type": "C" - }, - { - "at": 729.0335, - "frame": 96, - "type": "O" - }, - { - "at": 729.2546, - "frame": 96, - "type": "C" - }, - { - "at": 729.2546, - "frame": 94, - "type": "C" - }, - { - "at": 729.2546, - "frame": 67, - "type": "O" - }, - { - "at": 729.2771, - "frame": 67, - "type": "C" - }, - { - "at": 729.2771, - "frame": 77, - "type": "O" - }, - { - "at": 729.3015, - "frame": 77, - "type": "C" - }, - { - "at": 729.3015, - "frame": 78, - "type": "O" - }, - { - "at": 729.671, - "frame": 78, - "type": "C" - }, - { - "at": 729.671, - "frame": 79, - "type": "O" - }, - { - "at": 731.2084, - "frame": 113, - "type": "O" - }, - { - "at": 731.2271, - "frame": 113, - "type": "C" - }, - { - "at": 731.2271, - "frame": 113, - "type": "O" - }, - { - "at": 731.8245, - "frame": 113, - "type": "C" - }, - { - "at": 731.8245, - "frame": 113, - "type": "O" - }, - { - "at": 731.8725, - "frame": 113, - "type": "C" - }, - { - "at": 731.8725, - "frame": 113, - "type": "O" - }, - { - "at": 751.1524, - "frame": 103, - "type": "O" - }, - { - "at": 751.1775, - "frame": 103, - "type": "C" - }, - { - "at": 751.1775, - "frame": 114, - "type": "O" - }, - { - "at": 754.5445, - "frame": 114, - "type": "C" - }, - { - "at": 754.5445, - "frame": 115, - "type": "O" - }, - { - "at": 757.9065, - "frame": 115, - "type": "C" - }, - { - "at": 757.9065, - "frame": 105, - "type": "O" - }, - { - "at": 759.5661, - "frame": 105, - "type": "C" - }, - { - "at": 759.5661, - "frame": 103, - "type": "O" - }, - { - "at": 759.5812, - "frame": 103, - "type": "C" - }, - { - "at": 759.5812, - "frame": 114, - "type": "O" - }, - { - "at": 761.43, - "frame": 114, - "type": "C" - }, - { - "at": 761.43, - "frame": 105, - "type": "O" - }, - { - "at": 762.6295, - "frame": 105, - "type": "C" - }, - { - "at": 762.6295, - "frame": 103, - "type": "O" - }, - { - "at": 762.6427, - "frame": 103, - "type": "C" - }, - { - "at": 762.6427, - "frame": 114, - "type": "O" - }, - { - "at": 762.6788, - "frame": 114, - "type": "C" - }, - { - "at": 762.6788, - "frame": 115, - "type": "O" - }, - { - "at": 762.7432, - "frame": 115, - "type": "C" - }, - { - "at": 762.7432, - "frame": 105, - "type": "O" - }, - { - "at": 763.8622, - "frame": 105, - "type": "C" - }, - { - "at": 763.8622, - "frame": 103, - "type": "O" - }, - { - "at": 763.8763, - "frame": 103, - "type": "C" - }, - { - "at": 763.8763, - "frame": 114, - "type": "O" - }, - { - "at": 763.9131, - "frame": 114, - "type": "C" - }, - { - "at": 763.9131, - "frame": 105, - "type": "O" - }, - { - "at": 765.3304, - "frame": 105, - "type": "C" - }, - { - "at": 765.3304, - "frame": 103, - "type": "O" - }, - { - "at": 765.3508, - "frame": 103, - "type": "C" - }, - { - "at": 765.3508, - "frame": 114, - "type": "O" - }, - { - "at": 765.402, - "frame": 114, - "type": "C" - }, - { - "at": 765.402, - "frame": 105, - "type": "O" - }, - { - "at": 767.284, - "frame": 105, - "type": "C" - }, - { - "at": 767.284, - "frame": 103, - "type": "O" - }, - { - "at": 767.3043, - "frame": 103, - "type": "C" - }, - { - "at": 767.3043, - "frame": 114, - "type": "O" - }, - { - "at": 767.3632, - "frame": 114, - "type": "C" - }, - { - "at": 767.3632, - "frame": 105, - "type": "O" - }, - { - "at": 768.5229, - "frame": 105, - "type": "C" - }, - { - "at": 768.5229, - "frame": 103, - "type": "O" - }, - { - "at": 768.5349, - "frame": 103, - "type": "C" - }, - { - "at": 768.5349, - "frame": 114, - "type": "O" - }, - { - "at": 768.5559, - "frame": 114, - "type": "C" - }, - { - "at": 768.5559, - "frame": 105, - "type": "O" - }, - { - "at": 769.6344, - "frame": 105, - "type": "C" - }, - { - "at": 769.6344, - "frame": 103, - "type": "O" - }, - { - "at": 769.6542, - "frame": 103, - "type": "C" - }, - { - "at": 769.6542, - "frame": 114, - "type": "O" - }, - { - "at": 769.6734, - "frame": 114, - "type": "C" - }, - { - "at": 769.6734, - "frame": 105, - "type": "O" - }, - { - "at": 770.7303, - "frame": 105, - "type": "C" - }, - { - "at": 770.7303, - "frame": 103, - "type": "O" - }, - { - "at": 770.7416, - "frame": 103, - "type": "C" - }, - { - "at": 770.7416, - "frame": 114, - "type": "O" - }, - { - "at": 770.7753, - "frame": 114, - "type": "C" - }, - { - "at": 770.7753, - "frame": 105, - "type": "O" - }, - { - "at": 771.8327, - "frame": 105, - "type": "C" - }, - { - "at": 771.8327, - "frame": 103, - "type": "O" - }, - { - "at": 771.8459, - "frame": 103, - "type": "C" - }, - { - "at": 771.8459, - "frame": 114, - "type": "O" - }, - { - "at": 771.877, - "frame": 114, - "type": "C" - }, - { - "at": 771.877, - "frame": 105, - "type": "O" - }, - { - "at": 771.9966, - "frame": 105, - "type": "C" - }, - { - "at": 771.9966, - "frame": 113, - "type": "O" - }, - { - "at": 772.036, - "frame": 113, - "type": "C" - }, - { - "at": 772.036, - "frame": 113, - "type": "C" - }, - { - "at": 772.036, - "frame": 113, - "type": "O" - }, - { - "at": 772.0545, - "frame": 113, - "type": "C" - }, - { - "at": 772.0545, - "frame": 113, - "type": "O" - }, - { - "at": 774.6101, - "frame": 113, - "type": "C" - }, - { - "at": 774.6101, - "frame": 113, - "type": "O" - }, - { - "at": 774.6609, - "frame": 113, - "type": "C" - }, - { - "at": 774.6609, - "frame": 113, - "type": "O" - }, - { - "at": 774.6994, - "frame": 113, - "type": "C" - }, - { - "at": 774.6994, - "frame": 113, - "type": "O" - }, - { - "at": 774.7223, - "frame": 113, - "type": "C" - }, - { - "at": 774.7223, - "frame": 113, - "type": "O" - }, - { - "at": 776.1536, - "frame": 113, - "type": "C" - }, - { - "at": 776.1536, - "frame": 113, - "type": "O" - }, - { - "at": 776.2434, - "frame": 113, - "type": "C" - }, - { - "at": 776.2434, - "frame": 81, - "type": "O" - }, - { - "at": 776.2702, - "frame": 81, - "type": "C" - }, - { - "at": 776.2702, - "frame": 79, - "type": "C" - }, - { - "at": 776.2702, - "frame": 82, - "type": "O" - }, - { - "at": 776.2879, - "frame": 82, - "type": "C" - }, - { - "at": 776.2879, - "frame": 84, - "type": "O" - }, - { - "at": 776.51, - "frame": 84, - "type": "C" - }, - { - "at": 776.51, - "frame": 67, - "type": "O" - }, - { - "at": 776.5371, - "frame": 67, - "type": "C" - }, - { - "at": 776.5371, - "frame": 85, - "type": "O" - }, - { - "at": 776.585, - "frame": 85, - "type": "C" - }, - { - "at": 776.585, - "frame": 86, - "type": "O" - }, - { - "at": 776.6392, - "frame": 86, - "type": "C" - }, - { - "at": 776.6392, - "frame": 87, - "type": "O" - }, - { - "at": 776.6823, - "frame": 87, - "type": "C" - }, - { - "at": 776.6823, - "frame": 99, - "type": "O" - }, - { - "at": 776.697, - "frame": 99, - "type": "C" - }, - { - "at": 776.697, - "frame": 88, - "type": "O" - }, - { - "at": 776.7116, - "frame": 88, - "type": "C" - }, - { - "at": 776.7116, - "frame": 89, - "type": "O" - }, - { - "at": 776.7345, - "frame": 89, - "type": "C" - }, - { - "at": 776.7345, - "frame": 66, - "type": "O" - }, - { - "at": 776.7479, - "frame": 66, - "type": "C" - }, - { - "at": 776.7479, - "frame": 64, - "type": "O" - }, - { - "at": 776.7601, - "frame": 64, - "type": "C" - }, - { - "at": 776.7601, - "frame": 90, - "type": "O" - }, - { - "at": 776.775, - "frame": 90, - "type": "C" - }, - { - "at": 776.775, - "frame": 91, - "type": "O" - }, - { - "at": 776.8015, - "frame": 91, - "type": "C" - }, - { - "at": 776.8015, - "frame": 92, - "type": "O" - }, - { - "at": 776.816, - "frame": 92, - "type": "C" - }, - { - "at": 776.816, - "frame": 93, - "type": "O" - }, - { - "at": 776.8307, - "frame": 93, - "type": "C" - }, - { - "at": 776.8307, - "frame": 94, - "type": "O" - }, - { - "at": 777.1563, - "frame": 95, - "type": "O" - }, - { - "at": 777.1794, - "frame": 95, - "type": "C" - }, - { - "at": 777.1794, - "frame": 95, - "type": "O" - }, - { - "at": 777.3058, - "frame": 95, - "type": "C" - }, - { - "at": 777.3058, - "frame": 95, - "type": "O" - }, - { - "at": 777.3318, - "frame": 95, - "type": "C" - }, - { - "at": 777.3318, - "frame": 95, - "type": "O" - }, - { - "at": 777.3602, - "frame": 95, - "type": "C" - }, - { - "at": 777.3602, - "frame": 95, - "type": "O" - }, - { - "at": 777.4291, - "frame": 95, - "type": "C" - }, - { - "at": 777.4291, - "frame": 96, - "type": "O" - }, - { - "at": 777.6942, - "frame": 96, - "type": "C" - }, - { - "at": 777.6942, - "frame": 94, - "type": "C" - }, - { - "at": 777.6942, - "frame": 67, - "type": "O" - }, - { - "at": 777.7259, - "frame": 67, - "type": "C" - }, - { - "at": 777.7259, - "frame": 85, - "type": "O" - }, - { - "at": 777.7612, - "frame": 85, - "type": "C" - }, - { - "at": 777.7612, - "frame": 86, - "type": "O" - }, - { - "at": 777.8079, - "frame": 86, - "type": "C" - }, - { - "at": 777.8079, - "frame": 87, - "type": "O" - }, - { - "at": 777.8359, - "frame": 87, - "type": "C" - }, - { - "at": 777.8359, - "frame": 99, - "type": "O" - }, - { - "at": 777.8548, - "frame": 99, - "type": "C" - }, - { - "at": 777.8548, - "frame": 88, - "type": "O" - }, - { - "at": 777.8793, - "frame": 88, - "type": "C" - }, - { - "at": 777.8793, - "frame": 89, - "type": "O" - }, - { - "at": 777.9098, - "frame": 89, - "type": "C" - }, - { - "at": 777.9098, - "frame": 66, - "type": "O" - }, - { - "at": 777.941, - "frame": 66, - "type": "C" - }, - { - "at": 777.941, - "frame": 64, - "type": "O" - }, - { - "at": 777.9591, - "frame": 64, - "type": "C" - }, - { - "at": 777.9591, - "frame": 90, - "type": "O" - }, - { - "at": 777.9826, - "frame": 90, - "type": "C" - }, - { - "at": 777.9826, - "frame": 91, - "type": "O" - }, - { - "at": 778.0239, - "frame": 91, - "type": "C" - }, - { - "at": 778.0239, - "frame": 92, - "type": "O" - }, - { - "at": 778.0445, - "frame": 92, - "type": "C" - }, - { - "at": 778.0445, - "frame": 93, - "type": "O" - }, - { - "at": 778.2099, - "frame": 93, - "type": "C" - }, - { - "at": 778.2099, - "frame": 94, - "type": "O" - }, - { - "at": 778.5344, - "frame": 95, - "type": "O" - }, - { - "at": 778.5545, - "frame": 95, - "type": "C" - }, - { - "at": 778.5545, - "frame": 95, - "type": "O" - }, - { - "at": 778.6592, - "frame": 95, - "type": "C" - }, - { - "at": 778.6592, - "frame": 95, - "type": "O" - }, - { - "at": 778.6838, - "frame": 95, - "type": "C" - }, - { - "at": 778.6838, - "frame": 95, - "type": "O" - }, - { - "at": 778.7111, - "frame": 95, - "type": "C" - }, - { - "at": 778.7111, - "frame": 95, - "type": "O" - }, - { - "at": 778.7792, - "frame": 95, - "type": "C" - }, - { - "at": 778.7792, - "frame": 96, - "type": "O" - }, - { - "at": 779.0846, - "frame": 96, - "type": "C" - }, - { - "at": 779.0846, - "frame": 94, - "type": "C" - }, - { - "at": 779.0846, - "frame": 67, - "type": "O" - }, - { - "at": 779.1264, - "frame": 67, - "type": "C" - }, - { - "at": 779.1264, - "frame": 77, - "type": "O" - }, - { - "at": 779.1697, - "frame": 77, - "type": "C" - }, - { - "at": 779.1697, - "frame": 78, - "type": "O" - }, - { - "at": 779.7012, - "frame": 78, - "type": "C" - }, - { - "at": 779.7012, - "frame": 79, - "type": "O" - }, - { - "at": 781.5516, - "frame": 116, - "type": "O" - }, - { - "at": 781.5678, - "frame": 116, - "type": "C" - }, - { - "at": 781.5678, - "frame": 116, - "type": "O" - }, - { - "at": 799.4567, - "frame": 116, - "type": "C" - }, - { - "at": 799.4567, - "frame": 116, - "type": "O" - }, - { - "at": 802.7078, - "frame": 116, - "type": "C" - }, - { - "at": 802.7078, - "frame": 116, - "type": "O" - }, - { - "at": 806.3928, - "frame": 116, - "type": "C" - }, - { - "at": 806.3928, - "frame": 116, - "type": "O" - }, - { - "at": 812.8413, - "frame": 116, - "type": "C" - }, - { - "at": 812.8413, - "frame": 116, - "type": "O" - }, - { - "at": 812.9038, - "frame": 116, - "type": "C" - }, - { - "at": 812.9038, - "frame": 116, - "type": "O" - }, - { - "at": 812.9456, - "frame": 116, - "type": "C" - }, - { - "at": 812.9456, - "frame": 116, - "type": "O" - }, - { - "at": 820.7032, - "frame": 116, - "type": "C" - }, - { - "at": 820.7032, - "frame": 116, - "type": "O" - }, - { - "at": 833.3968, - "frame": 117, - "type": "O" - }, - { - "at": 833.4557, - "frame": 117, - "type": "C" - }, - { - "at": 833.4557, - "frame": 117, - "type": "O" - }, - { - "at": 833.4764, - "frame": 117, - "type": "C" - }, - { - "at": 833.4764, - "frame": 117, - "type": "O" - }, - { - "at": 834.1964, - "frame": 117, - "type": "C" - }, - { - "at": 834.1964, - "frame": 117, - "type": "O" - }, - { - "at": 834.2308, - "frame": 117, - "type": "C" - }, - { - "at": 834.2308, - "frame": 117, - "type": "O" - }, - { - "at": 834.2516, - "frame": 117, - "type": "C" - }, - { - "at": 834.2516, - "frame": 117, - "type": "O" - }, - { - "at": 834.2942, - "frame": 117, - "type": "C" - }, - { - "at": 834.2942, - "frame": 117, - "type": "O" - }, - { - "at": 834.343, - "frame": 117, - "type": "C" - }, - { - "at": 834.343, - "frame": 117, - "type": "O" - }, - { - "at": 834.4214, - "frame": 117, - "type": "C" - }, - { - "at": 834.4214, - "frame": 116, - "type": "O" - }, - { - "at": 834.4669, - "frame": 116, - "type": "C" - }, - { - "at": 834.4669, - "frame": 116, - "type": "C" - }, - { - "at": 834.4669, - "frame": 81, - "type": "O" - }, - { - "at": 834.4901, - "frame": 81, - "type": "C" - }, - { - "at": 834.4901, - "frame": 79, - "type": "C" - }, - { - "at": 834.4901, - "frame": 82, - "type": "O" - }, - { - "at": 834.5109, - "frame": 82, - "type": "C" - }, - { - "at": 834.5109, - "frame": 83, - "type": "O" - }, - { - "at": 834.5365, - "frame": 83, - "type": "C" - }, - { - "at": 834.5365, - "frame": 84, - "type": "O" - }, - { - "at": 834.5593, - "frame": 84, - "type": "C" - }, - { - "at": 834.5593, - "frame": 67, - "type": "O" - }, - { - "at": 834.5818, - "frame": 67, - "type": "C" - }, - { - "at": 834.5818, - "frame": 85, - "type": "O" - }, - { - "at": 834.6201, - "frame": 85, - "type": "C" - }, - { - "at": 834.6201, - "frame": 86, - "type": "O" - }, - { - "at": 834.6657, - "frame": 86, - "type": "C" - }, - { - "at": 834.6657, - "frame": 87, - "type": "O" - }, - { - "at": 834.6939, - "frame": 87, - "type": "C" - }, - { - "at": 834.6939, - "frame": 99, - "type": "O" - }, - { - "at": 834.7146, - "frame": 99, - "type": "C" - }, - { - "at": 834.7146, - "frame": 88, - "type": "O" - }, - { - "at": 834.7342, - "frame": 88, - "type": "C" - }, - { - "at": 834.7342, - "frame": 89, - "type": "O" - }, - { - "at": 834.7647, - "frame": 89, - "type": "C" - }, - { - "at": 834.7647, - "frame": 66, - "type": "O" - }, - { - "at": 834.7941, - "frame": 66, - "type": "C" - }, - { - "at": 834.7941, - "frame": 64, - "type": "O" - }, - { - "at": 834.8119, - "frame": 64, - "type": "C" - }, - { - "at": 834.8119, - "frame": 90, - "type": "O" - }, - { - "at": 834.8388, - "frame": 90, - "type": "C" - }, - { - "at": 834.8388, - "frame": 91, - "type": "O" - }, - { - "at": 834.878, - "frame": 91, - "type": "C" - }, - { - "at": 834.878, - "frame": 92, - "type": "O" - }, - { - "at": 834.8995, - "frame": 92, - "type": "C" - }, - { - "at": 834.8995, - "frame": 93, - "type": "O" - }, - { - "at": 834.9174, - "frame": 93, - "type": "C" - }, - { - "at": 834.9174, - "frame": 94, - "type": "O" - }, - { - "at": 835.2311, - "frame": 95, - "type": "O" - }, - { - "at": 835.2505, - "frame": 95, - "type": "C" - }, - { - "at": 835.2505, - "frame": 95, - "type": "O" - }, - { - "at": 835.3644, - "frame": 95, - "type": "C" - }, - { - "at": 835.3644, - "frame": 95, - "type": "O" - }, - { - "at": 835.3884, - "frame": 95, - "type": "C" - }, - { - "at": 835.3884, - "frame": 95, - "type": "O" - }, - { - "at": 835.4144, - "frame": 95, - "type": "C" - }, - { - "at": 835.4144, - "frame": 95, - "type": "O" - }, - { - "at": 835.4766, - "frame": 95, - "type": "C" - }, - { - "at": 835.4766, - "frame": 96, - "type": "O" - }, - { - "at": 835.7396, - "frame": 96, - "type": "C" - }, - { - "at": 835.7396, - "frame": 94, - "type": "C" - }, - { - "at": 835.7396, - "frame": 67, - "type": "O" - }, - { - "at": 835.7695, - "frame": 67, - "type": "C" - }, - { - "at": 835.7695, - "frame": 77, - "type": "O" - }, - { - "at": 835.8023, - "frame": 77, - "type": "C" - }, - { - "at": 835.8023, - "frame": 78, - "type": "O" - }, - { - "at": 836.2533, - "frame": 78, - "type": "C" - }, - { - "at": 836.2533, - "frame": 79, - "type": "O" - }, - { - "at": 843.742, - "frame": 118, - "type": "O" - }, - { - "at": 843.7656, - "frame": 118, - "type": "C" - }, - { - "at": 843.7656, - "frame": 118, - "type": "O" - }, - { - "at": 843.8385, - "frame": 118, - "type": "C" - }, - { - "at": 843.8385, - "frame": 118, - "type": "O" - }, - { - "at": 2096.6022, - "frame": 118, - "type": "C" - }, - { - "at": 2096.6022, - "frame": 118, - "type": "O" - }, - { - "at": 2116.8314, - "frame": 118, - "type": "C" - }, - { - "at": 2116.8314, - "frame": 118, - "type": "O" - }, - { - "at": 2116.8768, - "frame": 118, - "type": "C" - }, - { - "at": 2116.8768, - "frame": 118, - "type": "O" - }, - { - "at": 2116.9209, - "frame": 118, - "type": "C" - }, - { - "at": 2116.9209, - "frame": 118, - "type": "O" - }, - { - "at": 2116.9896, - "frame": 118, - "type": "C" - }, - { - "at": 2116.9896, - "frame": 118, - "type": "O" - }, - { - "at": 2120.3744, - "frame": 118, - "type": "C" - }, - { - "at": 2120.3744, - "frame": 118, - "type": "O" - }, - { - "at": 2122.2381, - "frame": 118, - "type": "C" - }, - { - "at": 2122.2381, - "frame": 118, - "type": "O" - }, - { - "at": 2122.2653, - "frame": 118, - "type": "C" - }, - { - "at": 2122.2653, - "frame": 118, - "type": "O" - }, - { - "at": 2122.2809, - "frame": 118, - "type": "C" - }, - { - "at": 2122.2809, - "frame": 118, - "type": "O" - }, - { - "at": 2122.2927, - "frame": 118, - "type": "C" - }, - { - "at": 2122.2927, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3057, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3057, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3325, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3325, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3542, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3542, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3655, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3655, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3795, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3795, - "frame": 118, - "type": "O" - }, - { - "at": 2122.3937, - "frame": 118, - "type": "C" - }, - { - "at": 2122.3937, - "frame": 118, - "type": "O" - }, - { - "at": 2122.422, - "frame": 118, - "type": "C" - }, - { - "at": 2122.422, - "frame": 118, - "type": "O" - }, - { - "at": 2122.4555, - "frame": 118, - "type": "C" - }, - { - "at": 2122.4555, - "frame": 118, - "type": "O" - }, - { - "at": 2122.4735, - "frame": 118, - "type": "C" - }, - { - "at": 2122.4735, - "frame": 118, - "type": "O" - }, - { - "at": 2122.4895, - "frame": 118, - "type": "C" - }, - { - "at": 2122.4895, - "frame": 118, - "type": "O" - }, - { - "at": 2122.5036, - "frame": 118, - "type": "C" - }, - { - "at": 2122.5036, - "frame": 118, - "type": "O" - }, - { - "at": 2124.83, - "frame": 118, - "type": "C" - }, - { - "at": 2124.83, - "frame": 118, - "type": "O" - }, - { - "at": 2124.8833, - "frame": 118, - "type": "C" - }, - { - "at": 2124.8833, - "frame": 118, - "type": "O" - }, - { - "at": 2124.9097, - "frame": 118, - "type": "C" - }, - { - "at": 2124.9097, - "frame": 118, - "type": "O" - }, - { - "at": 2124.9346, - "frame": 118, - "type": "C" - }, - { - "at": 2124.9346, - "frame": 118, - "type": "O" - }, - { - "at": 2124.9646, - "frame": 118, - "type": "C" - }, - { - "at": 2124.9646, - "frame": 118, - "type": "O" - }, - { - "at": 2125.5467, - "frame": 118, - "type": "C" - }, - { - "at": 2125.5467, - "frame": 118, - "type": "O" - }, - { - "at": 2125.5903, - "frame": 118, - "type": "C" - }, - { - "at": 2125.5903, - "frame": 118, - "type": "O" - }, - { - "at": 2125.6136, - "frame": 118, - "type": "C" - }, - { - "at": 2125.6136, - "frame": 118, - "type": "O" - }, - { - "at": 2125.6365, - "frame": 118, - "type": "C" - }, - { - "at": 2125.6365, - "frame": 118, - "type": "O" - }, - { - "at": 2143.7447, - "frame": 118, - "type": "C" - }, - { - "at": 2143.7447, - "frame": 118, - "type": "O" - }, - { - "at": 2143.7753, - "frame": 118, - "type": "C" - }, - { - "at": 2143.7753, - "frame": 118, - "type": "O" - }, - { - "at": 2143.8116, - "frame": 118, - "type": "C" - }, - { - "at": 2143.8116, - "frame": 118, - "type": "O" - }, - { - "at": 2143.83, - "frame": 118, - "type": "C" - }, - { - "at": 2143.83, - "frame": 118, - "type": "O" - }, - { - "at": 2145.11, - "frame": 118, - "type": "C" - }, - { - "at": 2145.11, - "frame": 118, - "type": "O" - }, - { - "at": 2146.3777, - "frame": 118, - "type": "C" - }, - { - "at": 2146.3777, - "frame": 118, - "type": "O" - }, - { - "at": 2146.8231, - "frame": 118, - "type": "C" - }, - { - "at": 2146.8231, - "frame": 118, - "type": "O" - }, - { - "at": 2146.8949, - "frame": 118, - "type": "C" - }, - { - "at": 2146.8949, - "frame": 118, - "type": "O" - }, - { - "at": 2149.4385, - "frame": 119, - "type": "O" - }, - { - "at": 2149.4639, - "frame": 119, - "type": "C" - }, - { - "at": 2149.4639, - "frame": 119, - "type": "O" - }, - { - "at": 2152.8638, - "frame": 119, - "type": "C" - }, - { - "at": 2152.8638, - "frame": 119, - "type": "O" - }, - { - "at": 2152.8924, - "frame": 119, - "type": "C" - }, - { - "at": 2152.8924, - "frame": 119, - "type": "O" - }, - { - "at": 2154.3001, - "frame": 119, - "type": "C" - }, - { - "at": 2154.3001, - "frame": 119, - "type": "O" - }, - { - "at": 2154.3898, - "frame": 119, - "type": "C" - }, - { - "at": 2154.3898, - "frame": 118, - "type": "O" - }, - { - "at": 2154.6538, - "frame": 119, - "type": "O" - }, - { - "at": 2154.665, - "frame": 119, - "type": "C" - }, - { - "at": 2154.665, - "frame": 118, - "type": "C" - }, - { - "at": 2154.665, - "frame": 119, - "type": "O" - }, - { - "at": 2154.6804, - "frame": 119, - "type": "C" - }, - { - "at": 2154.6804, - "frame": 119, - "type": "O" - }, - { - "at": 2154.7044, - "frame": 119, - "type": "C" - }, - { - "at": 2154.7044, - "frame": 119, - "type": "O" - }, - { - "at": 2154.7478, - "frame": 119, - "type": "C" - }, - { - "at": 2154.7478, - "frame": 119, - "type": "O" - }, - { - "at": 2155.0738, - "frame": 119, - "type": "C" - }, - { - "at": 2155.0738, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1084, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1084, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1225, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1225, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1481, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1481, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1603, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1603, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1715, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1715, - "frame": 117, - "type": "O" - }, - { - "at": 2155.1888, - "frame": 117, - "type": "C" - }, - { - "at": 2155.1888, - "frame": 117, - "type": "O" - }, - { - "at": 2155.2156, - "frame": 117, - "type": "C" - }, - { - "at": 2155.2156, - "frame": 117, - "type": "O" - }, - { - "at": 2155.2774, - "frame": 117, - "type": "C" - }, - { - "at": 2155.2774, - "frame": 118, - "type": "O" - }, - { - "at": 2155.2925, - "frame": 118, - "type": "C" - }, - { - "at": 2155.2925, - "frame": 118, - "type": "C" - }, - { - "at": 2155.2925, - "frame": 118, - "type": "O" - }, - { - "at": 2155.3139, - "frame": 118, - "type": "C" - }, - { - "at": 2155.3139, - "frame": 118, - "type": "O" - }, - { - "at": 2155.3471, - "frame": 118, - "type": "C" - }, - { - "at": 2155.3471, - "frame": 81, - "type": "O" - }, - { - "at": 2155.361, - "frame": 81, - "type": "C" - }, - { - "at": 2155.361, - "frame": 79, - "type": "C" - }, - { - "at": 2155.361, - "frame": 82, - "type": "O" - }, - { - "at": 2155.3729, - "frame": 82, - "type": "C" - }, - { - "at": 2155.3729, - "frame": 83, - "type": "O" - }, - { - "at": 2155.3889, - "frame": 83, - "type": "C" - }, - { - "at": 2155.3889, - "frame": 84, - "type": "O" - }, - { - "at": 2155.4243, - "frame": 84, - "type": "C" - }, - { - "at": 2155.4243, - "frame": 67, - "type": "O" - }, - { - "at": 2155.4596, - "frame": 67, - "type": "C" - }, - { - "at": 2155.4596, - "frame": 85, - "type": "O" - }, - { - "at": 2155.4839, - "frame": 85, - "type": "C" - }, - { - "at": 2155.4839, - "frame": 86, - "type": "O" - }, - { - "at": 2155.5114, - "frame": 86, - "type": "C" - }, - { - "at": 2155.5114, - "frame": 87, - "type": "O" - }, - { - "at": 2155.5327, - "frame": 87, - "type": "C" - }, - { - "at": 2155.5327, - "frame": 99, - "type": "O" - }, - { - "at": 2155.5554, - "frame": 99, - "type": "C" - }, - { - "at": 2155.5554, - "frame": 88, - "type": "O" - }, - { - "at": 2155.5651, - "frame": 88, - "type": "C" - }, - { - "at": 2155.5651, - "frame": 89, - "type": "O" - }, - { - "at": 2155.5817, - "frame": 89, - "type": "C" - }, - { - "at": 2155.5817, - "frame": 66, - "type": "O" - }, - { - "at": 2155.5969, - "frame": 66, - "type": "C" - }, - { - "at": 2155.5969, - "frame": 64, - "type": "O" - }, - { - "at": 2155.6114, - "frame": 64, - "type": "C" - }, - { - "at": 2155.6114, - "frame": 90, - "type": "O" - }, - { - "at": 2155.6233, - "frame": 90, - "type": "C" - }, - { - "at": 2155.6233, - "frame": 91, - "type": "O" - }, - { - "at": 2155.6621, - "frame": 91, - "type": "C" - }, - { - "at": 2155.6621, - "frame": 92, - "type": "O" - }, - { - "at": 2155.676, - "frame": 92, - "type": "C" - }, - { - "at": 2155.676, - "frame": 93, - "type": "O" - }, - { - "at": 2155.6884, - "frame": 93, - "type": "C" - }, - { - "at": 2155.6884, - "frame": 94, - "type": "O" - }, - { - "at": 2155.9452, - "frame": 95, - "type": "O" - }, - { - "at": 2155.9599, - "frame": 95, - "type": "C" - }, - { - "at": 2155.9599, - "frame": 95, - "type": "O" - }, - { - "at": 2156.0564, - "frame": 95, - "type": "C" - }, - { - "at": 2156.0564, - "frame": 95, - "type": "O" - }, - { - "at": 2156.0715, - "frame": 95, - "type": "C" - }, - { - "at": 2156.0715, - "frame": 95, - "type": "O" - }, - { - "at": 2156.0892, - "frame": 95, - "type": "C" - }, - { - "at": 2156.0892, - "frame": 95, - "type": "O" - }, - { - "at": 2156.1406, - "frame": 95, - "type": "C" - }, - { - "at": 2156.1406, - "frame": 96, - "type": "O" - }, - { - "at": 2156.3606, - "frame": 96, - "type": "C" - }, - { - "at": 2156.3606, - "frame": 94, - "type": "C" - }, - { - "at": 2156.3606, - "frame": 67, - "type": "O" - }, - { - "at": 2156.3848, - "frame": 67, - "type": "C" - }, - { - "at": 2156.3848, - "frame": 77, - "type": "O" - }, - { - "at": 2156.4102, - "frame": 77, - "type": "C" - }, - { - "at": 2156.4102, - "frame": 78, - "type": "O" - }, - { - "at": 2156.8099, - "frame": 78, - "type": "C" - }, - { - "at": 2156.8099, - "frame": 79, - "type": "O" - }, - { - "at": 2160.7242, - "frame": 120, - "type": "O" - }, - { - "at": 2160.7412, - "frame": 120, - "type": "C" - }, - { - "at": 2160.7412, - "frame": 120, - "type": "O" - }, - { - "at": 2161.1838, - "frame": 120, - "type": "C" - }, - { - "at": 2161.1838, - "frame": 120, - "type": "O" - }, - { - "at": 2161.269, - "frame": 120, - "type": "C" - }, - { - "at": 2161.269, - "frame": 120, - "type": "O" - }, - { - "at": 2167.5757, - "frame": 120, - "type": "C" - }, - { - "at": 2167.5757, - "frame": 120, - "type": "O" - }, - { - "at": 2167.6039, - "frame": 120, - "type": "C" - }, - { - "at": 2167.6039, - "frame": 120, - "type": "O" - }, - { - "at": 2167.7339, - "frame": 120, - "type": "C" - }, - { - "at": 2167.7339, - "frame": 120, - "type": "O" - }, - { - "at": 2169.6148, - "frame": 120, - "type": "C" - }, - { - "at": 2169.6148, - "frame": 120, - "type": "O" - }, - { - "at": 2169.6808, - "frame": 120, - "type": "C" - }, - { - "at": 2169.6808, - "frame": 120, - "type": "O" - }, - { - "at": 2172.4571, - "frame": 120, - "type": "C" - }, - { - "at": 2172.4571, - "frame": 120, - "type": "O" - }, - { - "at": 2172.4972, - "frame": 120, - "type": "C" - }, - { - "at": 2172.4972, - "frame": 120, - "type": "O" - }, - { - "at": 2173.6304, - "frame": 120, - "type": "C" - }, - { - "at": 2173.6304, - "frame": 120, - "type": "O" - }, - { - "at": 2174.7125, - "frame": 120, - "type": "C" - }, - { - "at": 2174.7125, - "frame": 120, - "type": "O" - }, - { - "at": 2175.825, - "frame": 120, - "type": "C" - }, - { - "at": 2175.825, - "frame": 120, - "type": "O" - }, - { - "at": 2175.8971, - "frame": 120, - "type": "C" - }, - { - "at": 2175.8971, - "frame": 120, - "type": "O" - }, - { - "at": 2175.9221, - "frame": 120, - "type": "C" - }, - { - "at": 2175.9221, - "frame": 120, - "type": "O" - }, - { - "at": 2175.9531, - "frame": 120, - "type": "C" - }, - { - "at": 2175.9531, - "frame": 120, - "type": "O" - }, - { - "at": 2181.719, - "frame": 117, - "type": "O" - }, - { - "at": 2181.8014, - "frame": 117, - "type": "C" - }, - { - "at": 2181.8014, - "frame": 117, - "type": "O" - }, - { - "at": 2181.8251, - "frame": 117, - "type": "C" - }, - { - "at": 2181.8251, - "frame": 117, - "type": "O" - }, - { - "at": 2181.8491, - "frame": 117, - "type": "C" - }, - { - "at": 2181.8491, - "frame": 117, - "type": "O" - }, - { - "at": 2181.8686, - "frame": 117, - "type": "C" - }, - { - "at": 2181.8686, - "frame": 117, - "type": "O" - }, - { - "at": 2181.886, - "frame": 117, - "type": "C" - }, - { - "at": 2181.886, - "frame": 117, - "type": "O" - }, - { - "at": 2181.9166, - "frame": 117, - "type": "C" - }, - { - "at": 2181.9166, - "frame": 117, - "type": "O" - }, - { - "at": 2181.9874, - "frame": 117, - "type": "C" - }, - { - "at": 2181.9874, - "frame": 117, - "type": "O" - }, - { - "at": 2182.1379, - "frame": 117, - "type": "C" - }, - { - "at": 2182.1379, - "frame": 120, - "type": "O" - }, - { - "at": 2182.2335, - "frame": 120, - "type": "C" - }, - { - "at": 2182.2335, - "frame": 120, - "type": "C" - }, - { - "at": 2182.2335, - "frame": 81, - "type": "O" - }, - { - "at": 2182.2586, - "frame": 81, - "type": "C" - }, - { - "at": 2182.2586, - "frame": 79, - "type": "C" - }, - { - "at": 2182.2586, - "frame": 82, - "type": "O" - }, - { - "at": 2182.281, - "frame": 82, - "type": "C" - }, - { - "at": 2182.281, - "frame": 83, - "type": "O" - }, - { - "at": 2182.3094, - "frame": 83, - "type": "C" - }, - { - "at": 2182.3094, - "frame": 84, - "type": "O" - }, - { - "at": 2182.3578, - "frame": 84, - "type": "C" - }, - { - "at": 2182.3578, - "frame": 67, - "type": "O" - }, - { - "at": 2182.3827, - "frame": 67, - "type": "C" - }, - { - "at": 2182.3827, - "frame": 85, - "type": "O" - }, - { - "at": 2182.4064, - "frame": 85, - "type": "C" - }, - { - "at": 2182.4064, - "frame": 86, - "type": "O" - }, - { - "at": 2182.4288, - "frame": 86, - "type": "C" - }, - { - "at": 2182.4288, - "frame": 87, - "type": "O" - }, - { - "at": 2182.4463, - "frame": 87, - "type": "C" - }, - { - "at": 2182.4463, - "frame": 99, - "type": "O" - }, - { - "at": 2182.4579, - "frame": 99, - "type": "C" - }, - { - "at": 2182.4579, - "frame": 88, - "type": "O" - }, - { - "at": 2182.467, - "frame": 88, - "type": "C" - }, - { - "at": 2182.467, - "frame": 89, - "type": "O" - }, - { - "at": 2182.4909, - "frame": 89, - "type": "C" - }, - { - "at": 2182.4909, - "frame": 66, - "type": "O" - }, - { - "at": 2182.503, - "frame": 66, - "type": "C" - }, - { - "at": 2182.503, - "frame": 64, - "type": "O" - }, - { - "at": 2182.5137, - "frame": 64, - "type": "C" - }, - { - "at": 2182.5137, - "frame": 90, - "type": "O" - }, - { - "at": 2182.5244, - "frame": 90, - "type": "C" - }, - { - "at": 2182.5244, - "frame": 91, - "type": "O" - }, - { - "at": 2182.5434, - "frame": 91, - "type": "C" - }, - { - "at": 2182.5434, - "frame": 92, - "type": "O" - }, - { - "at": 2182.5546, - "frame": 92, - "type": "C" - }, - { - "at": 2182.5546, - "frame": 93, - "type": "O" - }, - { - "at": 2182.5818, - "frame": 93, - "type": "C" - }, - { - "at": 2182.5818, - "frame": 94, - "type": "O" - }, - { - "at": 2182.8513, - "frame": 95, - "type": "O" - }, - { - "at": 2182.8762, - "frame": 95, - "type": "C" - }, - { - "at": 2182.8762, - "frame": 95, - "type": "O" - }, - { - "at": 2182.9632, - "frame": 95, - "type": "C" - }, - { - "at": 2182.9632, - "frame": 95, - "type": "O" - }, - { - "at": 2182.9781, - "frame": 95, - "type": "C" - }, - { - "at": 2182.9781, - "frame": 95, - "type": "O" - }, - { - "at": 2182.9974, - "frame": 95, - "type": "C" - }, - { - "at": 2182.9974, - "frame": 95, - "type": "O" - }, - { - "at": 2183.0389, - "frame": 95, - "type": "C" - }, - { - "at": 2183.0389, - "frame": 96, - "type": "O" - }, - { - "at": 2183.2576, - "frame": 96, - "type": "C" - }, - { - "at": 2183.2576, - "frame": 94, - "type": "C" - }, - { - "at": 2183.2576, - "frame": 67, - "type": "O" - }, - { - "at": 2183.2816, - "frame": 67, - "type": "C" - }, - { - "at": 2183.2816, - "frame": 77, - "type": "O" - }, - { - "at": 2183.3081, - "frame": 77, - "type": "C" - }, - { - "at": 2183.3081, - "frame": 78, - "type": "O" - }, - { - "at": 2183.6804, - "frame": 78, - "type": "C" - }, - { - "at": 2183.6804, - "frame": 79, - "type": "O" - }, - { - "at": 2184.7654, - "frame": 121, - "type": "O" - }, - { - "at": 2184.7791, - "frame": 121, - "type": "C" - }, - { - "at": 2184.7791, - "frame": 121, - "type": "O" - }, - { - "at": 2184.7962, - "frame": 121, - "type": "C" - }, - { - "at": 2184.7962, - "frame": 121, - "type": "O" - }, - { - "at": 2184.8531, - "frame": 121, - "type": "C" - }, - { - "at": 2184.8531, - "frame": 81, - "type": "O" - }, - { - "at": 2184.8682, - "frame": 81, - "type": "C" - }, - { - "at": 2184.8682, - "frame": 79, - "type": "C" - }, - { - "at": 2184.8682, - "frame": 82, - "type": "O" - }, - { - "at": 2184.8797, - "frame": 82, - "type": "C" - }, - { - "at": 2184.8797, - "frame": 83, - "type": "O" - }, - { - "at": 2184.8952, - "frame": 83, - "type": "C" - }, - { - "at": 2184.8952, - "frame": 84, - "type": "O" - }, - { - "at": 2184.9104, - "frame": 84, - "type": "C" - }, - { - "at": 2184.9104, - "frame": 67, - "type": "O" - }, - { - "at": 2184.9215, - "frame": 67, - "type": "C" - }, - { - "at": 2184.9215, - "frame": 85, - "type": "O" - }, - { - "at": 2184.9422, - "frame": 85, - "type": "C" - }, - { - "at": 2184.9422, - "frame": 86, - "type": "O" - }, - { - "at": 2186.8313, - "frame": 86, - "type": "C" - }, - { - "at": 2186.8313, - "frame": 87, - "type": "O" - }, - { - "at": 2186.8598, - "frame": 87, - "type": "C" - }, - { - "at": 2186.8598, - "frame": 88, - "type": "O" - }, - { - "at": 2186.8712, - "frame": 88, - "type": "C" - }, - { - "at": 2186.8712, - "frame": 89, - "type": "O" - }, - { - "at": 2186.8972, - "frame": 89, - "type": "C" - }, - { - "at": 2186.8972, - "frame": 66, - "type": "O" - }, - { - "at": 2186.9103, - "frame": 66, - "type": "C" - }, - { - "at": 2186.9103, - "frame": 64, - "type": "O" - }, - { - "at": 2187.3735, - "frame": 64, - "type": "C" - }, - { - "at": 2187.3735, - "frame": 90, - "type": "O" - }, - { - "at": 2187.3937, - "frame": 90, - "type": "C" - }, - { - "at": 2187.3937, - "frame": 91, - "type": "O" - }, - { - "at": 2187.4212, - "frame": 91, - "type": "C" - }, - { - "at": 2187.4212, - "frame": 92, - "type": "O" - }, - { - "at": 2187.4372, - "frame": 92, - "type": "C" - }, - { - "at": 2187.4372, - "frame": 93, - "type": "O" - }, - { - "at": 2187.4585, - "frame": 93, - "type": "C" - }, - { - "at": 2187.4585, - "frame": 94, - "type": "O" - }, - { - "at": 2188.1357, - "frame": 95, - "type": "O" - }, - { - "at": 2188.1519, - "frame": 95, - "type": "C" - }, - { - "at": 2188.1519, - "frame": 95, - "type": "O" - }, - { - "at": 2188.2282, - "frame": 95, - "type": "C" - }, - { - "at": 2188.2282, - "frame": 95, - "type": "O" - }, - { - "at": 2188.255, - "frame": 95, - "type": "C" - }, - { - "at": 2188.255, - "frame": 95, - "type": "O" - }, - { - "at": 2188.2745, - "frame": 95, - "type": "C" - }, - { - "at": 2188.2745, - "frame": 95, - "type": "O" - }, - { - "at": 2188.3219, - "frame": 95, - "type": "C" - }, - { - "at": 2188.3219, - "frame": 96, - "type": "O" - }, - { - "at": 2188.7198, - "frame": 96, - "type": "C" - }, - { - "at": 2188.7198, - "frame": 94, - "type": "C" - }, - { - "at": 2188.7198, - "frame": 67, - "type": "O" - }, - { - "at": 2188.7477, - "frame": 67, - "type": "C" - }, - { - "at": 2188.7477, - "frame": 77, - "type": "O" - }, - { - "at": 2188.878, - "frame": 77, - "type": "C" - }, - { - "at": 2188.878, - "frame": 93, - "type": "O" - }, - { - "at": 2188.9289, - "frame": 93, - "type": "C" - }, - { - "at": 2188.9289, - "frame": 64, - "type": "O" - }, - { - "at": 2188.9684, - "frame": 64, - "type": "C" - }, - { - "at": 2188.9684, - "frame": 122, - "type": "O" - }, - { - "at": 2189.0106, - "frame": 122, - "type": "C" - }, - { - "at": 2189.0106, - "frame": 123, - "type": "O" - }, - { - "at": 2189.0324, - "frame": 123, - "type": "C" - }, - { - "at": 2189.0324, - "frame": 124, - "type": "O" - }, - { - "at": 2189.2864, - "frame": 124, - "type": "C" - }, - { - "at": 2189.2864, - "frame": 125, - "type": "O" - }, - { - "at": 2189.5428, - "frame": 125, - "type": "C" - }, - { - "at": 2189.5428, - "frame": 126, - "type": "O" - }, - { - "at": 2189.6099, - "frame": 126, - "type": "C" - }, - { - "at": 2189.6099, - "frame": 1, - "type": "C" - } - ] - } - ] -} \ No newline at end of file diff --git a/profiler_0001.speedscope.json b/profiler_0001.speedscope.json deleted file mode 100644 index cca4043..0000000 --- a/profiler_0001.speedscope.json +++ /dev/null @@ -1,7822 +0,0 @@ -{ - "exporter": "Profiler@4.0.0", - "name": "profiler_0001.speedscope.json", - "activeProfileIndex": 0, - "schema": "https://www.speedscope.app/file-format-schema.json", - "shared": { - "frames": [ - { - "name": "{|" - }, - { - "name": "& .\\winfetch.ps1" - }, - { - "name": "-not ($IsWindows -or $PSVersionTable.PSVersion.Major -eq 5)" - }, - { - "name": "$help" - }, - { - "name": "$defaultConfig = @'\r\n# ===== WINFETCH CONFIGURATION =====\r\n\r\n# $image = \"~/winfetch.png\"\r\n# $noimage = $true\r\n\r\n# Display image using ASCII characters\r\n# $ascii = $true\r\n\r\n# Set the version of Windows to derive the logo from.\r\n# $logo = \"Windows 10\"\r\n\r\n# Specify width for image/logo\r\n# $imgwidth = 24\r\n\r\n# Custom ASCII Art\r\n# This should be an array of strings, with positive\r\n# height and width equal to $imgwidth defined above.\r\n# $CustomAscii = @(\r\n# \"⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣶⣶⣾⣷⣶⣆⠸⣿⣿⡟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⡈⠻⠿⠟⠻⠿⢿⣷⣤⣤⣄⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣦⠀ ⠀\"\r\n# \"⠀⠀⠀⢀⣤⣤⡘⢿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⣿⣿⣿⡇⢸⣿⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣉⣉⡁ ⠀\"\r\n# \"⠀⠀⠀⠈⠛⠛⢡⣾⣿⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⡇ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⠟⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡿⢁⣴⣶⣦⣴⣶⣾⡿⠛⠛⠋⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⠿⢿⡿⠿⠏⢰⣿⣿⣧⠀⠀ ⠀\"\r\n# \"⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⠟⠀⠀ ⠀\"\r\n# )\r\n\r\n# Make the logo blink\r\n# $blink = $true\r\n\r\n# Display all built-in info segments.\r\n# $all = $true\r\n\r\n# Add a custom info line\r\n# function info_custom_time {\r\n# return @{\r\n# title = \"Time\"\r\n# content = (Get-Date)\r\n# }\r\n# }\r\n\r\n# Configure which disks are shown\r\n# $ShowDisks = @(\"C:\", \"D:\")\r\n# Show all available disks\r\n# $ShowDisks = @(\"*\")\r\n\r\n# Configure which package managers are shown\r\n# disabling unused ones will improve speed\r\n# $ShowPkgs = @(\"winget\", \"scoop\", \"choco\")\r\n\r\n# Use the following option to specify custom package managers.\r\n# Create a function with that name as suffix, and which returns\r\n# the number of packages. Two examples are shown here:\r\n# $CustomPkgs = @(\"cargo\", \"just-install\")\r\n# function info_pkg_cargo {\r\n# return (cargo install --list | Where-Object {$_ -like \"*:\" }).Length\r\n# }\r\n# function info_pkg_just-install {\r\n# return (just-install list).Length\r\n# }\r\n\r\n# Configure how to show info for levels\r\n# Default is for text only.\r\n# 'bar' is for bar only.\r\n# 'textbar' is for text + bar.\r\n# 'bartext' is for bar + text.\r\n# $cpustyle = 'bar'\r\n# $memorystyle = 'textbar'\r\n# $diskstyle = 'bartext'\r\n# $batterystyle = 'bartext'\r\n\r\n\r\n# Remove the '#' from any of the lines in\r\n# the following to **enable** their output.\r\n\r\n@(\r\n \"title\"\r\n \"dashes\"\r\n \"os\"\r\n \"computer\"\r\n \"kernel\"\r\n \"motherboard\"\r\n # \"custom_time\" # use custom info line\r\n \"uptime\"\r\n # \"ps_pkgs\" # takes some time\r\n \"pkgs\"\r\n \"pwsh\"\r\n \"resolution\"\r\n \"terminal\"\r\n # \"theme\"\r\n \"cpu\"\r\n \"gpu\"\r\n # \"cpu_usage\" # takes some time\r\n \"memory\"\r\n \"disk\"\r\n # \"battery\"\r\n # \"locale\"\r\n # \"weather\"\r\n # \"local_ip\"\r\n # \"public_ip\"\r\n \"blank\"\r\n \"colorbar\"\r\n)\r\n\r\n'@" - }, - { - "name": "-not $configPath" - }, - { - "name": "$env:WINFETCH_CONFIG_PATH" - }, - { - "name": "$configPath = \"${env:USERPROFILE}\\.config\\winfetch\\config.ps1\"" - }, - { - "name": "$genconf -and (Test-Path $configPath)" - }, - { - "name": "-not (Test-Path $configPath) -or [String]::IsNullOrWhiteSpace((Get-Content $configPath))" - }, - { - "name": "$config = . $configPath" - }, - { - "name": "$ShowDisks = @(\"*\")" - }, - { - "name": "$runspaces = $true" - }, - { - "name": "$RunspaceOps = @(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n \"motherboard\"\n \"custom_time\"\n \"uptime\"\n \"ps_pkgs\"\n \"pkgs\"\n \"pwsh\"\n \"resolution\"\n \"terminal\"\n \"theme\"\n \"cpu\"\n \"gpu\"\n \"cpu_usage\"\n #\"memory\" # Causes Errors\n \"disk\"\n #\"battery\" # Causes Errors\n \"locale\"\n \"weather\"\n \"local_ip\"\n \"public_ip\"\n \"blank\"\n \"colorbar\"\n)" - }, - { - "name": "\"title\"" - }, - { - "name": "\"dashes\"" - }, - { - "name": "\"os\"" - }, - { - "name": "\"computer\"" - }, - { - "name": "\"kernel\"" - }, - { - "name": "\"motherboard\"" - }, - { - "name": "\"custom_time\"" - }, - { - "name": "\"uptime\"" - }, - { - "name": "\"ps_pkgs\"" - }, - { - "name": "\"pkgs\"" - }, - { - "name": "\"pwsh\"" - }, - { - "name": "\"resolution\"" - }, - { - "name": "\"terminal\"" - }, - { - "name": "\"theme\"" - }, - { - "name": "\"cpu\"" - }, - { - "name": "\"gpu\"" - }, - { - "name": "\"cpu_usage\"" - }, - { - "name": "\"disk\"" - }, - { - "name": "\"locale\"" - }, - { - "name": "\"weather\"" - }, - { - "name": "\"local_ip\"" - }, - { - "name": "\"public_ip\"" - }, - { - "name": "\"blank\"" - }, - { - "name": "\"colorbar\"" - }, - { - "name": "@(\n \"title\"\n \"dashes\"\n \"os\"\n \"computer\"\n \"kernel\"\n #\"motherboard\"\n # \"custom_time\" # use custom info line\n \"uptime\"\n # \"ps_pkgs\" # takes some time\n #\"pkgs\"\n #\"pwsh\"\n \"resolution\"\n #\"terminal\"\n # \"theme\"\n \"cpu\"\n \"gpu\"\n # \"cpu_usage\" # takes some time\n \"memory\"\n \"disk\"\n \"battery\"\n # \"locale\"\n # \"weather\"\n # \"local_ip\"\n # \"public_ip\"\n \"blank\"\n #\"colorbar\"\n)" - }, - { - "name": "\"memory\"" - }, - { - "name": "\"battery\"" - }, - { - "name": "-not $config -or $all" - }, - { - "name": "$PSBoundParameters.Keys" - }, - { - "name": "$param" - }, - { - "name": "$e = [char]0x1B" - }, - { - "name": "$ansiRegex = '([\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~])))'" - }, - { - "name": "$cimSession = New-CimSession" - }, - { - "name": "$os = Get-CimInstance -ClassName Win32_OperatingSystem -Property Caption,OSArchitecture -CimSession $cimSession" - }, - { - "name": "$t = if ($blink) { \"5\" } else { \"1\" }" - }, - { - "name": "$blink" - }, - { - "name": "\"1\"" - }, - { - "name": "$COLUMNS = $imgwidth" - }, - { - "name": "$img = if (-not $noimage) {\r\n if ($image) {\r\n if ($image -eq 'wallpaper') {\r\n $image = (Get-ItemProperty -Path 'HKCU:\\Control Panel\\Desktop' -Name Wallpaper).Wallpaper\r\n }\r\n\r\n Add-Type -AssemblyName 'System.Drawing'\r\n $OldImage = if (Test-Path $image -PathType Leaf) {\r\n [Drawing.Bitmap]::FromFile((Resolve-Path $image))\r\n } else {\r\n [Drawing.Bitmap]::FromStream((Invoke-WebRequest $image -UseBasicParsing).RawContentStream)\r\n }\r\n\r\n # Divide scaled height by 2.2 to compensate for ASCII characters being taller than they are wide\r\n [int]$ROWS = $OldImage.Height / $OldImage.Width * $COLUMNS / $(if ($ascii) { 2.2 } else { 1 })\r\n $Bitmap = New-Object System.Drawing.Bitmap @($OldImage, [Drawing.Size]\"$COLUMNS,$ROWS\")\r\n\r\n if ($ascii) {\r\n $chars = ' .,:;+iIH$@'\r\n for ($i = 0; $i -lt $Bitmap.Height; $i++) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $p = $Bitmap.GetPixel($j, $i)\r\n $currline += \"$e[38;2;$($p.R);$($p.G);$($p.B)m$($chars[[math]::Floor($p.GetBrightness() * $chars.Length)])$e[0m\"\r\n }\r\n $currline\r\n }\r\n } else {\r\n for ($i = 0; $i -lt $Bitmap.Height; $i += 2) {\r\n $currline = \"\"\r\n for ($j = 0; $j -lt $Bitmap.Width; $j++) {\r\n $back = $Bitmap.GetPixel($j, $i)\r\n if ($i -ge $Bitmap.Height - 1) {\r\n $foreVT = \"\"\r\n } else {\r\n $fore = $Bitmap.GetPixel($j, $i + 1)\r\n $foreVT = \"$e[48;2;$($fore.R);$($fore.G);$($fore.B)m\"\r\n }\r\n $backVT = \"$e[38;2;$($back.R);$($back.G);$($back.B)m\"\r\n $currline += \"$backVT$foreVT$([char]0x2580)$e[0m\"\r\n }\r\n $currline\r\n }\r\n }\r\n\r\n $Bitmap.Dispose()\r\n $OldImage.Dispose()\r\n\r\n } elseif (($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)) {\r\n $CustomAscii\r\n } else {\r\n if (-not $logo) {\r\n if ($os -Like \"*Windows 11 *\") {\r\n $logo = \"Windows 11\"\r\n } elseif ($os -Like \"*Windows 10 *\" -Or $os -Like \"*Windows 8.1 *\" -Or $os -Like \"*Windows 8 *\") {\r\n $logo = \"Windows 10\"\r\n } else {\r\n $logo = \"Windows 7\"\r\n }\r\n }\r\n\r\n if ($logo -eq \"Windows 11\") {\r\n $COLUMNS = 32\r\n @(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )\r\n } elseif ($logo -eq \"Windows 10\" -Or $logo -eq \"Windows 8.1\" -Or $logo -eq \"Windows 8\") {\r\n $COLUMNS = 34\r\n @(\r\n \"${e}[${t};34m ....,,:;+ccllll\"\r\n \"${e}[${t};34m ...,,+:; cllllllllllllllllll\"\r\n \"${e}[${t};34m,cclllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34mllllllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m``'ccllllllllll lllllllllllllllllll\"\r\n \"${e}[${t};34m ``' \\\\*:: :ccllllllllllllllll\"\r\n \"${e}[${t};34m ````````''*::cll\"\r\n \"${e}[${t};34m ````\"\r\n )\r\n } elseif ($logo -eq \"Windows 7\" -Or $logo -eq \"Windows Vista\" -Or $logo -eq \"Windows XP\") {\r\n $COLUMNS = 35\r\n @(\r\n \"${e}[${t};31m ,.=:!!t3Z3z., \"\r\n \"${e}[${t};31m :tt:::tt333EE3 \"\r\n \"${e}[${t};31m Et:::ztt33EEE ${e}[32m@Ee., ..,\"\r\n \"${e}[${t};31m ;tt:::tt333EE7 ${e}[32m;EEEEEEttttt33#\"\r\n \"${e}[${t};31m :Et:::zt333EEQ. ${e}[32mSEEEEEttttt33QL\"\r\n \"${e}[${t};31m it::::tt333EEF ${e}[32m@EEEEEEttttt33F \"\r\n \"${e}[${t};31m ;3=*^``````'*4EEV ${e}[32m:EEEEEEttttt33@. \"\r\n \"${e}[${t};34m ,.=::::it=., ${e}[31m`` ${e}[32m@EEEEEEtttz33QF \"\r\n \"${e}[${t};34m ;::::::::zt33) ${e}[32m'4EEEtttji3P* \"\r\n \"${e}[${t};34m :t::::::::tt33 ${e}[33m:Z3z.. ${e}[32m```` ${e}[33m,..g. \"\r\n \"${e}[${t};34m i::::::::zt33F ${e}[33mAEEEtttt::::ztF \"\r\n \"${e}[${t};34m ;:::::::::t33V ${e}[33m;EEEttttt::::t3 \"\r\n \"${e}[${t};34m E::::::::zt33L ${e}[33m@EEEtttt::::z3F \"\r\n \"${e}[${t};34m{3=*^``````'*4E3) ${e}[33m;EEEtttt:::::tZ`` \"\r\n \"${e}[${t};34m `` ${e}[33m:EEEEtttt::::z7 \"\r\n \"${e}[${t};33m 'VEzjt:;;z>*`` \"\r\n )\r\n } elseif ($logo -eq \"Microsoft\") {\r\n $COLUMNS = 13\r\n @(\r\n \"${e}[${t};31m┌─────┐${e}[32m┌─────┐\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m│ │${e}[32m│ │\"\r\n \"${e}[${t};31m└─────┘${e}[32m└─────┘\"\r\n \"${e}[${t};34m┌─────┐${e}[33m┌─────┐\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m│ │${e}[33m│ │\"\r\n \"${e}[${t};34m└─────┘${e}[33m└─────┘\"\r\n )\r\n } elseif ($logo -eq \"Windows 2000\" -Or $logo -eq \"Windows 98\" -Or $logo -eq \"Windows 95\") {\r\n $COLUMNS = 45\r\n @(\r\n \" ${e}[${t};30mdBBBBBBBb\"\r\n \" ${e}[${t};30mdBBBBBBBBBBBBBBBb\"\r\n \" ${e}[${t};30m 000 BBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: 000000 BBBBB${e}[${t};31mdBB${e}[${t};30mBBBB${e}[${t};32mBBBb${e}[${t};30mBBBBBBB\"\r\n \"${e}[${t};31m::::: ${e}[${t};30m====== 000${e}[${t};31m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== ${e}[${t};31m000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};32mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};31m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};32m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};31m====== 000${e}[${t};30m000 BBBBBBBBBBBBBBBBBBBBBBBBB\"\r\n \"${e}[${t};30m::::: ====== 000000 BBBBB${e}[${t};34mdBB${e}[${t};30mBBBB${e}[${t};33mBBBb${e}[${t};30mBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ${e}[${t};30m====== 000${e}[${t};34m000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBBBBB${e}[${t};30mBBBB${e}[${t};33mBBBBBBBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};34m::::: ====== 000000 BBBBf${e}[${t};30mBBBBBBBBBBB${e}[${t};33m`BBBB${e}[${t};30mBBBB\"\r\n \"${e}[${t};30m::::: ${e}[${t};34m====== 000${e}[${t};30m000 BBBBBf `BBBBBBBBB\"\r\n \"${e}[${t};30m :: ====== 000000 BBf `BBBBB\"\r\n \" ${c1} == 000000 B BBB\"\r\n )\r\n } else {\r\n Write-Error 'The only version logos supported are Windows 11, Windows 10/8.1/8, Windows 7/Vista/XP, Windows 2000/98/95 and Microsoft.'\r\n exit 1\r\n }\r\n }\r\n}" - }, - { - "name": "-not $noimage" - }, - { - "name": "$image" - }, - { - "name": "($CustomAscii -is [Array]) -and ($CustomAscii.Length -gt 0)" - }, - { - "name": "-not $logo" - }, - { - "name": "$os -Like \"*Windows 11 *\"" - }, - { - "name": "$logo = \"Windows 11\"" - }, - { - "name": "$logo -eq \"Windows 11\"" - }, - { - "name": "$COLUMNS = 32" - }, - { - "name": "@(\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34m \"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n \"${e}[${t};34mlllllllllllllll lllllllllllllll\"\r\n )" - }, - { - "name": "\"${e}[${t};34mlllllllllllllll lllllllllllllll\"" - }, - { - "name": "\"${e}[${t};34m \"" - }, - { - "name": "-not $stripansi" - }, - { - "name": "Write-Output \"$e[0m$e[?25l\"" - }, - { - "name": "$img" - }, - { - "name": "$line" - }, - { - "name": "Write-Output \" $line\"" - }, - { - "name": "$GAP = 3" - }, - { - "name": "$writtenLines = 0" - }, - { - "name": "$freeSpace = $Host.UI.RawUI.WindowSize.Width - 1" - }, - { - "name": "$img -and -not $stripansi" - }, - { - "name": "$freeSpace -= 1 + $COLUMNS + $GAP" - }, - { - "name": "Write-Output \"$e[$($img.Length + 1)A\"" - }, - { - "name": "$img.Length + 1" - }, - { - "name": "$config" - }, - { - "name": "$item" - }, - { - "name": "Test-Path Function:\"info_$item\"" - }, - { - "name": "$info = & \"info_$item\"" - }, - { - "name": "info_title" - }, - { - "name": "-not $info" - }, - { - "name": "$info -isnot [array]" - }, - { - "name": "$info = @($info)" - }, - { - "name": "$info" - }, - { - "name": "$output = \"$e[1;33m$($line[\"title\"])$e[0m\"" - }, - { - "name": "$line[\"title\"]" - }, - { - "name": "$line[\"title\"] -and $line[\"content\"]" - }, - { - "name": "$output += \"$($line[\"content\"])\"" - }, - { - "name": "$line[\"content\"]" - }, - { - "name": "$output = \"$e[$(2 + $COLUMNS + $GAP)G$output\"" - }, - { - "name": "2 + $COLUMNS + $GAP" - }, - { - "name": "$writtenLines++" - }, - { - "name": "$stripansi" - }, - { - "name": "$output = truncate_line $output $freeSpace" - }, - { - "name": "truncate_line" - }, - { - "name": "Write-Output $output" - }, - { - "name": "info_dashes" - }, - { - "name": "info_os" - }, - { - "name": "$output += \": \"" - }, - { - "name": "info_computer" - }, - { - "name": "info_kernel" - }, - { - "name": "info_uptime" - }, - { - "name": "{|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" - }, - { - "name": "$PSItem.Days -eq 1" - }, - { - "name": "}|C:\\Users\\carte\\OneDrive\\Documents\\GitHub\\winfetch\\winfetch.ps1" - }, - { - "name": "$PSItem.Days -gt 1" - }, - { - "name": "$PSItem.Hours -eq 1" - }, - { - "name": "$PSItem.Hours -gt 1" - }, - { - "name": "$PSItem.Minutes -eq 1" - }, - { - "name": "$PSItem.Minutes -gt 1" - }, - { - "name": "info_resolution" - }, - { - "name": "info_cpu" - }, - { - "name": "info_gpu" - }, - { - "name": "($_.Description -ne \"Microsoft Basic Render Driver\") -and ($lines.content -notcontains $_.Description)" - }, - { - "name": "[void]$lines.Add(@{\r\n title = \"GPU\"\r\n content = $_.Description\r\n })" - }, - { - "name": "info_memory" - }, - { - "name": "get_level_info" - }, - { - "name": "info_disk" - }, - { - "name": "to_units" - }, - { - "name": "info_battery" - }, - { - "name": "info_blank" - }, - { - "name": "$diff = $img.Length - $writtenLines" - }, - { - "name": "$img -and $diff -gt 0" - }, - { - "name": "Write-Output \"$e[${diff}B\"" - }, - { - "name": "Write-Output \"$e[?25h\"" - }, - { - "name": "}|" - } - ] - }, - "profiles": [ - { - "type": "evented", - "name": "pwsh (8196) Time=2178.4092ms", - "unit": "milliseconds", - "startValue": 0, - "endValue": 2178.4092, - "events": [ - { - "at": 0.0, - "frame": 0, - "type": "O" - }, - { - "at": 0.022, - "frame": 0, - "type": "C" - }, - { - "at": 0.022, - "frame": 1, - "type": "O" - }, - { - "at": 188.8256, - "frame": 1, - "type": "C" - }, - { - "at": 188.8256, - "frame": 1, - "type": "O" - }, - { - "at": 192.2432, - "frame": 1, - "type": "C" - }, - { - "at": 192.2432, - "frame": 1, - "type": "O" - }, - { - "at": 192.9394, - "frame": 2, - "type": "O" - }, - { - "at": 192.9933, - "frame": 2, - "type": "C" - }, - { - "at": 192.9933, - "frame": 3, - "type": "O" - }, - { - "at": 193.0195, - "frame": 3, - "type": "C" - }, - { - "at": 193.0195, - "frame": 4, - "type": "O" - }, - { - "at": 193.0481, - "frame": 4, - "type": "C" - }, - { - "at": 193.0481, - "frame": 5, - "type": "O" - }, - { - "at": 194.6097, - "frame": 5, - "type": "C" - }, - { - "at": 194.6097, - "frame": 6, - "type": "O" - }, - { - "at": 195.0204, - "frame": 6, - "type": "C" - }, - { - "at": 195.0204, - "frame": 7, - "type": "O" - }, - { - "at": 195.2231, - "frame": 7, - "type": "C" - }, - { - "at": 195.2231, - "frame": 8, - "type": "O" - }, - { - "at": 195.2471, - "frame": 8, - "type": "C" - }, - { - "at": 195.2471, - "frame": 9, - "type": "O" - }, - { - "at": 264.8167, - "frame": 9, - "type": "C" - }, - { - "at": 264.8167, - "frame": 10, - "type": "O" - }, - { - "at": 276.1394, - "frame": 11, - "type": "O" - }, - { - "at": 276.2502, - "frame": 11, - "type": "C" - }, - { - "at": 276.2502, - "frame": 12, - "type": "O" - }, - { - "at": 276.2797, - "frame": 12, - "type": "C" - }, - { - "at": 276.2797, - "frame": 13, - "type": "O" - }, - { - "at": 276.3057, - "frame": 13, - "type": "C" - }, - { - "at": 276.3057, - "frame": 14, - "type": "O" - }, - { - "at": 276.3161, - "frame": 14, - "type": "C" - }, - { - "at": 276.3161, - "frame": 15, - "type": "O" - }, - { - "at": 276.3239, - "frame": 15, - "type": "C" - }, - { - "at": 276.3239, - "frame": 16, - "type": "O" - }, - { - "at": 276.3328, - "frame": 16, - "type": "C" - }, - { - "at": 276.3328, - "frame": 17, - "type": "O" - }, - { - "at": 276.3407, - "frame": 17, - "type": "C" - }, - { - "at": 276.3407, - "frame": 18, - "type": "O" - }, - { - "at": 276.3484, - "frame": 18, - "type": "C" - }, - { - "at": 276.3484, - "frame": 19, - "type": "O" - }, - { - "at": 276.3558, - "frame": 19, - "type": "C" - }, - { - "at": 276.3558, - "frame": 20, - "type": "O" - }, - { - "at": 276.3682, - "frame": 20, - "type": "C" - }, - { - "at": 276.3682, - "frame": 21, - "type": "O" - }, - { - "at": 276.3768, - "frame": 21, - "type": "C" - }, - { - "at": 276.3768, - "frame": 22, - "type": "O" - }, - { - "at": 276.3855, - "frame": 22, - "type": "C" - }, - { - "at": 276.3855, - "frame": 23, - "type": "O" - }, - { - "at": 276.3938, - "frame": 23, - "type": "C" - }, - { - "at": 276.3938, - "frame": 24, - "type": "O" - }, - { - "at": 276.4015, - "frame": 24, - "type": "C" - }, - { - "at": 276.4015, - "frame": 25, - "type": "O" - }, - { - "at": 276.4085, - "frame": 25, - "type": "C" - }, - { - "at": 276.4085, - "frame": 26, - "type": "O" - }, - { - "at": 276.4166, - "frame": 26, - "type": "C" - }, - { - "at": 276.4166, - "frame": 27, - "type": "O" - }, - { - "at": 276.4246, - "frame": 27, - "type": "C" - }, - { - "at": 276.4246, - "frame": 28, - "type": "O" - }, - { - "at": 276.4336, - "frame": 28, - "type": "C" - }, - { - "at": 276.4336, - "frame": 29, - "type": "O" - }, - { - "at": 276.4449, - "frame": 29, - "type": "C" - }, - { - "at": 276.4449, - "frame": 30, - "type": "O" - }, - { - "at": 276.4529, - "frame": 30, - "type": "C" - }, - { - "at": 276.4529, - "frame": 31, - "type": "O" - }, - { - "at": 276.46, - "frame": 31, - "type": "C" - }, - { - "at": 276.46, - "frame": 32, - "type": "O" - }, - { - "at": 276.4671, - "frame": 32, - "type": "C" - }, - { - "at": 276.4671, - "frame": 33, - "type": "O" - }, - { - "at": 276.4743, - "frame": 33, - "type": "C" - }, - { - "at": 276.4743, - "frame": 34, - "type": "O" - }, - { - "at": 276.4814, - "frame": 34, - "type": "C" - }, - { - "at": 276.4814, - "frame": 35, - "type": "O" - }, - { - "at": 276.4884, - "frame": 35, - "type": "C" - }, - { - "at": 276.4884, - "frame": 36, - "type": "O" - }, - { - "at": 276.4956, - "frame": 36, - "type": "C" - }, - { - "at": 276.4956, - "frame": 37, - "type": "O" - }, - { - "at": 276.5168, - "frame": 37, - "type": "C" - }, - { - "at": 276.5168, - "frame": 38, - "type": "O" - }, - { - "at": 276.5313, - "frame": 38, - "type": "C" - }, - { - "at": 276.5313, - "frame": 14, - "type": "O" - }, - { - "at": 276.5395, - "frame": 14, - "type": "C" - }, - { - "at": 276.5395, - "frame": 15, - "type": "O" - }, - { - "at": 276.5469, - "frame": 15, - "type": "C" - }, - { - "at": 276.5469, - "frame": 16, - "type": "O" - }, - { - "at": 276.5541, - "frame": 16, - "type": "C" - }, - { - "at": 276.5541, - "frame": 17, - "type": "O" - }, - { - "at": 276.5612, - "frame": 17, - "type": "C" - }, - { - "at": 276.5612, - "frame": 18, - "type": "O" - }, - { - "at": 276.5689, - "frame": 18, - "type": "C" - }, - { - "at": 276.5689, - "frame": 21, - "type": "O" - }, - { - "at": 276.576, - "frame": 21, - "type": "C" - }, - { - "at": 276.576, - "frame": 25, - "type": "O" - }, - { - "at": 276.5831, - "frame": 25, - "type": "C" - }, - { - "at": 276.5831, - "frame": 28, - "type": "O" - }, - { - "at": 276.5902, - "frame": 28, - "type": "C" - }, - { - "at": 276.5902, - "frame": 29, - "type": "O" - }, - { - "at": 276.598, - "frame": 29, - "type": "C" - }, - { - "at": 276.598, - "frame": 39, - "type": "O" - }, - { - "at": 276.6069, - "frame": 39, - "type": "C" - }, - { - "at": 276.6069, - "frame": 31, - "type": "O" - }, - { - "at": 276.622, - "frame": 31, - "type": "C" - }, - { - "at": 276.622, - "frame": 40, - "type": "O" - }, - { - "at": 276.6296, - "frame": 40, - "type": "C" - }, - { - "at": 276.6296, - "frame": 36, - "type": "O" - }, - { - "at": 276.7524, - "frame": 36, - "type": "C" - }, - { - "at": 276.7524, - "frame": 41, - "type": "O" - }, - { - "at": 278.7161, - "frame": 41, - "type": "C" - }, - { - "at": 278.7161, - "frame": 10, - "type": "C" - }, - { - "at": 278.7161, - "frame": 42, - "type": "O" - }, - { - "at": 288.418, - "frame": 42, - "type": "C" - }, - { - "at": 288.418, - "frame": 43, - "type": "O" - }, - { - "at": 288.4749, - "frame": 43, - "type": "C" - }, - { - "at": 288.4749, - "frame": 44, - "type": "O" - }, - { - "at": 290.3104, - "frame": 44, - "type": "C" - }, - { - "at": 290.3104, - "frame": 45, - "type": "O" - }, - { - "at": 290.3441, - "frame": 45, - "type": "C" - }, - { - "at": 290.3441, - "frame": 46, - "type": "O" - }, - { - "at": 400.3711, - "frame": 46, - "type": "C" - }, - { - "at": 400.3711, - "frame": 47, - "type": "O" - }, - { - "at": 467.0122, - "frame": 47, - "type": "C" - }, - { - "at": 467.0122, - "frame": 48, - "type": "O" - }, - { - "at": 467.0548, - "frame": 48, - "type": "C" - }, - { - "at": 467.0548, - "frame": 49, - "type": "O" - }, - { - "at": 467.0918, - "frame": 49, - "type": "C" - }, - { - "at": 467.0918, - "frame": 50, - "type": "O" - }, - { - "at": 467.131, - "frame": 50, - "type": "C" - }, - { - "at": 467.131, - "frame": 51, - "type": "O" - }, - { - "at": 467.203, - "frame": 51, - "type": "C" - }, - { - "at": 467.203, - "frame": 52, - "type": "O" - }, - { - "at": 467.2245, - "frame": 52, - "type": "C" - }, - { - "at": 467.2245, - "frame": 53, - "type": "O" - }, - { - "at": 468.7961, - "frame": 53, - "type": "C" - }, - { - "at": 468.7961, - "frame": 54, - "type": "O" - }, - { - "at": 471.643, - "frame": 54, - "type": "C" - }, - { - "at": 471.643, - "frame": 55, - "type": "O" - }, - { - "at": 471.7349, - "frame": 55, - "type": "C" - }, - { - "at": 471.7349, - "frame": 56, - "type": "O" - }, - { - "at": 471.7719, - "frame": 56, - "type": "C" - }, - { - "at": 471.7719, - "frame": 57, - "type": "O" - }, - { - "at": 480.0432, - "frame": 57, - "type": "C" - }, - { - "at": 480.0432, - "frame": 58, - "type": "O" - }, - { - "at": 480.1064, - "frame": 58, - "type": "C" - }, - { - "at": 480.1064, - "frame": 59, - "type": "O" - }, - { - "at": 482.3118, - "frame": 59, - "type": "C" - }, - { - "at": 482.3118, - "frame": 60, - "type": "O" - }, - { - "at": 482.3568, - "frame": 60, - "type": "C" - }, - { - "at": 482.3568, - "frame": 61, - "type": "O" - }, - { - "at": 482.3818, - "frame": 61, - "type": "C" - }, - { - "at": 482.3818, - "frame": 62, - "type": "O" - }, - { - "at": 483.5192, - "frame": 62, - "type": "C" - }, - { - "at": 483.5192, - "frame": 62, - "type": "O" - }, - { - "at": 483.585, - "frame": 62, - "type": "C" - }, - { - "at": 483.585, - "frame": 62, - "type": "O" - }, - { - "at": 483.6033, - "frame": 62, - "type": "C" - }, - { - "at": 483.6033, - "frame": 62, - "type": "O" - }, - { - "at": 483.6196, - "frame": 62, - "type": "C" - }, - { - "at": 483.6196, - "frame": 62, - "type": "O" - }, - { - "at": 483.6398, - "frame": 62, - "type": "C" - }, - { - "at": 483.6398, - "frame": 62, - "type": "O" - }, - { - "at": 483.6562, - "frame": 62, - "type": "C" - }, - { - "at": 483.6562, - "frame": 62, - "type": "O" - }, - { - "at": 483.672, - "frame": 62, - "type": "C" - }, - { - "at": 483.672, - "frame": 63, - "type": "O" - }, - { - "at": 483.6872, - "frame": 63, - "type": "C" - }, - { - "at": 483.6872, - "frame": 62, - "type": "O" - }, - { - "at": 483.7053, - "frame": 62, - "type": "C" - }, - { - "at": 483.7053, - "frame": 62, - "type": "O" - }, - { - "at": 483.7218, - "frame": 62, - "type": "C" - }, - { - "at": 483.7218, - "frame": 62, - "type": "O" - }, - { - "at": 483.7376, - "frame": 62, - "type": "C" - }, - { - "at": 483.7376, - "frame": 62, - "type": "O" - }, - { - "at": 483.7534, - "frame": 62, - "type": "C" - }, - { - "at": 483.7534, - "frame": 62, - "type": "O" - }, - { - "at": 483.7684, - "frame": 62, - "type": "C" - }, - { - "at": 483.7684, - "frame": 62, - "type": "O" - }, - { - "at": 483.7853, - "frame": 62, - "type": "C" - }, - { - "at": 483.7853, - "frame": 62, - "type": "O" - }, - { - "at": 483.9601, - "frame": 62, - "type": "C" - }, - { - "at": 483.9601, - "frame": 64, - "type": "O" - }, - { - "at": 484.1025, - "frame": 64, - "type": "C" - }, - { - "at": 484.1025, - "frame": 65, - "type": "O" - }, - { - "at": 487.5269, - "frame": 65, - "type": "C" - }, - { - "at": 487.5269, - "frame": 64, - "type": "O" - }, - { - "at": 487.5732, - "frame": 64, - "type": "C" - }, - { - "at": 487.5732, - "frame": 66, - "type": "O" - }, - { - "at": 487.6019, - "frame": 66, - "type": "C" - }, - { - "at": 487.6019, - "frame": 67, - "type": "O" - }, - { - "at": 487.6371, - "frame": 67, - "type": "C" - }, - { - "at": 487.6371, - "frame": 68, - "type": "O" - }, - { - "at": 487.897, - "frame": 68, - "type": "C" - }, - { - "at": 487.897, - "frame": 67, - "type": "O" - }, - { - "at": 487.922, - "frame": 67, - "type": "C" - }, - { - "at": 487.922, - "frame": 68, - "type": "O" - }, - { - "at": 488.0877, - "frame": 68, - "type": "C" - }, - { - "at": 488.0877, - "frame": 67, - "type": "O" - }, - { - "at": 488.1068, - "frame": 67, - "type": "C" - }, - { - "at": 488.1068, - "frame": 68, - "type": "O" - }, - { - "at": 488.2523, - "frame": 68, - "type": "C" - }, - { - "at": 488.2523, - "frame": 67, - "type": "O" - }, - { - "at": 488.2705, - "frame": 67, - "type": "C" - }, - { - "at": 488.2705, - "frame": 68, - "type": "O" - }, - { - "at": 488.4142, - "frame": 68, - "type": "C" - }, - { - "at": 488.4142, - "frame": 67, - "type": "O" - }, - { - "at": 488.4306, - "frame": 67, - "type": "C" - }, - { - "at": 488.4306, - "frame": 68, - "type": "O" - }, - { - "at": 488.5704, - "frame": 68, - "type": "C" - }, - { - "at": 488.5704, - "frame": 67, - "type": "O" - }, - { - "at": 488.5883, - "frame": 67, - "type": "C" - }, - { - "at": 488.5883, - "frame": 68, - "type": "O" - }, - { - "at": 488.725, - "frame": 68, - "type": "C" - }, - { - "at": 488.725, - "frame": 67, - "type": "O" - }, - { - "at": 488.7418, - "frame": 67, - "type": "C" - }, - { - "at": 488.7418, - "frame": 68, - "type": "O" - }, - { - "at": 488.8816, - "frame": 68, - "type": "C" - }, - { - "at": 488.8816, - "frame": 67, - "type": "O" - }, - { - "at": 488.8984, - "frame": 67, - "type": "C" - }, - { - "at": 488.8984, - "frame": 68, - "type": "O" - }, - { - "at": 489.0364, - "frame": 68, - "type": "C" - }, - { - "at": 489.0364, - "frame": 67, - "type": "O" - }, - { - "at": 489.0534, - "frame": 67, - "type": "C" - }, - { - "at": 489.0534, - "frame": 68, - "type": "O" - }, - { - "at": 489.1895, - "frame": 68, - "type": "C" - }, - { - "at": 489.1895, - "frame": 67, - "type": "O" - }, - { - "at": 489.2056, - "frame": 67, - "type": "C" - }, - { - "at": 489.2056, - "frame": 68, - "type": "O" - }, - { - "at": 489.3412, - "frame": 68, - "type": "C" - }, - { - "at": 489.3412, - "frame": 67, - "type": "O" - }, - { - "at": 489.3574, - "frame": 67, - "type": "C" - }, - { - "at": 489.3574, - "frame": 68, - "type": "O" - }, - { - "at": 489.4881, - "frame": 68, - "type": "C" - }, - { - "at": 489.4881, - "frame": 67, - "type": "O" - }, - { - "at": 489.5047, - "frame": 67, - "type": "C" - }, - { - "at": 489.5047, - "frame": 68, - "type": "O" - }, - { - "at": 489.6375, - "frame": 68, - "type": "C" - }, - { - "at": 489.6375, - "frame": 67, - "type": "O" - }, - { - "at": 489.6539, - "frame": 67, - "type": "C" - }, - { - "at": 489.6539, - "frame": 68, - "type": "O" - }, - { - "at": 489.786, - "frame": 68, - "type": "C" - }, - { - "at": 489.786, - "frame": 67, - "type": "O" - }, - { - "at": 489.8026, - "frame": 67, - "type": "C" - }, - { - "at": 489.8026, - "frame": 68, - "type": "O" - }, - { - "at": 489.9319, - "frame": 68, - "type": "C" - }, - { - "at": 489.9319, - "frame": 67, - "type": "O" - }, - { - "at": 489.9482, - "frame": 67, - "type": "C" - }, - { - "at": 489.9482, - "frame": 68, - "type": "O" - }, - { - "at": 490.0797, - "frame": 68, - "type": "C" - }, - { - "at": 490.0797, - "frame": 67, - "type": "O" - }, - { - "at": 490.0996, - "frame": 67, - "type": "C" - }, - { - "at": 490.0996, - "frame": 69, - "type": "O" - }, - { - "at": 490.1213, - "frame": 69, - "type": "C" - }, - { - "at": 490.1213, - "frame": 70, - "type": "O" - }, - { - "at": 490.1352, - "frame": 70, - "type": "C" - }, - { - "at": 490.1352, - "frame": 71, - "type": "O" - }, - { - "at": 497.7244, - "frame": 71, - "type": "C" - }, - { - "at": 497.7244, - "frame": 72, - "type": "O" - }, - { - "at": 499.8572, - "frame": 72, - "type": "C" - }, - { - "at": 499.8572, - "frame": 73, - "type": "O" - }, - { - "at": 503.2636, - "frame": 73, - "type": "C" - }, - { - "at": 503.2636, - "frame": 74, - "type": "O" - }, - { - "at": 503.3122, - "frame": 74, - "type": "C" - }, - { - "at": 503.3122, - "frame": 75, - "type": "O" - }, - { - "at": 506.9546, - "frame": 75, - "type": "C" - }, - { - "at": 506.9546, - "frame": 76, - "type": "O" - }, - { - "at": 506.9853, - "frame": 76, - "type": "C" - }, - { - "at": 506.9853, - "frame": 77, - "type": "O" - }, - { - "at": 507.0251, - "frame": 77, - "type": "C" - }, - { - "at": 507.0251, - "frame": 78, - "type": "O" - }, - { - "at": 511.0114, - "frame": 78, - "type": "C" - }, - { - "at": 511.0114, - "frame": 79, - "type": "O" - }, - { - "at": 512.3373, - "frame": 80, - "type": "O" - }, - { - "at": 512.352, - "frame": 80, - "type": "C" - }, - { - "at": 512.352, - "frame": 80, - "type": "O" - }, - { - "at": 512.9054, - "frame": 80, - "type": "C" - }, - { - "at": 512.9054, - "frame": 80, - "type": "O" - }, - { - "at": 512.988, - "frame": 80, - "type": "C" - }, - { - "at": 512.988, - "frame": 81, - "type": "O" - }, - { - "at": 514.5687, - "frame": 81, - "type": "C" - }, - { - "at": 514.5687, - "frame": 79, - "type": "C" - }, - { - "at": 514.5687, - "frame": 82, - "type": "O" - }, - { - "at": 514.6041, - "frame": 82, - "type": "C" - }, - { - "at": 514.6041, - "frame": 83, - "type": "O" - }, - { - "at": 515.6394, - "frame": 83, - "type": "C" - }, - { - "at": 515.6394, - "frame": 84, - "type": "O" - }, - { - "at": 515.667, - "frame": 84, - "type": "C" - }, - { - "at": 515.667, - "frame": 67, - "type": "O" - }, - { - "at": 515.6854, - "frame": 67, - "type": "C" - }, - { - "at": 515.6854, - "frame": 85, - "type": "O" - }, - { - "at": 515.722, - "frame": 85, - "type": "C" - }, - { - "at": 515.722, - "frame": 86, - "type": "O" - }, - { - "at": 519.1567, - "frame": 86, - "type": "C" - }, - { - "at": 519.1567, - "frame": 87, - "type": "O" - }, - { - "at": 519.1946, - "frame": 87, - "type": "C" - }, - { - "at": 519.1946, - "frame": 88, - "type": "O" - }, - { - "at": 519.2154, - "frame": 88, - "type": "C" - }, - { - "at": 519.2154, - "frame": 89, - "type": "O" - }, - { - "at": 520.4132, - "frame": 89, - "type": "C" - }, - { - "at": 520.4132, - "frame": 66, - "type": "O" - }, - { - "at": 520.4473, - "frame": 66, - "type": "C" - }, - { - "at": 520.4473, - "frame": 64, - "type": "O" - }, - { - "at": 520.4658, - "frame": 64, - "type": "C" - }, - { - "at": 520.4658, - "frame": 90, - "type": "O" - }, - { - "at": 520.5006, - "frame": 90, - "type": "C" - }, - { - "at": 520.5006, - "frame": 91, - "type": "O" - }, - { - "at": 520.5735, - "frame": 91, - "type": "C" - }, - { - "at": 520.5735, - "frame": 92, - "type": "O" - }, - { - "at": 521.6437, - "frame": 92, - "type": "C" - }, - { - "at": 521.6437, - "frame": 93, - "type": "O" - }, - { - "at": 521.6714, - "frame": 93, - "type": "C" - }, - { - "at": 521.6714, - "frame": 94, - "type": "O" - }, - { - "at": 528.3577, - "frame": 95, - "type": "O" - }, - { - "at": 528.3765, - "frame": 95, - "type": "C" - }, - { - "at": 528.3765, - "frame": 95, - "type": "O" - }, - { - "at": 536.0587, - "frame": 95, - "type": "C" - }, - { - "at": 536.0587, - "frame": 95, - "type": "O" - }, - { - "at": 537.3766, - "frame": 95, - "type": "C" - }, - { - "at": 537.3766, - "frame": 95, - "type": "O" - }, - { - "at": 537.4149, - "frame": 95, - "type": "C" - }, - { - "at": 537.4149, - "frame": 95, - "type": "O" - }, - { - "at": 537.4857, - "frame": 95, - "type": "C" - }, - { - "at": 537.4857, - "frame": 96, - "type": "O" - }, - { - "at": 537.7202, - "frame": 96, - "type": "C" - }, - { - "at": 537.7202, - "frame": 94, - "type": "C" - }, - { - "at": 537.7202, - "frame": 67, - "type": "O" - }, - { - "at": 537.7443, - "frame": 67, - "type": "C" - }, - { - "at": 537.7443, - "frame": 77, - "type": "O" - }, - { - "at": 537.7718, - "frame": 77, - "type": "C" - }, - { - "at": 537.7718, - "frame": 78, - "type": "O" - }, - { - "at": 538.1509, - "frame": 78, - "type": "C" - }, - { - "at": 538.1509, - "frame": 79, - "type": "O" - }, - { - "at": 539.3028, - "frame": 97, - "type": "O" - }, - { - "at": 539.3368, - "frame": 97, - "type": "C" - }, - { - "at": 539.3368, - "frame": 97, - "type": "O" - }, - { - "at": 541.7798, - "frame": 97, - "type": "C" - }, - { - "at": 541.7798, - "frame": 97, - "type": "O" - }, - { - "at": 543.4385, - "frame": 97, - "type": "C" - }, - { - "at": 543.4385, - "frame": 97, - "type": "O" - }, - { - "at": 543.5236, - "frame": 97, - "type": "C" - }, - { - "at": 543.5236, - "frame": 81, - "type": "O" - }, - { - "at": 543.5405, - "frame": 81, - "type": "C" - }, - { - "at": 543.5405, - "frame": 79, - "type": "C" - }, - { - "at": 543.5405, - "frame": 82, - "type": "O" - }, - { - "at": 543.554, - "frame": 82, - "type": "C" - }, - { - "at": 543.554, - "frame": 83, - "type": "O" - }, - { - "at": 543.5706, - "frame": 83, - "type": "C" - }, - { - "at": 543.5706, - "frame": 84, - "type": "O" - }, - { - "at": 543.5863, - "frame": 84, - "type": "C" - }, - { - "at": 543.5863, - "frame": 67, - "type": "O" - }, - { - "at": 543.6022, - "frame": 67, - "type": "C" - }, - { - "at": 543.6022, - "frame": 85, - "type": "O" - }, - { - "at": 543.634, - "frame": 85, - "type": "C" - }, - { - "at": 543.634, - "frame": 86, - "type": "O" - }, - { - "at": 543.6682, - "frame": 86, - "type": "C" - }, - { - "at": 543.6682, - "frame": 87, - "type": "O" - }, - { - "at": 543.6836, - "frame": 87, - "type": "C" - }, - { - "at": 543.6836, - "frame": 88, - "type": "O" - }, - { - "at": 543.6965, - "frame": 88, - "type": "C" - }, - { - "at": 543.6965, - "frame": 89, - "type": "O" - }, - { - "at": 543.7164, - "frame": 89, - "type": "C" - }, - { - "at": 543.7164, - "frame": 66, - "type": "O" - }, - { - "at": 543.73, - "frame": 66, - "type": "C" - }, - { - "at": 543.73, - "frame": 64, - "type": "O" - }, - { - "at": 543.7435, - "frame": 64, - "type": "C" - }, - { - "at": 543.7435, - "frame": 90, - "type": "O" - }, - { - "at": 543.7582, - "frame": 90, - "type": "C" - }, - { - "at": 543.7582, - "frame": 91, - "type": "O" - }, - { - "at": 543.7854, - "frame": 91, - "type": "C" - }, - { - "at": 543.7854, - "frame": 92, - "type": "O" - }, - { - "at": 543.7988, - "frame": 92, - "type": "C" - }, - { - "at": 543.7988, - "frame": 93, - "type": "O" - }, - { - "at": 543.8114, - "frame": 93, - "type": "C" - }, - { - "at": 543.8114, - "frame": 94, - "type": "O" - }, - { - "at": 544.0733, - "frame": 95, - "type": "O" - }, - { - "at": 544.0872, - "frame": 95, - "type": "C" - }, - { - "at": 544.0872, - "frame": 95, - "type": "O" - }, - { - "at": 544.4195, - "frame": 95, - "type": "C" - }, - { - "at": 544.4195, - "frame": 95, - "type": "O" - }, - { - "at": 544.443, - "frame": 95, - "type": "C" - }, - { - "at": 544.443, - "frame": 95, - "type": "O" - }, - { - "at": 544.4617, - "frame": 95, - "type": "C" - }, - { - "at": 544.4617, - "frame": 95, - "type": "O" - }, - { - "at": 544.5154, - "frame": 95, - "type": "C" - }, - { - "at": 544.5154, - "frame": 96, - "type": "O" - }, - { - "at": 544.7338, - "frame": 96, - "type": "C" - }, - { - "at": 544.7338, - "frame": 94, - "type": "C" - }, - { - "at": 544.7338, - "frame": 67, - "type": "O" - }, - { - "at": 544.7554, - "frame": 67, - "type": "C" - }, - { - "at": 544.7554, - "frame": 77, - "type": "O" - }, - { - "at": 544.7816, - "frame": 77, - "type": "C" - }, - { - "at": 544.7816, - "frame": 78, - "type": "O" - }, - { - "at": 545.109, - "frame": 78, - "type": "C" - }, - { - "at": 545.109, - "frame": 79, - "type": "O" - }, - { - "at": 546.1138, - "frame": 98, - "type": "O" - }, - { - "at": 546.1449, - "frame": 98, - "type": "C" - }, - { - "at": 546.1449, - "frame": 98, - "type": "O" - }, - { - "at": 546.1675, - "frame": 98, - "type": "C" - }, - { - "at": 546.1675, - "frame": 98, - "type": "O" - }, - { - "at": 552.8488, - "frame": 98, - "type": "C" - }, - { - "at": 552.8488, - "frame": 98, - "type": "O" - }, - { - "at": 554.6033, - "frame": 98, - "type": "C" - }, - { - "at": 554.6033, - "frame": 98, - "type": "O" - }, - { - "at": 554.675, - "frame": 98, - "type": "C" - }, - { - "at": 554.675, - "frame": 81, - "type": "O" - }, - { - "at": 554.6916, - "frame": 81, - "type": "C" - }, - { - "at": 554.6916, - "frame": 79, - "type": "C" - }, - { - "at": 554.6916, - "frame": 82, - "type": "O" - }, - { - "at": 554.7042, - "frame": 82, - "type": "C" - }, - { - "at": 554.7042, - "frame": 83, - "type": "O" - }, - { - "at": 554.7201, - "frame": 83, - "type": "C" - }, - { - "at": 554.7201, - "frame": 84, - "type": "O" - }, - { - "at": 554.7386, - "frame": 84, - "type": "C" - }, - { - "at": 554.7386, - "frame": 67, - "type": "O" - }, - { - "at": 554.7766, - "frame": 67, - "type": "C" - }, - { - "at": 554.7766, - "frame": 85, - "type": "O" - }, - { - "at": 554.8191, - "frame": 85, - "type": "C" - }, - { - "at": 554.8191, - "frame": 86, - "type": "O" - }, - { - "at": 554.8742, - "frame": 86, - "type": "C" - }, - { - "at": 554.8742, - "frame": 87, - "type": "O" - }, - { - "at": 554.9103, - "frame": 87, - "type": "C" - }, - { - "at": 554.9103, - "frame": 99, - "type": "O" - }, - { - "at": 554.9369, - "frame": 99, - "type": "C" - }, - { - "at": 554.9369, - "frame": 88, - "type": "O" - }, - { - "at": 554.9667, - "frame": 88, - "type": "C" - }, - { - "at": 554.9667, - "frame": 89, - "type": "O" - }, - { - "at": 555.0067, - "frame": 89, - "type": "C" - }, - { - "at": 555.0067, - "frame": 66, - "type": "O" - }, - { - "at": 555.0295, - "frame": 66, - "type": "C" - }, - { - "at": 555.0295, - "frame": 64, - "type": "O" - }, - { - "at": 555.05, - "frame": 64, - "type": "C" - }, - { - "at": 555.05, - "frame": 90, - "type": "O" - }, - { - "at": 555.1054, - "frame": 90, - "type": "C" - }, - { - "at": 555.1054, - "frame": 91, - "type": "O" - }, - { - "at": 555.1455, - "frame": 91, - "type": "C" - }, - { - "at": 555.1455, - "frame": 92, - "type": "O" - }, - { - "at": 555.16, - "frame": 92, - "type": "C" - }, - { - "at": 555.16, - "frame": 93, - "type": "O" - }, - { - "at": 555.173, - "frame": 93, - "type": "C" - }, - { - "at": 555.173, - "frame": 94, - "type": "O" - }, - { - "at": 555.479, - "frame": 95, - "type": "O" - }, - { - "at": 555.4939, - "frame": 95, - "type": "C" - }, - { - "at": 555.4939, - "frame": 95, - "type": "O" - }, - { - "at": 555.5718, - "frame": 95, - "type": "C" - }, - { - "at": 555.5718, - "frame": 95, - "type": "O" - }, - { - "at": 555.5869, - "frame": 95, - "type": "C" - }, - { - "at": 555.5869, - "frame": 95, - "type": "O" - }, - { - "at": 555.6039, - "frame": 95, - "type": "C" - }, - { - "at": 555.6039, - "frame": 95, - "type": "O" - }, - { - "at": 555.6507, - "frame": 95, - "type": "C" - }, - { - "at": 555.6507, - "frame": 96, - "type": "O" - }, - { - "at": 555.8561, - "frame": 96, - "type": "C" - }, - { - "at": 555.8561, - "frame": 94, - "type": "C" - }, - { - "at": 555.8561, - "frame": 67, - "type": "O" - }, - { - "at": 555.8784, - "frame": 67, - "type": "C" - }, - { - "at": 555.8784, - "frame": 77, - "type": "O" - }, - { - "at": 555.9017, - "frame": 77, - "type": "C" - }, - { - "at": 555.9017, - "frame": 78, - "type": "O" - }, - { - "at": 556.2311, - "frame": 78, - "type": "C" - }, - { - "at": 556.2311, - "frame": 79, - "type": "O" - }, - { - "at": 557.2413, - "frame": 100, - "type": "O" - }, - { - "at": 557.258, - "frame": 100, - "type": "C" - }, - { - "at": 557.258, - "frame": 100, - "type": "O" - }, - { - "at": 576.2354, - "frame": 100, - "type": "C" - }, - { - "at": 576.2354, - "frame": 100, - "type": "O" - }, - { - "at": 579.8996, - "frame": 100, - "type": "C" - }, - { - "at": 579.8996, - "frame": 100, - "type": "O" - }, - { - "at": 579.9854, - "frame": 100, - "type": "C" - }, - { - "at": 579.9854, - "frame": 81, - "type": "O" - }, - { - "at": 580.0039, - "frame": 81, - "type": "C" - }, - { - "at": 580.0039, - "frame": 79, - "type": "C" - }, - { - "at": 580.0039, - "frame": 82, - "type": "O" - }, - { - "at": 580.0161, - "frame": 82, - "type": "C" - }, - { - "at": 580.0161, - "frame": 83, - "type": "O" - }, - { - "at": 580.0341, - "frame": 83, - "type": "C" - }, - { - "at": 580.0341, - "frame": 84, - "type": "O" - }, - { - "at": 580.0498, - "frame": 84, - "type": "C" - }, - { - "at": 580.0498, - "frame": 67, - "type": "O" - }, - { - "at": 580.0677, - "frame": 67, - "type": "C" - }, - { - "at": 580.0677, - "frame": 85, - "type": "O" - }, - { - "at": 580.103, - "frame": 85, - "type": "C" - }, - { - "at": 580.103, - "frame": 86, - "type": "O" - }, - { - "at": 580.1382, - "frame": 86, - "type": "C" - }, - { - "at": 580.1382, - "frame": 87, - "type": "O" - }, - { - "at": 580.1562, - "frame": 87, - "type": "C" - }, - { - "at": 580.1562, - "frame": 99, - "type": "O" - }, - { - "at": 580.1696, - "frame": 99, - "type": "C" - }, - { - "at": 580.1696, - "frame": 88, - "type": "O" - }, - { - "at": 580.1825, - "frame": 88, - "type": "C" - }, - { - "at": 580.1825, - "frame": 89, - "type": "O" - }, - { - "at": 580.2016, - "frame": 89, - "type": "C" - }, - { - "at": 580.2016, - "frame": 66, - "type": "O" - }, - { - "at": 580.2175, - "frame": 66, - "type": "C" - }, - { - "at": 580.2175, - "frame": 64, - "type": "O" - }, - { - "at": 580.2288, - "frame": 64, - "type": "C" - }, - { - "at": 580.2288, - "frame": 90, - "type": "O" - }, - { - "at": 580.2431, - "frame": 90, - "type": "C" - }, - { - "at": 580.2431, - "frame": 91, - "type": "O" - }, - { - "at": 580.2702, - "frame": 91, - "type": "C" - }, - { - "at": 580.2702, - "frame": 92, - "type": "O" - }, - { - "at": 580.2834, - "frame": 92, - "type": "C" - }, - { - "at": 580.2834, - "frame": 93, - "type": "O" - }, - { - "at": 580.2961, - "frame": 93, - "type": "C" - }, - { - "at": 580.2961, - "frame": 94, - "type": "O" - }, - { - "at": 580.5969, - "frame": 95, - "type": "O" - }, - { - "at": 580.6112, - "frame": 95, - "type": "C" - }, - { - "at": 580.6112, - "frame": 95, - "type": "O" - }, - { - "at": 580.6974, - "frame": 95, - "type": "C" - }, - { - "at": 580.6974, - "frame": 95, - "type": "O" - }, - { - "at": 580.7125, - "frame": 95, - "type": "C" - }, - { - "at": 580.7125, - "frame": 95, - "type": "O" - }, - { - "at": 580.799, - "frame": 95, - "type": "C" - }, - { - "at": 580.799, - "frame": 95, - "type": "O" - }, - { - "at": 580.8479, - "frame": 95, - "type": "C" - }, - { - "at": 580.8479, - "frame": 96, - "type": "O" - }, - { - "at": 581.0634, - "frame": 96, - "type": "C" - }, - { - "at": 581.0634, - "frame": 94, - "type": "C" - }, - { - "at": 581.0634, - "frame": 67, - "type": "O" - }, - { - "at": 581.0872, - "frame": 67, - "type": "C" - }, - { - "at": 581.0872, - "frame": 77, - "type": "O" - }, - { - "at": 581.1112, - "frame": 77, - "type": "C" - }, - { - "at": 581.1112, - "frame": 78, - "type": "O" - }, - { - "at": 581.4592, - "frame": 78, - "type": "C" - }, - { - "at": 581.4592, - "frame": 79, - "type": "O" - }, - { - "at": 582.7844, - "frame": 101, - "type": "O" - }, - { - "at": 582.7978, - "frame": 101, - "type": "C" - }, - { - "at": 582.7978, - "frame": 101, - "type": "O" - }, - { - "at": 582.8208, - "frame": 101, - "type": "C" - }, - { - "at": 582.8208, - "frame": 101, - "type": "O" - }, - { - "at": 587.2929, - "frame": 101, - "type": "C" - }, - { - "at": 587.2929, - "frame": 101, - "type": "O" - }, - { - "at": 587.3771, - "frame": 101, - "type": "C" - }, - { - "at": 587.3771, - "frame": 81, - "type": "O" - }, - { - "at": 587.3934, - "frame": 81, - "type": "C" - }, - { - "at": 587.3934, - "frame": 79, - "type": "C" - }, - { - "at": 587.3934, - "frame": 82, - "type": "O" - }, - { - "at": 587.4052, - "frame": 82, - "type": "C" - }, - { - "at": 587.4052, - "frame": 83, - "type": "O" - }, - { - "at": 587.4218, - "frame": 83, - "type": "C" - }, - { - "at": 587.4218, - "frame": 84, - "type": "O" - }, - { - "at": 587.436, - "frame": 84, - "type": "C" - }, - { - "at": 587.436, - "frame": 67, - "type": "O" - }, - { - "at": 587.4511, - "frame": 67, - "type": "C" - }, - { - "at": 587.4511, - "frame": 85, - "type": "O" - }, - { - "at": 587.4733, - "frame": 85, - "type": "C" - }, - { - "at": 587.4733, - "frame": 86, - "type": "O" - }, - { - "at": 587.5176, - "frame": 86, - "type": "C" - }, - { - "at": 587.5176, - "frame": 87, - "type": "O" - }, - { - "at": 587.5357, - "frame": 87, - "type": "C" - }, - { - "at": 587.5357, - "frame": 99, - "type": "O" - }, - { - "at": 587.5489, - "frame": 99, - "type": "C" - }, - { - "at": 587.5489, - "frame": 88, - "type": "O" - }, - { - "at": 587.562, - "frame": 88, - "type": "C" - }, - { - "at": 587.562, - "frame": 89, - "type": "O" - }, - { - "at": 587.5815, - "frame": 89, - "type": "C" - }, - { - "at": 587.5815, - "frame": 66, - "type": "O" - }, - { - "at": 587.5943, - "frame": 66, - "type": "C" - }, - { - "at": 587.5943, - "frame": 64, - "type": "O" - }, - { - "at": 587.6078, - "frame": 64, - "type": "C" - }, - { - "at": 587.6078, - "frame": 90, - "type": "O" - }, - { - "at": 587.6232, - "frame": 90, - "type": "C" - }, - { - "at": 587.6232, - "frame": 91, - "type": "O" - }, - { - "at": 587.6503, - "frame": 91, - "type": "C" - }, - { - "at": 587.6503, - "frame": 92, - "type": "O" - }, - { - "at": 587.6637, - "frame": 92, - "type": "C" - }, - { - "at": 587.6637, - "frame": 93, - "type": "O" - }, - { - "at": 587.6755, - "frame": 93, - "type": "C" - }, - { - "at": 587.6755, - "frame": 94, - "type": "O" - }, - { - "at": 587.9317, - "frame": 95, - "type": "O" - }, - { - "at": 587.9467, - "frame": 95, - "type": "C" - }, - { - "at": 587.9467, - "frame": 95, - "type": "O" - }, - { - "at": 588.0227, - "frame": 95, - "type": "C" - }, - { - "at": 588.0227, - "frame": 95, - "type": "O" - }, - { - "at": 588.0389, - "frame": 95, - "type": "C" - }, - { - "at": 588.0389, - "frame": 95, - "type": "O" - }, - { - "at": 588.0558, - "frame": 95, - "type": "C" - }, - { - "at": 588.0558, - "frame": 95, - "type": "O" - }, - { - "at": 588.0997, - "frame": 95, - "type": "C" - }, - { - "at": 588.0997, - "frame": 96, - "type": "O" - }, - { - "at": 588.2979, - "frame": 96, - "type": "C" - }, - { - "at": 588.2979, - "frame": 94, - "type": "C" - }, - { - "at": 588.2979, - "frame": 67, - "type": "O" - }, - { - "at": 588.3217, - "frame": 67, - "type": "C" - }, - { - "at": 588.3217, - "frame": 77, - "type": "O" - }, - { - "at": 588.345, - "frame": 77, - "type": "C" - }, - { - "at": 588.345, - "frame": 78, - "type": "O" - }, - { - "at": 588.6708, - "frame": 78, - "type": "C" - }, - { - "at": 588.6708, - "frame": 79, - "type": "O" - }, - { - "at": 592.5505, - "frame": 102, - "type": "O" - }, - { - "at": 592.565, - "frame": 102, - "type": "C" - }, - { - "at": 592.565, - "frame": 102, - "type": "O" - }, - { - "at": 622.6879, - "frame": 102, - "type": "C" - }, - { - "at": 622.6879, - "frame": 102, - "type": "O" - }, - { - "at": 622.7297, - "frame": 102, - "type": "C" - }, - { - "at": 622.7297, - "frame": 102, - "type": "O" - }, - { - "at": 629.1241, - "frame": 103, - "type": "O" - }, - { - "at": 629.1416, - "frame": 103, - "type": "C" - }, - { - "at": 629.1416, - "frame": 104, - "type": "O" - }, - { - "at": 632.549, - "frame": 104, - "type": "C" - }, - { - "at": 632.549, - "frame": 105, - "type": "O" - }, - { - "at": 632.618, - "frame": 105, - "type": "C" - }, - { - "at": 632.618, - "frame": 102, - "type": "O" - }, - { - "at": 634.1347, - "frame": 103, - "type": "O" - }, - { - "at": 634.1499, - "frame": 103, - "type": "C" - }, - { - "at": 634.1499, - "frame": 102, - "type": "C" - }, - { - "at": 634.1499, - "frame": 106, - "type": "O" - }, - { - "at": 635.3631, - "frame": 106, - "type": "C" - }, - { - "at": 635.3631, - "frame": 105, - "type": "O" - }, - { - "at": 635.4202, - "frame": 105, - "type": "C" - }, - { - "at": 635.4202, - "frame": 102, - "type": "O" - }, - { - "at": 635.4411, - "frame": 102, - "type": "C" - }, - { - "at": 635.4411, - "frame": 102, - "type": "C" - }, - { - "at": 635.4411, - "frame": 102, - "type": "O" - }, - { - "at": 635.4892, - "frame": 102, - "type": "C" - }, - { - "at": 635.4892, - "frame": 102, - "type": "O" - }, - { - "at": 636.8803, - "frame": 103, - "type": "O" - }, - { - "at": 636.895, - "frame": 103, - "type": "C" - }, - { - "at": 636.895, - "frame": 107, - "type": "O" - }, - { - "at": 638.6683, - "frame": 107, - "type": "C" - }, - { - "at": 638.6683, - "frame": 105, - "type": "O" - }, - { - "at": 638.7022, - "frame": 105, - "type": "C" - }, - { - "at": 638.7022, - "frame": 102, - "type": "O" - }, - { - "at": 640.0798, - "frame": 103, - "type": "O" - }, - { - "at": 640.0966, - "frame": 103, - "type": "C" - }, - { - "at": 640.0966, - "frame": 102, - "type": "C" - }, - { - "at": 640.0966, - "frame": 108, - "type": "O" - }, - { - "at": 640.1261, - "frame": 108, - "type": "C" - }, - { - "at": 640.1261, - "frame": 105, - "type": "O" - }, - { - "at": 640.1502, - "frame": 105, - "type": "C" - }, - { - "at": 640.1502, - "frame": 102, - "type": "O" - }, - { - "at": 640.1665, - "frame": 102, - "type": "C" - }, - { - "at": 640.1665, - "frame": 102, - "type": "C" - }, - { - "at": 640.1665, - "frame": 102, - "type": "O" - }, - { - "at": 640.1962, - "frame": 102, - "type": "C" - }, - { - "at": 640.1962, - "frame": 102, - "type": "O" - }, - { - "at": 641.5445, - "frame": 103, - "type": "O" - }, - { - "at": 641.5669, - "frame": 103, - "type": "C" - }, - { - "at": 641.5669, - "frame": 109, - "type": "O" - }, - { - "at": 643.2564, - "frame": 109, - "type": "C" - }, - { - "at": 643.2564, - "frame": 105, - "type": "O" - }, - { - "at": 643.2909, - "frame": 105, - "type": "C" - }, - { - "at": 643.2909, - "frame": 102, - "type": "O" - }, - { - "at": 644.6658, - "frame": 103, - "type": "O" - }, - { - "at": 644.6796, - "frame": 103, - "type": "C" - }, - { - "at": 644.6796, - "frame": 102, - "type": "C" - }, - { - "at": 644.6796, - "frame": 110, - "type": "O" - }, - { - "at": 644.7087, - "frame": 110, - "type": "C" - }, - { - "at": 644.7087, - "frame": 105, - "type": "O" - }, - { - "at": 644.7327, - "frame": 105, - "type": "C" - }, - { - "at": 644.7327, - "frame": 102, - "type": "O" - }, - { - "at": 644.7488, - "frame": 102, - "type": "C" - }, - { - "at": 644.7488, - "frame": 102, - "type": "C" - }, - { - "at": 644.7488, - "frame": 102, - "type": "O" - }, - { - "at": 644.7823, - "frame": 102, - "type": "C" - }, - { - "at": 644.7823, - "frame": 102, - "type": "O" - }, - { - "at": 644.8927, - "frame": 102, - "type": "C" - }, - { - "at": 644.8927, - "frame": 102, - "type": "O" - }, - { - "at": 644.9551, - "frame": 102, - "type": "C" - }, - { - "at": 644.9551, - "frame": 81, - "type": "O" - }, - { - "at": 644.9723, - "frame": 81, - "type": "C" - }, - { - "at": 644.9723, - "frame": 79, - "type": "C" - }, - { - "at": 644.9723, - "frame": 82, - "type": "O" - }, - { - "at": 644.9865, - "frame": 82, - "type": "C" - }, - { - "at": 644.9865, - "frame": 83, - "type": "O" - }, - { - "at": 645.0073, - "frame": 83, - "type": "C" - }, - { - "at": 645.0073, - "frame": 84, - "type": "O" - }, - { - "at": 645.0222, - "frame": 84, - "type": "C" - }, - { - "at": 645.0222, - "frame": 67, - "type": "O" - }, - { - "at": 645.0398, - "frame": 67, - "type": "C" - }, - { - "at": 645.0398, - "frame": 85, - "type": "O" - }, - { - "at": 645.0681, - "frame": 85, - "type": "C" - }, - { - "at": 645.0681, - "frame": 86, - "type": "O" - }, - { - "at": 645.1019, - "frame": 86, - "type": "C" - }, - { - "at": 645.1019, - "frame": 87, - "type": "O" - }, - { - "at": 645.1227, - "frame": 87, - "type": "C" - }, - { - "at": 645.1227, - "frame": 99, - "type": "O" - }, - { - "at": 645.1386, - "frame": 99, - "type": "C" - }, - { - "at": 645.1386, - "frame": 88, - "type": "O" - }, - { - "at": 645.1523, - "frame": 88, - "type": "C" - }, - { - "at": 645.1523, - "frame": 89, - "type": "O" - }, - { - "at": 645.1727, - "frame": 89, - "type": "C" - }, - { - "at": 645.1727, - "frame": 66, - "type": "O" - }, - { - "at": 645.1881, - "frame": 66, - "type": "C" - }, - { - "at": 645.1881, - "frame": 64, - "type": "O" - }, - { - "at": 645.2088, - "frame": 64, - "type": "C" - }, - { - "at": 645.2088, - "frame": 90, - "type": "O" - }, - { - "at": 645.2248, - "frame": 90, - "type": "C" - }, - { - "at": 645.2248, - "frame": 91, - "type": "O" - }, - { - "at": 645.2561, - "frame": 91, - "type": "C" - }, - { - "at": 645.2561, - "frame": 92, - "type": "O" - }, - { - "at": 645.2712, - "frame": 92, - "type": "C" - }, - { - "at": 645.2712, - "frame": 93, - "type": "O" - }, - { - "at": 645.2851, - "frame": 93, - "type": "C" - }, - { - "at": 645.2851, - "frame": 94, - "type": "O" - }, - { - "at": 645.6163, - "frame": 95, - "type": "O" - }, - { - "at": 645.6312, - "frame": 95, - "type": "C" - }, - { - "at": 645.6312, - "frame": 95, - "type": "O" - }, - { - "at": 645.7261, - "frame": 95, - "type": "C" - }, - { - "at": 645.7261, - "frame": 95, - "type": "O" - }, - { - "at": 645.7418, - "frame": 95, - "type": "C" - }, - { - "at": 645.7418, - "frame": 95, - "type": "O" - }, - { - "at": 645.7603, - "frame": 95, - "type": "C" - }, - { - "at": 645.7603, - "frame": 95, - "type": "O" - }, - { - "at": 645.8086, - "frame": 95, - "type": "C" - }, - { - "at": 645.8086, - "frame": 96, - "type": "O" - }, - { - "at": 646.0386, - "frame": 96, - "type": "C" - }, - { - "at": 646.0386, - "frame": 94, - "type": "C" - }, - { - "at": 646.0386, - "frame": 67, - "type": "O" - }, - { - "at": 646.0618, - "frame": 67, - "type": "C" - }, - { - "at": 646.0618, - "frame": 77, - "type": "O" - }, - { - "at": 646.0861, - "frame": 77, - "type": "C" - }, - { - "at": 646.0861, - "frame": 78, - "type": "O" - }, - { - "at": 646.4694, - "frame": 78, - "type": "C" - }, - { - "at": 646.4694, - "frame": 79, - "type": "O" - }, - { - "at": 649.7637, - "frame": 111, - "type": "O" - }, - { - "at": 649.784, - "frame": 111, - "type": "C" - }, - { - "at": 649.784, - "frame": 111, - "type": "O" - }, - { - "at": 656.4459, - "frame": 111, - "type": "C" - }, - { - "at": 656.4459, - "frame": 111, - "type": "O" - }, - { - "at": 656.4856, - "frame": 111, - "type": "C" - }, - { - "at": 656.4856, - "frame": 111, - "type": "O" - }, - { - "at": 684.3505, - "frame": 111, - "type": "C" - }, - { - "at": 684.3505, - "frame": 111, - "type": "O" - }, - { - "at": 684.3843, - "frame": 111, - "type": "C" - }, - { - "at": 684.3843, - "frame": 111, - "type": "O" - }, - { - "at": 684.408, - "frame": 111, - "type": "C" - }, - { - "at": 684.408, - "frame": 111, - "type": "O" - }, - { - "at": 690.7091, - "frame": 111, - "type": "C" - }, - { - "at": 690.7091, - "frame": 111, - "type": "O" - }, - { - "at": 692.2587, - "frame": 111, - "type": "C" - }, - { - "at": 692.2587, - "frame": 111, - "type": "O" - }, - { - "at": 692.3252, - "frame": 111, - "type": "C" - }, - { - "at": 692.3252, - "frame": 111, - "type": "O" - }, - { - "at": 692.3634, - "frame": 111, - "type": "C" - }, - { - "at": 692.3634, - "frame": 111, - "type": "O" - }, - { - "at": 692.4372, - "frame": 111, - "type": "C" - }, - { - "at": 692.4372, - "frame": 81, - "type": "O" - }, - { - "at": 692.4542, - "frame": 81, - "type": "C" - }, - { - "at": 692.4542, - "frame": 79, - "type": "C" - }, - { - "at": 692.4542, - "frame": 82, - "type": "O" - }, - { - "at": 692.4677, - "frame": 82, - "type": "C" - }, - { - "at": 692.4677, - "frame": 83, - "type": "O" - }, - { - "at": 692.485, - "frame": 83, - "type": "C" - }, - { - "at": 692.485, - "frame": 84, - "type": "O" - }, - { - "at": 692.5002, - "frame": 84, - "type": "C" - }, - { - "at": 692.5002, - "frame": 67, - "type": "O" - }, - { - "at": 692.5199, - "frame": 67, - "type": "C" - }, - { - "at": 692.5199, - "frame": 85, - "type": "O" - }, - { - "at": 692.549, - "frame": 85, - "type": "C" - }, - { - "at": 692.549, - "frame": 86, - "type": "O" - }, - { - "at": 692.5817, - "frame": 86, - "type": "C" - }, - { - "at": 692.5817, - "frame": 87, - "type": "O" - }, - { - "at": 692.6024, - "frame": 87, - "type": "C" - }, - { - "at": 692.6024, - "frame": 99, - "type": "O" - }, - { - "at": 692.6156, - "frame": 99, - "type": "C" - }, - { - "at": 692.6156, - "frame": 88, - "type": "O" - }, - { - "at": 692.6306, - "frame": 88, - "type": "C" - }, - { - "at": 692.6306, - "frame": 89, - "type": "O" - }, - { - "at": 692.6509, - "frame": 89, - "type": "C" - }, - { - "at": 692.6509, - "frame": 66, - "type": "O" - }, - { - "at": 692.666, - "frame": 66, - "type": "C" - }, - { - "at": 692.666, - "frame": 64, - "type": "O" - }, - { - "at": 692.6788, - "frame": 64, - "type": "C" - }, - { - "at": 692.6788, - "frame": 90, - "type": "O" - }, - { - "at": 692.6937, - "frame": 90, - "type": "C" - }, - { - "at": 692.6937, - "frame": 91, - "type": "O" - }, - { - "at": 692.722, - "frame": 91, - "type": "C" - }, - { - "at": 692.722, - "frame": 92, - "type": "O" - }, - { - "at": 692.7387, - "frame": 92, - "type": "C" - }, - { - "at": 692.7387, - "frame": 93, - "type": "O" - }, - { - "at": 692.7532, - "frame": 93, - "type": "C" - }, - { - "at": 692.7532, - "frame": 94, - "type": "O" - }, - { - "at": 693.0962, - "frame": 95, - "type": "O" - }, - { - "at": 693.1122, - "frame": 95, - "type": "C" - }, - { - "at": 693.1122, - "frame": 95, - "type": "O" - }, - { - "at": 693.2093, - "frame": 95, - "type": "C" - }, - { - "at": 693.2093, - "frame": 95, - "type": "O" - }, - { - "at": 693.2323, - "frame": 95, - "type": "C" - }, - { - "at": 693.2323, - "frame": 95, - "type": "O" - }, - { - "at": 693.2502, - "frame": 95, - "type": "C" - }, - { - "at": 693.2502, - "frame": 95, - "type": "O" - }, - { - "at": 693.2975, - "frame": 95, - "type": "C" - }, - { - "at": 693.2975, - "frame": 96, - "type": "O" - }, - { - "at": 693.5272, - "frame": 96, - "type": "C" - }, - { - "at": 693.5272, - "frame": 94, - "type": "C" - }, - { - "at": 693.5272, - "frame": 67, - "type": "O" - }, - { - "at": 693.5498, - "frame": 67, - "type": "C" - }, - { - "at": 693.5498, - "frame": 77, - "type": "O" - }, - { - "at": 693.5739, - "frame": 77, - "type": "C" - }, - { - "at": 693.5739, - "frame": 78, - "type": "O" - }, - { - "at": 693.977, - "frame": 78, - "type": "C" - }, - { - "at": 693.977, - "frame": 79, - "type": "O" - }, - { - "at": 696.897, - "frame": 112, - "type": "O" - }, - { - "at": 696.9145, - "frame": 112, - "type": "C" - }, - { - "at": 696.9145, - "frame": 112, - "type": "O" - }, - { - "at": 708.4759, - "frame": 112, - "type": "C" - }, - { - "at": 708.4759, - "frame": 112, - "type": "O" - }, - { - "at": 708.5008, - "frame": 112, - "type": "C" - }, - { - "at": 708.5008, - "frame": 112, - "type": "O" - }, - { - "at": 735.2872, - "frame": 112, - "type": "C" - }, - { - "at": 735.2872, - "frame": 112, - "type": "O" - }, - { - "at": 737.3826, - "frame": 112, - "type": "C" - }, - { - "at": 737.3826, - "frame": 112, - "type": "O" - }, - { - "at": 751.5638, - "frame": 112, - "type": "C" - }, - { - "at": 751.5638, - "frame": 112, - "type": "O" - }, - { - "at": 752.8646, - "frame": 112, - "type": "C" - }, - { - "at": 752.8646, - "frame": 112, - "type": "O" - }, - { - "at": 752.9719, - "frame": 112, - "type": "C" - }, - { - "at": 752.9719, - "frame": 81, - "type": "O" - }, - { - "at": 752.9907, - "frame": 81, - "type": "C" - }, - { - "at": 752.9907, - "frame": 79, - "type": "C" - }, - { - "at": 752.9907, - "frame": 82, - "type": "O" - }, - { - "at": 753.0049, - "frame": 82, - "type": "C" - }, - { - "at": 753.0049, - "frame": 83, - "type": "O" - }, - { - "at": 753.0263, - "frame": 83, - "type": "C" - }, - { - "at": 753.0263, - "frame": 84, - "type": "O" - }, - { - "at": 753.0446, - "frame": 84, - "type": "C" - }, - { - "at": 753.0446, - "frame": 67, - "type": "O" - }, - { - "at": 753.0631, - "frame": 67, - "type": "C" - }, - { - "at": 753.0631, - "frame": 85, - "type": "O" - }, - { - "at": 753.0972, - "frame": 85, - "type": "C" - }, - { - "at": 753.0972, - "frame": 86, - "type": "O" - }, - { - "at": 753.132, - "frame": 86, - "type": "C" - }, - { - "at": 753.132, - "frame": 87, - "type": "O" - }, - { - "at": 753.1573, - "frame": 87, - "type": "C" - }, - { - "at": 753.1573, - "frame": 99, - "type": "O" - }, - { - "at": 753.1721, - "frame": 99, - "type": "C" - }, - { - "at": 753.1721, - "frame": 88, - "type": "O" - }, - { - "at": 753.1855, - "frame": 88, - "type": "C" - }, - { - "at": 753.1855, - "frame": 89, - "type": "O" - }, - { - "at": 753.2048, - "frame": 89, - "type": "C" - }, - { - "at": 753.2048, - "frame": 66, - "type": "O" - }, - { - "at": 753.2203, - "frame": 66, - "type": "C" - }, - { - "at": 753.2203, - "frame": 64, - "type": "O" - }, - { - "at": 753.2329, - "frame": 64, - "type": "C" - }, - { - "at": 753.2329, - "frame": 90, - "type": "O" - }, - { - "at": 753.2486, - "frame": 90, - "type": "C" - }, - { - "at": 753.2486, - "frame": 91, - "type": "O" - }, - { - "at": 753.2771, - "frame": 91, - "type": "C" - }, - { - "at": 753.2771, - "frame": 92, - "type": "O" - }, - { - "at": 753.2917, - "frame": 92, - "type": "C" - }, - { - "at": 753.2917, - "frame": 93, - "type": "O" - }, - { - "at": 753.3042, - "frame": 93, - "type": "C" - }, - { - "at": 753.3042, - "frame": 94, - "type": "O" - }, - { - "at": 753.7137, - "frame": 95, - "type": "O" - }, - { - "at": 753.7294, - "frame": 95, - "type": "C" - }, - { - "at": 753.7294, - "frame": 95, - "type": "O" - }, - { - "at": 753.8346, - "frame": 95, - "type": "C" - }, - { - "at": 753.8346, - "frame": 95, - "type": "O" - }, - { - "at": 753.852, - "frame": 95, - "type": "C" - }, - { - "at": 753.852, - "frame": 95, - "type": "O" - }, - { - "at": 753.8702, - "frame": 95, - "type": "C" - }, - { - "at": 753.8702, - "frame": 95, - "type": "O" - }, - { - "at": 753.916, - "frame": 95, - "type": "C" - }, - { - "at": 753.916, - "frame": 96, - "type": "O" - }, - { - "at": 754.1405, - "frame": 96, - "type": "C" - }, - { - "at": 754.1405, - "frame": 94, - "type": "C" - }, - { - "at": 754.1405, - "frame": 67, - "type": "O" - }, - { - "at": 754.1629, - "frame": 67, - "type": "C" - }, - { - "at": 754.1629, - "frame": 77, - "type": "O" - }, - { - "at": 754.1894, - "frame": 77, - "type": "C" - }, - { - "at": 754.1894, - "frame": 78, - "type": "O" - }, - { - "at": 754.5755, - "frame": 78, - "type": "C" - }, - { - "at": 754.5755, - "frame": 79, - "type": "O" - }, - { - "at": 755.5804, - "frame": 113, - "type": "O" - }, - { - "at": 755.5971, - "frame": 113, - "type": "C" - }, - { - "at": 755.5971, - "frame": 113, - "type": "O" - }, - { - "at": 756.2053, - "frame": 113, - "type": "C" - }, - { - "at": 756.2053, - "frame": 113, - "type": "O" - }, - { - "at": 776.9098, - "frame": 103, - "type": "O" - }, - { - "at": 776.9354, - "frame": 103, - "type": "C" - }, - { - "at": 776.9354, - "frame": 114, - "type": "O" - }, - { - "at": 783.6119, - "frame": 114, - "type": "C" - }, - { - "at": 783.6119, - "frame": 115, - "type": "O" - }, - { - "at": 786.6172, - "frame": 115, - "type": "C" - }, - { - "at": 786.6172, - "frame": 105, - "type": "O" - }, - { - "at": 788.2232, - "frame": 105, - "type": "C" - }, - { - "at": 788.2232, - "frame": 103, - "type": "O" - }, - { - "at": 788.2379, - "frame": 103, - "type": "C" - }, - { - "at": 788.2379, - "frame": 114, - "type": "O" - }, - { - "at": 792.6706, - "frame": 114, - "type": "C" - }, - { - "at": 792.6706, - "frame": 105, - "type": "O" - }, - { - "at": 793.8881, - "frame": 105, - "type": "C" - }, - { - "at": 793.8881, - "frame": 103, - "type": "O" - }, - { - "at": 793.9022, - "frame": 103, - "type": "C" - }, - { - "at": 793.9022, - "frame": 114, - "type": "O" - }, - { - "at": 793.9572, - "frame": 114, - "type": "C" - }, - { - "at": 793.9572, - "frame": 115, - "type": "O" - }, - { - "at": 793.9822, - "frame": 115, - "type": "C" - }, - { - "at": 793.9822, - "frame": 105, - "type": "O" - }, - { - "at": 795.0998, - "frame": 105, - "type": "C" - }, - { - "at": 795.0998, - "frame": 103, - "type": "O" - }, - { - "at": 795.1118, - "frame": 103, - "type": "C" - }, - { - "at": 795.1118, - "frame": 114, - "type": "O" - }, - { - "at": 795.1693, - "frame": 114, - "type": "C" - }, - { - "at": 795.1693, - "frame": 105, - "type": "O" - }, - { - "at": 796.2262, - "frame": 105, - "type": "C" - }, - { - "at": 796.2262, - "frame": 103, - "type": "O" - }, - { - "at": 796.2382, - "frame": 103, - "type": "C" - }, - { - "at": 796.2382, - "frame": 114, - "type": "O" - }, - { - "at": 796.2879, - "frame": 114, - "type": "C" - }, - { - "at": 796.2879, - "frame": 105, - "type": "O" - }, - { - "at": 797.3653, - "frame": 105, - "type": "C" - }, - { - "at": 797.3653, - "frame": 103, - "type": "O" - }, - { - "at": 797.3774, - "frame": 103, - "type": "C" - }, - { - "at": 797.3774, - "frame": 114, - "type": "O" - }, - { - "at": 797.4263, - "frame": 114, - "type": "C" - }, - { - "at": 797.4263, - "frame": 105, - "type": "O" - }, - { - "at": 798.4913, - "frame": 105, - "type": "C" - }, - { - "at": 798.4913, - "frame": 103, - "type": "O" - }, - { - "at": 798.5022, - "frame": 103, - "type": "C" - }, - { - "at": 798.5022, - "frame": 114, - "type": "O" - }, - { - "at": 798.5209, - "frame": 114, - "type": "C" - }, - { - "at": 798.5209, - "frame": 105, - "type": "O" - }, - { - "at": 799.5796, - "frame": 105, - "type": "C" - }, - { - "at": 799.5796, - "frame": 103, - "type": "O" - }, - { - "at": 799.602, - "frame": 103, - "type": "C" - }, - { - "at": 799.602, - "frame": 114, - "type": "O" - }, - { - "at": 799.6216, - "frame": 114, - "type": "C" - }, - { - "at": 799.6216, - "frame": 105, - "type": "O" - }, - { - "at": 800.6726, - "frame": 105, - "type": "C" - }, - { - "at": 800.6726, - "frame": 103, - "type": "O" - }, - { - "at": 800.6857, - "frame": 103, - "type": "C" - }, - { - "at": 800.6857, - "frame": 114, - "type": "O" - }, - { - "at": 800.7344, - "frame": 114, - "type": "C" - }, - { - "at": 800.7344, - "frame": 105, - "type": "O" - }, - { - "at": 801.7912, - "frame": 105, - "type": "C" - }, - { - "at": 801.7912, - "frame": 103, - "type": "O" - }, - { - "at": 801.8035, - "frame": 103, - "type": "C" - }, - { - "at": 801.8035, - "frame": 114, - "type": "O" - }, - { - "at": 801.8545, - "frame": 114, - "type": "C" - }, - { - "at": 801.8545, - "frame": 105, - "type": "O" - }, - { - "at": 801.9819, - "frame": 105, - "type": "C" - }, - { - "at": 801.9819, - "frame": 113, - "type": "O" - }, - { - "at": 803.1427, - "frame": 113, - "type": "C" - }, - { - "at": 803.1427, - "frame": 113, - "type": "C" - }, - { - "at": 803.1427, - "frame": 113, - "type": "O" - }, - { - "at": 803.2302, - "frame": 113, - "type": "C" - }, - { - "at": 803.2302, - "frame": 81, - "type": "O" - }, - { - "at": 803.2607, - "frame": 81, - "type": "C" - }, - { - "at": 803.2607, - "frame": 79, - "type": "C" - }, - { - "at": 803.2607, - "frame": 82, - "type": "O" - }, - { - "at": 803.2814, - "frame": 82, - "type": "C" - }, - { - "at": 803.2814, - "frame": 84, - "type": "O" - }, - { - "at": 803.5167, - "frame": 84, - "type": "C" - }, - { - "at": 803.5167, - "frame": 67, - "type": "O" - }, - { - "at": 803.5445, - "frame": 67, - "type": "C" - }, - { - "at": 803.5445, - "frame": 85, - "type": "O" - }, - { - "at": 803.5925, - "frame": 85, - "type": "C" - }, - { - "at": 803.5925, - "frame": 86, - "type": "O" - }, - { - "at": 803.6475, - "frame": 86, - "type": "C" - }, - { - "at": 803.6475, - "frame": 87, - "type": "O" - }, - { - "at": 803.6841, - "frame": 87, - "type": "C" - }, - { - "at": 803.6841, - "frame": 99, - "type": "O" - }, - { - "at": 803.7038, - "frame": 99, - "type": "C" - }, - { - "at": 803.7038, - "frame": 88, - "type": "O" - }, - { - "at": 803.7187, - "frame": 88, - "type": "C" - }, - { - "at": 803.7187, - "frame": 89, - "type": "O" - }, - { - "at": 803.7416, - "frame": 89, - "type": "C" - }, - { - "at": 803.7416, - "frame": 66, - "type": "O" - }, - { - "at": 803.7562, - "frame": 66, - "type": "C" - }, - { - "at": 803.7562, - "frame": 64, - "type": "O" - }, - { - "at": 803.7692, - "frame": 64, - "type": "C" - }, - { - "at": 803.7692, - "frame": 90, - "type": "O" - }, - { - "at": 803.7966, - "frame": 90, - "type": "C" - }, - { - "at": 803.7966, - "frame": 91, - "type": "O" - }, - { - "at": 803.8285, - "frame": 91, - "type": "C" - }, - { - "at": 803.8285, - "frame": 92, - "type": "O" - }, - { - "at": 803.8444, - "frame": 92, - "type": "C" - }, - { - "at": 803.8444, - "frame": 93, - "type": "O" - }, - { - "at": 803.8582, - "frame": 93, - "type": "C" - }, - { - "at": 803.8582, - "frame": 94, - "type": "O" - }, - { - "at": 804.1829, - "frame": 95, - "type": "O" - }, - { - "at": 804.1975, - "frame": 95, - "type": "C" - }, - { - "at": 804.1975, - "frame": 95, - "type": "O" - }, - { - "at": 804.292, - "frame": 95, - "type": "C" - }, - { - "at": 804.292, - "frame": 95, - "type": "O" - }, - { - "at": 804.3073, - "frame": 95, - "type": "C" - }, - { - "at": 804.3073, - "frame": 95, - "type": "O" - }, - { - "at": 804.3269, - "frame": 95, - "type": "C" - }, - { - "at": 804.3269, - "frame": 95, - "type": "O" - }, - { - "at": 804.3727, - "frame": 95, - "type": "C" - }, - { - "at": 804.3727, - "frame": 96, - "type": "O" - }, - { - "at": 804.59, - "frame": 96, - "type": "C" - }, - { - "at": 804.59, - "frame": 94, - "type": "C" - }, - { - "at": 804.59, - "frame": 67, - "type": "O" - }, - { - "at": 804.6148, - "frame": 67, - "type": "C" - }, - { - "at": 804.6148, - "frame": 85, - "type": "O" - }, - { - "at": 804.6434, - "frame": 85, - "type": "C" - }, - { - "at": 804.6434, - "frame": 86, - "type": "O" - }, - { - "at": 804.6771, - "frame": 86, - "type": "C" - }, - { - "at": 804.6771, - "frame": 87, - "type": "O" - }, - { - "at": 804.6955, - "frame": 87, - "type": "C" - }, - { - "at": 804.6955, - "frame": 99, - "type": "O" - }, - { - "at": 804.7081, - "frame": 99, - "type": "C" - }, - { - "at": 804.7081, - "frame": 88, - "type": "O" - }, - { - "at": 804.7204, - "frame": 88, - "type": "C" - }, - { - "at": 804.7204, - "frame": 89, - "type": "O" - }, - { - "at": 804.7583, - "frame": 89, - "type": "C" - }, - { - "at": 804.7583, - "frame": 66, - "type": "O" - }, - { - "at": 804.774, - "frame": 66, - "type": "C" - }, - { - "at": 804.774, - "frame": 64, - "type": "O" - }, - { - "at": 804.7854, - "frame": 64, - "type": "C" - }, - { - "at": 804.7854, - "frame": 90, - "type": "O" - }, - { - "at": 804.8135, - "frame": 90, - "type": "C" - }, - { - "at": 804.8135, - "frame": 91, - "type": "O" - }, - { - "at": 804.8511, - "frame": 91, - "type": "C" - }, - { - "at": 804.8511, - "frame": 92, - "type": "O" - }, - { - "at": 804.8728, - "frame": 92, - "type": "C" - }, - { - "at": 804.8728, - "frame": 93, - "type": "O" - }, - { - "at": 804.902, - "frame": 93, - "type": "C" - }, - { - "at": 804.902, - "frame": 94, - "type": "O" - }, - { - "at": 805.2488, - "frame": 95, - "type": "O" - }, - { - "at": 805.2725, - "frame": 95, - "type": "C" - }, - { - "at": 805.2725, - "frame": 95, - "type": "O" - }, - { - "at": 805.3603, - "frame": 95, - "type": "C" - }, - { - "at": 805.3603, - "frame": 95, - "type": "O" - }, - { - "at": 805.375, - "frame": 95, - "type": "C" - }, - { - "at": 805.375, - "frame": 95, - "type": "O" - }, - { - "at": 805.394, - "frame": 95, - "type": "C" - }, - { - "at": 805.394, - "frame": 95, - "type": "O" - }, - { - "at": 805.4433, - "frame": 95, - "type": "C" - }, - { - "at": 805.4433, - "frame": 96, - "type": "O" - }, - { - "at": 805.7622, - "frame": 96, - "type": "C" - }, - { - "at": 805.7622, - "frame": 94, - "type": "C" - }, - { - "at": 805.7622, - "frame": 67, - "type": "O" - }, - { - "at": 805.7859, - "frame": 67, - "type": "C" - }, - { - "at": 805.7859, - "frame": 77, - "type": "O" - }, - { - "at": 805.8109, - "frame": 77, - "type": "C" - }, - { - "at": 805.8109, - "frame": 78, - "type": "O" - }, - { - "at": 806.1572, - "frame": 78, - "type": "C" - }, - { - "at": 806.1572, - "frame": 79, - "type": "O" - }, - { - "at": 807.9801, - "frame": 116, - "type": "O" - }, - { - "at": 807.9977, - "frame": 116, - "type": "C" - }, - { - "at": 807.9977, - "frame": 116, - "type": "O" - }, - { - "at": 827.1997, - "frame": 116, - "type": "C" - }, - { - "at": 827.1997, - "frame": 116, - "type": "O" - }, - { - "at": 830.4499, - "frame": 116, - "type": "C" - }, - { - "at": 830.4499, - "frame": 116, - "type": "O" - }, - { - "at": 833.9055, - "frame": 116, - "type": "C" - }, - { - "at": 833.9055, - "frame": 116, - "type": "O" - }, - { - "at": 839.8749, - "frame": 116, - "type": "C" - }, - { - "at": 839.8749, - "frame": 116, - "type": "O" - }, - { - "at": 839.9305, - "frame": 116, - "type": "C" - }, - { - "at": 839.9305, - "frame": 116, - "type": "O" - }, - { - "at": 839.971, - "frame": 116, - "type": "C" - }, - { - "at": 839.971, - "frame": 116, - "type": "O" - }, - { - "at": 847.4747, - "frame": 116, - "type": "C" - }, - { - "at": 847.4747, - "frame": 116, - "type": "O" - }, - { - "at": 860.4854, - "frame": 117, - "type": "O" - }, - { - "at": 860.544, - "frame": 117, - "type": "C" - }, - { - "at": 860.544, - "frame": 117, - "type": "O" - }, - { - "at": 860.5635, - "frame": 117, - "type": "C" - }, - { - "at": 860.5635, - "frame": 117, - "type": "O" - }, - { - "at": 861.2441, - "frame": 117, - "type": "C" - }, - { - "at": 861.2441, - "frame": 117, - "type": "O" - }, - { - "at": 861.2771, - "frame": 117, - "type": "C" - }, - { - "at": 861.2771, - "frame": 117, - "type": "O" - }, - { - "at": 861.2962, - "frame": 117, - "type": "C" - }, - { - "at": 861.2962, - "frame": 117, - "type": "O" - }, - { - "at": 861.3357, - "frame": 117, - "type": "C" - }, - { - "at": 861.3357, - "frame": 117, - "type": "O" - }, - { - "at": 861.3828, - "frame": 117, - "type": "C" - }, - { - "at": 861.3828, - "frame": 117, - "type": "O" - }, - { - "at": 861.458, - "frame": 117, - "type": "C" - }, - { - "at": 861.458, - "frame": 116, - "type": "O" - }, - { - "at": 861.4999, - "frame": 116, - "type": "C" - }, - { - "at": 861.4999, - "frame": 116, - "type": "C" - }, - { - "at": 861.4999, - "frame": 81, - "type": "O" - }, - { - "at": 861.5223, - "frame": 81, - "type": "C" - }, - { - "at": 861.5223, - "frame": 79, - "type": "C" - }, - { - "at": 861.5223, - "frame": 82, - "type": "O" - }, - { - "at": 861.54, - "frame": 82, - "type": "C" - }, - { - "at": 861.54, - "frame": 83, - "type": "O" - }, - { - "at": 861.5634, - "frame": 83, - "type": "C" - }, - { - "at": 861.5634, - "frame": 84, - "type": "O" - }, - { - "at": 861.5881, - "frame": 84, - "type": "C" - }, - { - "at": 861.5881, - "frame": 67, - "type": "O" - }, - { - "at": 861.6115, - "frame": 67, - "type": "C" - }, - { - "at": 861.6115, - "frame": 85, - "type": "O" - }, - { - "at": 861.6505, - "frame": 85, - "type": "C" - }, - { - "at": 861.6505, - "frame": 86, - "type": "O" - }, - { - "at": 861.6944, - "frame": 86, - "type": "C" - }, - { - "at": 861.6944, - "frame": 87, - "type": "O" - }, - { - "at": 861.719, - "frame": 87, - "type": "C" - }, - { - "at": 861.719, - "frame": 99, - "type": "O" - }, - { - "at": 861.739, - "frame": 99, - "type": "C" - }, - { - "at": 861.739, - "frame": 88, - "type": "O" - }, - { - "at": 861.7621, - "frame": 88, - "type": "C" - }, - { - "at": 861.7621, - "frame": 89, - "type": "O" - }, - { - "at": 861.7901, - "frame": 89, - "type": "C" - }, - { - "at": 861.7901, - "frame": 66, - "type": "O" - }, - { - "at": 861.8123, - "frame": 66, - "type": "C" - }, - { - "at": 861.8123, - "frame": 64, - "type": "O" - }, - { - "at": 861.8304, - "frame": 64, - "type": "C" - }, - { - "at": 861.8304, - "frame": 90, - "type": "O" - }, - { - "at": 861.8541, - "frame": 90, - "type": "C" - }, - { - "at": 861.8541, - "frame": 91, - "type": "O" - }, - { - "at": 861.8984, - "frame": 91, - "type": "C" - }, - { - "at": 861.8984, - "frame": 92, - "type": "O" - }, - { - "at": 861.9189, - "frame": 92, - "type": "C" - }, - { - "at": 861.9189, - "frame": 93, - "type": "O" - }, - { - "at": 861.9382, - "frame": 93, - "type": "C" - }, - { - "at": 861.9382, - "frame": 94, - "type": "O" - }, - { - "at": 862.2842, - "frame": 95, - "type": "O" - }, - { - "at": 862.3056, - "frame": 95, - "type": "C" - }, - { - "at": 862.3056, - "frame": 95, - "type": "O" - }, - { - "at": 862.4324, - "frame": 95, - "type": "C" - }, - { - "at": 862.4324, - "frame": 95, - "type": "O" - }, - { - "at": 862.4559, - "frame": 95, - "type": "C" - }, - { - "at": 862.4559, - "frame": 95, - "type": "O" - }, - { - "at": 862.4812, - "frame": 95, - "type": "C" - }, - { - "at": 862.4812, - "frame": 95, - "type": "O" - }, - { - "at": 862.5456, - "frame": 95, - "type": "C" - }, - { - "at": 862.5456, - "frame": 96, - "type": "O" - }, - { - "at": 862.8334, - "frame": 96, - "type": "C" - }, - { - "at": 862.8334, - "frame": 94, - "type": "C" - }, - { - "at": 862.8334, - "frame": 67, - "type": "O" - }, - { - "at": 862.8644, - "frame": 67, - "type": "C" - }, - { - "at": 862.8644, - "frame": 77, - "type": "O" - }, - { - "at": 862.8982, - "frame": 77, - "type": "C" - }, - { - "at": 862.8982, - "frame": 78, - "type": "O" - }, - { - "at": 863.3725, - "frame": 78, - "type": "C" - }, - { - "at": 863.3725, - "frame": 79, - "type": "O" - }, - { - "at": 871.2052, - "frame": 118, - "type": "O" - }, - { - "at": 871.2302, - "frame": 118, - "type": "C" - }, - { - "at": 871.2302, - "frame": 118, - "type": "O" - }, - { - "at": 871.3113, - "frame": 118, - "type": "C" - }, - { - "at": 871.3113, - "frame": 118, - "type": "O" - }, - { - "at": 2099.4912, - "frame": 118, - "type": "C" - }, - { - "at": 2099.4912, - "frame": 118, - "type": "O" - }, - { - "at": 2114.9754, - "frame": 118, - "type": "C" - }, - { - "at": 2114.9754, - "frame": 118, - "type": "O" - }, - { - "at": 2115.0055, - "frame": 118, - "type": "C" - }, - { - "at": 2115.0055, - "frame": 118, - "type": "O" - }, - { - "at": 2115.0316, - "frame": 118, - "type": "C" - }, - { - "at": 2115.0316, - "frame": 118, - "type": "O" - }, - { - "at": 2115.0604, - "frame": 118, - "type": "C" - }, - { - "at": 2115.0604, - "frame": 118, - "type": "O" - }, - { - "at": 2117.5072, - "frame": 118, - "type": "C" - }, - { - "at": 2117.5072, - "frame": 118, - "type": "O" - }, - { - "at": 2118.9552, - "frame": 118, - "type": "C" - }, - { - "at": 2118.9552, - "frame": 118, - "type": "O" - }, - { - "at": 2118.9944, - "frame": 118, - "type": "C" - }, - { - "at": 2118.9944, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0101, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0101, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0211, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0211, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0338, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0338, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0439, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0439, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0713, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0713, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0814, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0814, - "frame": 118, - "type": "O" - }, - { - "at": 2119.0944, - "frame": 118, - "type": "C" - }, - { - "at": 2119.0944, - "frame": 118, - "type": "O" - }, - { - "at": 2119.1085, - "frame": 118, - "type": "C" - }, - { - "at": 2119.1085, - "frame": 118, - "type": "O" - }, - { - "at": 2119.1332, - "frame": 118, - "type": "C" - }, - { - "at": 2119.1332, - "frame": 118, - "type": "O" - }, - { - "at": 2119.1503, - "frame": 118, - "type": "C" - }, - { - "at": 2119.1503, - "frame": 118, - "type": "O" - }, - { - "at": 2119.1856, - "frame": 118, - "type": "C" - }, - { - "at": 2119.1856, - "frame": 118, - "type": "O" - }, - { - "at": 2119.2018, - "frame": 118, - "type": "C" - }, - { - "at": 2119.2018, - "frame": 118, - "type": "O" - }, - { - "at": 2119.2168, - "frame": 118, - "type": "C" - }, - { - "at": 2119.2168, - "frame": 118, - "type": "O" - }, - { - "at": 2120.8928, - "frame": 118, - "type": "C" - }, - { - "at": 2120.8928, - "frame": 118, - "type": "O" - }, - { - "at": 2120.931, - "frame": 118, - "type": "C" - }, - { - "at": 2120.931, - "frame": 118, - "type": "O" - }, - { - "at": 2120.9477, - "frame": 118, - "type": "C" - }, - { - "at": 2120.9477, - "frame": 118, - "type": "O" - }, - { - "at": 2120.9622, - "frame": 118, - "type": "C" - }, - { - "at": 2120.9622, - "frame": 118, - "type": "O" - }, - { - "at": 2120.9796, - "frame": 118, - "type": "C" - }, - { - "at": 2120.9796, - "frame": 118, - "type": "O" - }, - { - "at": 2120.9951, - "frame": 118, - "type": "C" - }, - { - "at": 2120.9951, - "frame": 118, - "type": "O" - }, - { - "at": 2121.0253, - "frame": 118, - "type": "C" - }, - { - "at": 2121.0253, - "frame": 118, - "type": "O" - }, - { - "at": 2121.0386, - "frame": 118, - "type": "C" - }, - { - "at": 2121.0386, - "frame": 118, - "type": "O" - }, - { - "at": 2121.0514, - "frame": 118, - "type": "C" - }, - { - "at": 2121.0514, - "frame": 118, - "type": "O" - }, - { - "at": 2135.93, - "frame": 118, - "type": "C" - }, - { - "at": 2135.93, - "frame": 118, - "type": "O" - }, - { - "at": 2135.9621, - "frame": 118, - "type": "C" - }, - { - "at": 2135.9621, - "frame": 118, - "type": "O" - }, - { - "at": 2135.9966, - "frame": 118, - "type": "C" - }, - { - "at": 2135.9966, - "frame": 118, - "type": "O" - }, - { - "at": 2136.0148, - "frame": 118, - "type": "C" - }, - { - "at": 2136.0148, - "frame": 118, - "type": "O" - }, - { - "at": 2137.2348, - "frame": 118, - "type": "C" - }, - { - "at": 2137.2348, - "frame": 118, - "type": "O" - }, - { - "at": 2138.4941, - "frame": 118, - "type": "C" - }, - { - "at": 2138.4941, - "frame": 118, - "type": "O" - }, - { - "at": 2138.6036, - "frame": 118, - "type": "C" - }, - { - "at": 2138.6036, - "frame": 118, - "type": "O" - }, - { - "at": 2138.6426, - "frame": 118, - "type": "C" - }, - { - "at": 2138.6426, - "frame": 118, - "type": "O" - }, - { - "at": 2141.1, - "frame": 119, - "type": "O" - }, - { - "at": 2141.1148, - "frame": 119, - "type": "C" - }, - { - "at": 2141.1148, - "frame": 119, - "type": "O" - }, - { - "at": 2144.3471, - "frame": 119, - "type": "C" - }, - { - "at": 2144.3471, - "frame": 119, - "type": "O" - }, - { - "at": 2144.3754, - "frame": 119, - "type": "C" - }, - { - "at": 2144.3754, - "frame": 119, - "type": "O" - }, - { - "at": 2145.7237, - "frame": 119, - "type": "C" - }, - { - "at": 2145.7237, - "frame": 119, - "type": "O" - }, - { - "at": 2145.8111, - "frame": 119, - "type": "C" - }, - { - "at": 2145.8111, - "frame": 118, - "type": "O" - }, - { - "at": 2146.0798, - "frame": 119, - "type": "O" - }, - { - "at": 2146.0922, - "frame": 119, - "type": "C" - }, - { - "at": 2146.0922, - "frame": 118, - "type": "C" - }, - { - "at": 2146.0922, - "frame": 119, - "type": "O" - }, - { - "at": 2146.1075, - "frame": 119, - "type": "C" - }, - { - "at": 2146.1075, - "frame": 119, - "type": "O" - }, - { - "at": 2146.1309, - "frame": 119, - "type": "C" - }, - { - "at": 2146.1309, - "frame": 119, - "type": "O" - }, - { - "at": 2146.1739, - "frame": 119, - "type": "C" - }, - { - "at": 2146.1739, - "frame": 119, - "type": "O" - }, - { - "at": 2146.495, - "frame": 119, - "type": "C" - }, - { - "at": 2146.495, - "frame": 117, - "type": "O" - }, - { - "at": 2146.5292, - "frame": 117, - "type": "C" - }, - { - "at": 2146.5292, - "frame": 117, - "type": "O" - }, - { - "at": 2146.5421, - "frame": 117, - "type": "C" - }, - { - "at": 2146.5421, - "frame": 117, - "type": "O" - }, - { - "at": 2146.5664, - "frame": 117, - "type": "C" - }, - { - "at": 2146.5664, - "frame": 117, - "type": "O" - }, - { - "at": 2146.5785, - "frame": 117, - "type": "C" - }, - { - "at": 2146.5785, - "frame": 117, - "type": "O" - }, - { - "at": 2146.5903, - "frame": 117, - "type": "C" - }, - { - "at": 2146.5903, - "frame": 117, - "type": "O" - }, - { - "at": 2146.608, - "frame": 117, - "type": "C" - }, - { - "at": 2146.608, - "frame": 117, - "type": "O" - }, - { - "at": 2146.6348, - "frame": 117, - "type": "C" - }, - { - "at": 2146.6348, - "frame": 117, - "type": "O" - }, - { - "at": 2146.6971, - "frame": 117, - "type": "C" - }, - { - "at": 2146.6971, - "frame": 118, - "type": "O" - }, - { - "at": 2146.7118, - "frame": 118, - "type": "C" - }, - { - "at": 2146.7118, - "frame": 118, - "type": "C" - }, - { - "at": 2146.7118, - "frame": 118, - "type": "O" - }, - { - "at": 2146.7331, - "frame": 118, - "type": "C" - }, - { - "at": 2146.7331, - "frame": 118, - "type": "O" - }, - { - "at": 2146.7644, - "frame": 118, - "type": "C" - }, - { - "at": 2146.7644, - "frame": 81, - "type": "O" - }, - { - "at": 2146.7775, - "frame": 81, - "type": "C" - }, - { - "at": 2146.7775, - "frame": 79, - "type": "C" - }, - { - "at": 2146.7775, - "frame": 82, - "type": "O" - }, - { - "at": 2146.7898, - "frame": 82, - "type": "C" - }, - { - "at": 2146.7898, - "frame": 83, - "type": "O" - }, - { - "at": 2146.805, - "frame": 83, - "type": "C" - }, - { - "at": 2146.805, - "frame": 84, - "type": "O" - }, - { - "at": 2146.8441, - "frame": 84, - "type": "C" - }, - { - "at": 2146.8441, - "frame": 67, - "type": "O" - }, - { - "at": 2146.8795, - "frame": 67, - "type": "C" - }, - { - "at": 2146.8795, - "frame": 85, - "type": "O" - }, - { - "at": 2146.9037, - "frame": 85, - "type": "C" - }, - { - "at": 2146.9037, - "frame": 86, - "type": "O" - }, - { - "at": 2146.9287, - "frame": 86, - "type": "C" - }, - { - "at": 2146.9287, - "frame": 87, - "type": "O" - }, - { - "at": 2146.9496, - "frame": 87, - "type": "C" - }, - { - "at": 2146.9496, - "frame": 99, - "type": "O" - }, - { - "at": 2146.962, - "frame": 99, - "type": "C" - }, - { - "at": 2146.962, - "frame": 88, - "type": "O" - }, - { - "at": 2146.9843, - "frame": 88, - "type": "C" - }, - { - "at": 2146.9843, - "frame": 89, - "type": "O" - }, - { - "at": 2147.0016, - "frame": 89, - "type": "C" - }, - { - "at": 2147.0016, - "frame": 66, - "type": "O" - }, - { - "at": 2147.0167, - "frame": 66, - "type": "C" - }, - { - "at": 2147.0167, - "frame": 64, - "type": "O" - }, - { - "at": 2147.0319, - "frame": 64, - "type": "C" - }, - { - "at": 2147.0319, - "frame": 90, - "type": "O" - }, - { - "at": 2147.0436, - "frame": 90, - "type": "C" - }, - { - "at": 2147.0436, - "frame": 91, - "type": "O" - }, - { - "at": 2147.0846, - "frame": 91, - "type": "C" - }, - { - "at": 2147.0846, - "frame": 92, - "type": "O" - }, - { - "at": 2147.0982, - "frame": 92, - "type": "C" - }, - { - "at": 2147.0982, - "frame": 93, - "type": "O" - }, - { - "at": 2147.1105, - "frame": 93, - "type": "C" - }, - { - "at": 2147.1105, - "frame": 94, - "type": "O" - }, - { - "at": 2147.3672, - "frame": 95, - "type": "O" - }, - { - "at": 2147.381, - "frame": 95, - "type": "C" - }, - { - "at": 2147.381, - "frame": 95, - "type": "O" - }, - { - "at": 2147.4766, - "frame": 95, - "type": "C" - }, - { - "at": 2147.4766, - "frame": 95, - "type": "O" - }, - { - "at": 2147.4912, - "frame": 95, - "type": "C" - }, - { - "at": 2147.4912, - "frame": 95, - "type": "O" - }, - { - "at": 2147.509, - "frame": 95, - "type": "C" - }, - { - "at": 2147.509, - "frame": 95, - "type": "O" - }, - { - "at": 2147.5641, - "frame": 95, - "type": "C" - }, - { - "at": 2147.5641, - "frame": 96, - "type": "O" - }, - { - "at": 2147.7844, - "frame": 96, - "type": "C" - }, - { - "at": 2147.7844, - "frame": 94, - "type": "C" - }, - { - "at": 2147.7844, - "frame": 67, - "type": "O" - }, - { - "at": 2147.8077, - "frame": 67, - "type": "C" - }, - { - "at": 2147.8077, - "frame": 77, - "type": "O" - }, - { - "at": 2147.8343, - "frame": 77, - "type": "C" - }, - { - "at": 2147.8343, - "frame": 78, - "type": "O" - }, - { - "at": 2148.2404, - "frame": 78, - "type": "C" - }, - { - "at": 2148.2404, - "frame": 79, - "type": "O" - }, - { - "at": 2152.0758, - "frame": 120, - "type": "O" - }, - { - "at": 2152.0933, - "frame": 120, - "type": "C" - }, - { - "at": 2152.0933, - "frame": 120, - "type": "O" - }, - { - "at": 2152.512, - "frame": 120, - "type": "C" - }, - { - "at": 2152.512, - "frame": 120, - "type": "O" - }, - { - "at": 2152.5946, - "frame": 120, - "type": "C" - }, - { - "at": 2152.5946, - "frame": 120, - "type": "O" - }, - { - "at": 2158.891, - "frame": 120, - "type": "C" - }, - { - "at": 2158.891, - "frame": 120, - "type": "O" - }, - { - "at": 2158.9328, - "frame": 120, - "type": "C" - }, - { - "at": 2158.9328, - "frame": 120, - "type": "O" - }, - { - "at": 2159.0715, - "frame": 120, - "type": "C" - }, - { - "at": 2159.0715, - "frame": 120, - "type": "O" - }, - { - "at": 2160.9068, - "frame": 120, - "type": "C" - }, - { - "at": 2160.9068, - "frame": 120, - "type": "O" - }, - { - "at": 2160.9608, - "frame": 120, - "type": "C" - }, - { - "at": 2160.9608, - "frame": 120, - "type": "O" - }, - { - "at": 2163.7342, - "frame": 120, - "type": "C" - }, - { - "at": 2163.7342, - "frame": 120, - "type": "O" - }, - { - "at": 2163.7601, - "frame": 120, - "type": "C" - }, - { - "at": 2163.7601, - "frame": 120, - "type": "O" - }, - { - "at": 2164.8774, - "frame": 120, - "type": "C" - }, - { - "at": 2164.8774, - "frame": 120, - "type": "O" - }, - { - "at": 2165.9664, - "frame": 120, - "type": "C" - }, - { - "at": 2165.9664, - "frame": 120, - "type": "O" - }, - { - "at": 2167.0721, - "frame": 120, - "type": "C" - }, - { - "at": 2167.0721, - "frame": 120, - "type": "O" - }, - { - "at": 2167.1334, - "frame": 120, - "type": "C" - }, - { - "at": 2167.1334, - "frame": 120, - "type": "O" - }, - { - "at": 2167.1695, - "frame": 120, - "type": "C" - }, - { - "at": 2167.1695, - "frame": 120, - "type": "O" - }, - { - "at": 2167.1889, - "frame": 120, - "type": "C" - }, - { - "at": 2167.1889, - "frame": 120, - "type": "O" - }, - { - "at": 2172.7809, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8179, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8179, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8319, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8319, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8461, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8461, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8561, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8561, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8766, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8766, - "frame": 117, - "type": "O" - }, - { - "at": 2172.8926, - "frame": 117, - "type": "C" - }, - { - "at": 2172.8926, - "frame": 117, - "type": "O" - }, - { - "at": 2172.9236, - "frame": 117, - "type": "C" - }, - { - "at": 2172.9236, - "frame": 117, - "type": "O" - }, - { - "at": 2172.9726, - "frame": 117, - "type": "C" - }, - { - "at": 2172.9726, - "frame": 120, - "type": "O" - }, - { - "at": 2173.0014, - "frame": 120, - "type": "C" - }, - { - "at": 2173.0014, - "frame": 120, - "type": "C" - }, - { - "at": 2173.0014, - "frame": 81, - "type": "O" - }, - { - "at": 2173.0144, - "frame": 81, - "type": "C" - }, - { - "at": 2173.0144, - "frame": 79, - "type": "C" - }, - { - "at": 2173.0144, - "frame": 82, - "type": "O" - }, - { - "at": 2173.0357, - "frame": 82, - "type": "C" - }, - { - "at": 2173.0357, - "frame": 83, - "type": "O" - }, - { - "at": 2173.0519, - "frame": 83, - "type": "C" - }, - { - "at": 2173.0519, - "frame": 84, - "type": "O" - }, - { - "at": 2173.0665, - "frame": 84, - "type": "C" - }, - { - "at": 2173.0665, - "frame": 67, - "type": "O" - }, - { - "at": 2173.0771, - "frame": 67, - "type": "C" - }, - { - "at": 2173.0771, - "frame": 85, - "type": "O" - }, - { - "at": 2173.0927, - "frame": 85, - "type": "C" - }, - { - "at": 2173.0927, - "frame": 86, - "type": "O" - }, - { - "at": 2173.1119, - "frame": 86, - "type": "C" - }, - { - "at": 2173.1119, - "frame": 87, - "type": "O" - }, - { - "at": 2173.145, - "frame": 87, - "type": "C" - }, - { - "at": 2173.145, - "frame": 99, - "type": "O" - }, - { - "at": 2173.1563, - "frame": 99, - "type": "C" - }, - { - "at": 2173.1563, - "frame": 88, - "type": "O" - }, - { - "at": 2173.1652, - "frame": 88, - "type": "C" - }, - { - "at": 2173.1652, - "frame": 89, - "type": "O" - }, - { - "at": 2173.1782, - "frame": 89, - "type": "C" - }, - { - "at": 2173.1782, - "frame": 66, - "type": "O" - }, - { - "at": 2173.1903, - "frame": 66, - "type": "C" - }, - { - "at": 2173.1903, - "frame": 64, - "type": "O" - }, - { - "at": 2173.2009, - "frame": 64, - "type": "C" - }, - { - "at": 2173.2009, - "frame": 90, - "type": "O" - }, - { - "at": 2173.2204, - "frame": 90, - "type": "C" - }, - { - "at": 2173.2204, - "frame": 91, - "type": "O" - }, - { - "at": 2173.2389, - "frame": 91, - "type": "C" - }, - { - "at": 2173.2389, - "frame": 92, - "type": "O" - }, - { - "at": 2173.2503, - "frame": 92, - "type": "C" - }, - { - "at": 2173.2503, - "frame": 93, - "type": "O" - }, - { - "at": 2173.2609, - "frame": 93, - "type": "C" - }, - { - "at": 2173.2609, - "frame": 94, - "type": "O" - }, - { - "at": 2173.509, - "frame": 95, - "type": "O" - }, - { - "at": 2173.523, - "frame": 95, - "type": "C" - }, - { - "at": 2173.523, - "frame": 95, - "type": "O" - }, - { - "at": 2173.5985, - "frame": 95, - "type": "C" - }, - { - "at": 2173.5985, - "frame": 95, - "type": "O" - }, - { - "at": 2173.6126, - "frame": 95, - "type": "C" - }, - { - "at": 2173.6126, - "frame": 95, - "type": "O" - }, - { - "at": 2173.6301, - "frame": 95, - "type": "C" - }, - { - "at": 2173.6301, - "frame": 95, - "type": "O" - }, - { - "at": 2173.6791, - "frame": 95, - "type": "C" - }, - { - "at": 2173.6791, - "frame": 96, - "type": "O" - }, - { - "at": 2173.8813, - "frame": 96, - "type": "C" - }, - { - "at": 2173.8813, - "frame": 94, - "type": "C" - }, - { - "at": 2173.8813, - "frame": 67, - "type": "O" - }, - { - "at": 2173.904, - "frame": 67, - "type": "C" - }, - { - "at": 2173.904, - "frame": 77, - "type": "O" - }, - { - "at": 2173.9299, - "frame": 77, - "type": "C" - }, - { - "at": 2173.9299, - "frame": 78, - "type": "O" - }, - { - "at": 2174.3018, - "frame": 78, - "type": "C" - }, - { - "at": 2174.3018, - "frame": 79, - "type": "O" - }, - { - "at": 2174.9261, - "frame": 121, - "type": "O" - }, - { - "at": 2174.9392, - "frame": 121, - "type": "C" - }, - { - "at": 2174.9392, - "frame": 121, - "type": "O" - }, - { - "at": 2174.9553, - "frame": 121, - "type": "C" - }, - { - "at": 2174.9553, - "frame": 121, - "type": "O" - }, - { - "at": 2175.0012, - "frame": 121, - "type": "C" - }, - { - "at": 2175.0012, - "frame": 81, - "type": "O" - }, - { - "at": 2175.0155, - "frame": 81, - "type": "C" - }, - { - "at": 2175.0155, - "frame": 79, - "type": "C" - }, - { - "at": 2175.0155, - "frame": 82, - "type": "O" - }, - { - "at": 2175.0271, - "frame": 82, - "type": "C" - }, - { - "at": 2175.0271, - "frame": 83, - "type": "O" - }, - { - "at": 2175.0415, - "frame": 83, - "type": "C" - }, - { - "at": 2175.0415, - "frame": 84, - "type": "O" - }, - { - "at": 2175.0663, - "frame": 84, - "type": "C" - }, - { - "at": 2175.0663, - "frame": 67, - "type": "O" - }, - { - "at": 2175.0775, - "frame": 67, - "type": "C" - }, - { - "at": 2175.0775, - "frame": 85, - "type": "O" - }, - { - "at": 2175.0973, - "frame": 85, - "type": "C" - }, - { - "at": 2175.0973, - "frame": 86, - "type": "O" - }, - { - "at": 2176.9299, - "frame": 86, - "type": "C" - }, - { - "at": 2176.9299, - "frame": 87, - "type": "O" - }, - { - "at": 2176.9584, - "frame": 87, - "type": "C" - }, - { - "at": 2176.9584, - "frame": 88, - "type": "O" - }, - { - "at": 2176.9702, - "frame": 88, - "type": "C" - }, - { - "at": 2176.9702, - "frame": 89, - "type": "O" - }, - { - "at": 2177.0177, - "frame": 89, - "type": "C" - }, - { - "at": 2177.0177, - "frame": 66, - "type": "O" - }, - { - "at": 2177.0313, - "frame": 66, - "type": "C" - }, - { - "at": 2177.0313, - "frame": 64, - "type": "O" - }, - { - "at": 2177.0418, - "frame": 64, - "type": "C" - }, - { - "at": 2177.0418, - "frame": 90, - "type": "O" - }, - { - "at": 2177.0534, - "frame": 90, - "type": "C" - }, - { - "at": 2177.0534, - "frame": 91, - "type": "O" - }, - { - "at": 2177.0717, - "frame": 91, - "type": "C" - }, - { - "at": 2177.0717, - "frame": 92, - "type": "O" - }, - { - "at": 2177.0827, - "frame": 92, - "type": "C" - }, - { - "at": 2177.0827, - "frame": 93, - "type": "O" - }, - { - "at": 2177.1026, - "frame": 93, - "type": "C" - }, - { - "at": 2177.1026, - "frame": 94, - "type": "O" - }, - { - "at": 2177.3687, - "frame": 95, - "type": "O" - }, - { - "at": 2177.3935, - "frame": 95, - "type": "C" - }, - { - "at": 2177.3935, - "frame": 95, - "type": "O" - }, - { - "at": 2177.4649, - "frame": 95, - "type": "C" - }, - { - "at": 2177.4649, - "frame": 95, - "type": "O" - }, - { - "at": 2177.4794, - "frame": 95, - "type": "C" - }, - { - "at": 2177.4794, - "frame": 95, - "type": "O" - }, - { - "at": 2177.4968, - "frame": 95, - "type": "C" - }, - { - "at": 2177.4968, - "frame": 95, - "type": "O" - }, - { - "at": 2177.5412, - "frame": 95, - "type": "C" - }, - { - "at": 2177.5412, - "frame": 96, - "type": "O" - }, - { - "at": 2177.7536, - "frame": 96, - "type": "C" - }, - { - "at": 2177.7536, - "frame": 94, - "type": "C" - }, - { - "at": 2177.7536, - "frame": 67, - "type": "O" - }, - { - "at": 2177.7766, - "frame": 67, - "type": "C" - }, - { - "at": 2177.7766, - "frame": 77, - "type": "O" - }, - { - "at": 2177.7901, - "frame": 77, - "type": "C" - }, - { - "at": 2177.7901, - "frame": 93, - "type": "O" - }, - { - "at": 2177.81, - "frame": 93, - "type": "C" - }, - { - "at": 2177.81, - "frame": 64, - "type": "O" - }, - { - "at": 2177.8267, - "frame": 64, - "type": "C" - }, - { - "at": 2177.8267, - "frame": 122, - "type": "O" - }, - { - "at": 2177.853, - "frame": 122, - "type": "C" - }, - { - "at": 2177.853, - "frame": 123, - "type": "O" - }, - { - "at": 2177.8843, - "frame": 123, - "type": "C" - }, - { - "at": 2177.8843, - "frame": 124, - "type": "O" - }, - { - "at": 2178.0959, - "frame": 124, - "type": "C" - }, - { - "at": 2178.0959, - "frame": 125, - "type": "O" - }, - { - "at": 2178.3588, - "frame": 125, - "type": "C" - }, - { - "at": 2178.3588, - "frame": 126, - "type": "O" - }, - { - "at": 2178.4092, - "frame": 126, - "type": "C" - }, - { - "at": 2178.4092, - "frame": 1, - "type": "C" - } - ] - } - ] -} \ No newline at end of file From 3714581d6fd290ac2cdab75ad392d6c9a42ab67b Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Mon, 12 Sep 2022 10:13:24 -0500 Subject: [PATCH 3/4] Maybe fixed bug that showed prev. installed GPUs - Added a check where the LastSeen value of HKLM:\SOFTWARE\Microsoft\DirectX\ is compared to the LastSeen value of each subkey --- winfetch.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/winfetch.ps1 b/winfetch.ps1 index 7a2d6d6..7b39c32 100644 --- a/winfetch.ps1 +++ b/winfetch.ps1 @@ -703,8 +703,9 @@ function info_cpu { function info_gpu { [System.Collections.ArrayList]$lines = @() # Get list of GPUs from the Registry + $LastSeen = (Get-ItemProperty -path HKLM:\SOFTWARE\Microsoft\DirectX\).LastSeen Get-ChildItem -path HKLM:\SOFTWARE\Microsoft\DirectX\ | Get-ItemProperty | ForEach-Object { - if(($_.Description -ne "Microsoft Basic Render Driver") -and ($lines.content -notcontains $_.Description)){ + if(($_.Description -ne "Microsoft Basic Render Driver") -and ($_.LastSeen -eq $LastSeen) -and ($lines.content -notcontains $_.Description)){ [void]$lines.Add(@{ title = "GPU" content = $_.Description From 06cb9a7d059fe3af02e83f20059b48b0a023d179 Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Mon, 12 Sep 2022 17:56:14 -0500 Subject: [PATCH 4/4] Make info_locale blazingly fast - Made info_locale speedy - Takes the registy entries at HKCU:Control Panel\International to get region code and language code, and passes them into two very large hash tables to get the accompanying region and language values. - TODO: Make work when user has more than one language - Maybe: Find a way to circumvent the very large table - 3251 ms -> 12.43 ms - 262x Faster --- winfetch.ps1 | 367 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 355 insertions(+), 12 deletions(-) diff --git a/winfetch.ps1 b/winfetch.ps1 index 7b39c32..ee517b3 100644 --- a/winfetch.ps1 +++ b/winfetch.ps1 @@ -966,22 +966,365 @@ function info_battery { # ===== LOCALE ===== function info_locale { - # `Get-WinUserLanguageList` has a regression bug on PowerShell Core - # https://github.com/PowerShell/PowerShellModuleCoverage/issues/18 - # A slight increase in response time is incurred as a result - - $contentstring = $null - if ($PSVersionTable.PSVersion.Major -gt 5) { - Import-Module International -UseWindowsPowerShell -WarningAction SilentlyContinue - $contentstring = "$((Get-WinHomeLocation).HomeLocation) - $((Get-WinUserLanguageList)[0].LocalizedName)" - Remove-Module International - } else { - $contentstring = "$((Get-WinHomeLocation).HomeLocation) - $((Get-WinUserLanguageList)[0].LocalizedName)" + # Hashtables for language and region codes + $localeLookup = @{ + "2" = "Antigua and Barbuda" + "3" = "Afghanistan" + "4" = "Algeria" + "5" = "Azerbaijan" + "6" = "Albania" + "7" = "Armenia" + "8" = "Andorra" + "9" = "Angola" + "10" = "American Samoa" + "11" = "Argentina" + "12" = "Australia" + "14" = "Austria" + "17" = "Bahrain" + "18" = "Barbados" + "19" = "Botswana" + "20" = "Bermuda" + "21" = "Belgium" + "22" = "Bahamas" + "23" = "Bangladesh" + "24" = "Belize" + "25" = "Bosnia and Herzegovina" + "26" = "Bolivia" + "27" = "Myanmar" + "28" = "Benin" + "29" = "Belarus" + "30" = "Solomon Islands" + "32" = "Brazil" + "34" = "Bhutan" + "35" = "Bulgaria" + "37" = "Brunei" + "38" = "Burundi" + "39" = "Canada" + "40" = "Cambodia" + "41" = "Chad" + "42" = "Sri Lanka" + "43" = "Congo" + "44" = "Congo (DRC)" + "45" = "China" + "46" = "Chile" + "49" = "Cameroon" + "50" = "Comoros" + "51" = "Colombia" + "54" = "Costa Rica" + "55" = "Central African Republic" + "56" = "Cuba" + "57" = "Cabo Verde" + "59" = "Cyprus" + "61" = "Denmark" + "62" = "Djibouti" + "63" = "Dominica" + "65" = "Dominican Republic" + "66" = "Ecuador" + "67" = "Egypt" + "68" = "Ireland" + "69" = "Equatorial Guinea" + "70" = "Estonia" + "71" = "Eritrea" + "72" = "El Salvador" + "73" = "Ethiopia" + "75" = "Czech Republic" + "77" = "Finland" + "78" = "Fiji" + "80" = "Micronesia" + "81" = "Faroe Islands" + "84" = "France" + "86" = "Gambia" + "87" = "Gabon" + "88" = "Georgia" + "89" = "Ghana" + "90" = "Gibraltar" + "91" = "Grenada" + "93" = "Greenland" + "94" = "Germany" + "98" = "Greece" + "99" = "Guatemala" + "100" = "Guinea" + "101" = "Guyana" + "103" = "Haiti" + "104" = "Hong Kong SAR" + "106" = "Honduras" + "108" = "Croatia" + "109" = "Hungary" + "110" = "Iceland" + "111" = "Indonesia" + "113" = "India" + "114" = "British Indian Ocean Territory" + "116" = "Iran" + "117" = "Israel" + "118" = "Italy" + "119" = "Côte d'Ivoire" + "121" = "Iraq" + "122" = "Japan" + "124" = "Jamaica" + "125" = "Jan Mayen" + "126" = "Jordan" + "127" = "Johnston Atoll" + "129" = "Kenya" + "130" = "Kyrgyzstan" + "131" = "North Korea" + "133" = "Kiribati" + "134" = "Korea" + "136" = "Kuwait" + "137" = "Kazakhstan" + "138" = "Laos" + "139" = "Lebanon" + "140" = "Latvia" + "141" = "Lithuania" + "142" = "Liberia" + "143" = "Slovakia" + "145" = "Liechtenstein" + "146" = "Lesotho" + "147" = "Luxembourg" + "148" = "Libya" + "149" = "Madagascar" + "151" = "Macao SAR" + "152" = "Moldova" + "154" = "Mongolia" + "156" = "Malawi" + "157" = "Mali" + "158" = "Monaco" + "159" = "Morocco" + "160" = "Mauritius" + "162" = "Mauritania" + "163" = "Malta" + "164" = "Oman" + "165" = "Maldives" + "166" = "Mexico" + "167" = "Malaysia" + "168" = "Mozambique" + "173" = "Niger" + "174" = "Vanuatu" + "175" = "Nigeria" + "176" = "Netherlands" + "177" = "Norway" + "178" = "Nepal" + "180" = "Nauru" + "181" = "Suriname" + "182" = "Nicaragua" + "183" = "New Zealand" + "184" = "Palestinian Authority" + "185" = "Paraguay" + "187" = "Peru" + "190" = "Pakistan" + "191" = "Poland" + "192" = "Panama" + "193" = "Portugal" + "194" = "Papua New Guinea" + "195" = "Palau" + "196" = "Guinea-Bissau" + "197" = "Qatar" + "198" = "Réunion" + "199" = "Marshall Islands" + "200" = "Romania" + "201" = "Philippines" + "202" = "Puerto Rico" + "203" = "Russia" + "204" = "Rwanda" + "205" = "Saudi Arabia" + "206" = "Saint Pierre and Miquelon" + "207" = "Saint Kitts and Nevis" + "208" = "Seychelles" + "209" = "South Africa" + "210" = "Senegal" + "212" = "Slovenia" + "213" = "Sierra Leone" + "214" = "San Marino" + "215" = "Singapore" + "216" = "Somalia" + "217" = "Spain" + "218" = "Saint Lucia" + "219" = "Sudan" + "220" = "Svalbard" + "221" = "Sweden" + "222" = "Syria" + "223" = "Switzerland" + "224" = "United Arab Emirates" + "225" = "Trinidad and Tobago" + "227" = "Thailand" + "228" = "Tajikistan" + "231" = "Tonga" + "232" = "Togo" + "233" = "São Tomé and Príncipe" + "234" = "Tunisia" + "235" = "Turkey" + "236" = "Tuvalu" + "237" = "Taiwan" + "238" = "Turkmenistan" + "239" = "Tanzania" + "240" = "Uganda" + "241" = "Ukraine" + "242" = "United Kingdom" + "244" = "United States" + "245" = "Burkina Faso" + "246" = "Uruguay" + "247" = "Uzbekistan" + "248" = "Saint Vincent and the Grenadines" + "249" = "Venezuela" + "251" = "Vietnam" + "252" = "U.S. Virgin Islands" + "253" = "Vatican City" + "254" = "Namibia" + "258" = "Wake Island" + "259" = "Samoa" + "260" = "Swaziland" + "261" = "Yemen" + "263" = "Zambia" + "264" = "Zimbabwe" + "269" = "Serbia and Montenegro (Former)" + "270" = "Montenegro" + "271" = "Serbia" + "273" = "Curaçao" + "300" = "Anguilla" + "276" = "South Sudan" + "301" = "Antarctica" + "302" = "Aruba" + "303" = "Ascension Island" + "304" = "Ashmore and Cartier Islands" + "305" = "Baker Island" + "306" = "Bouvet Island" + "307" = "Cayman Islands" + "308" = "Channel Islands" + "309" = "Christmas Island" + "310" = "Clipperton Island" + "311" = "Cocos (Keeling) Islands" + "312" = "Cook Islands" + "313" = "Coral Sea Islands" + "314" = "Diego Garcia" + "315" = "Falkland Islands" + "317" = "French Guiana" + "318" = "French Polynesia" + "319" = "French Southern Territories" + "321" = "Guadeloupe" + "322" = "Guam" + "323" = "Guantanamo Bay" + "324" = "Guernsey" + "325" = "Heard Island and McDonald Islands" + "326" = "Howland Island" + "327" = "Jarvis Island" + "328" = "Jersey" + "329" = "Kingman Reef" + "330" = "Martinique" + "331" = "Mayotte" + "332" = "Montserrat" + "333" = "Netherlands Antilles (Former)" + "334" = "New Caledonia" + "335" = "Niue" + "336" = "Norfolk Island" + "337" = "Northern Mariana Islands" + "338" = "Palmyra Atoll" + "339" = "Pitcairn Islands" + "340" = "Rota Island" + "341" = "Saipan" + "342" = "South Georgia and the South Sandwich Islands" + "343" = "St Helena, Ascension and Tristan da Cunha" + "346" = "Tinian Island" + "347" = "Tokelau" + "348" = "Tristan da Cunha" + "349" = "Turks and Caicos Islands" + "351" = "British Virgin Islands" + "352" = "Wallis and Futuna" + "742" = "Africa" + "2129" = "Asia" + "10541" = "Europe" + "15126" = "Isle of Man" + "19618" = "North Macedonia" + "20900" = "Melanesia" + "21206" = "Micronesia" + "21242" = "Midway Islands" + "23581" = "Northern America" + "26286" = "Polynesia" + "27082" = "Central America" + "27114" = "Oceania" + "30967" = "Sint Maarten" + "31396" = "South America" + "31706" = "Saint Martin" + "39070" = "World" + "42483" = "Western Africa" + "42484" = "Middle Africa" + "42487" = "Northern Africa" + "47590" = "Central Asia" + "47599" = "South-Eastern Asia" + "47600" = "Eastern Asia" + "47603" = "Eastern Africa" + "47609" = "Eastern Europe" + "47610" = "Southern Europe" + "47611" = "Middle East" + "47614" = "Southern Asia" + "7299303" = "Timor-Leste" + "9914689" = "Kosovo" + "10026358" = "Americas" + "10028789" = "Åland Islands" + "10039880" = "Caribbean" + "10039882" = "Northern Europe" + "10039883" = "Southern Africa" + "10210824" = "Western Europe" + "10210825" = "Australia and New Zealand" + "161832015" = "Saint Barthélemy" + "161832256" = "U.S. Minor Outlying Islands" + "161832257" = "Latin America and the Caribbean" + "161832258" = "Bonaire, Sint Eustatius and Saba" + } + $languageLookup = @{ + "ar-SA" = "Arabic (Saudi Arabia)" + "eu-ES" = "Basque (Basque)" + "bg-BG" = "Bulgarian (Bulgaria)" + "ca-ES" = "Catalan" + "zh-HK" = "Chinese (Traditional, Hong Kong SAR)" + "zh-CN" = "Chinese (Simplified, China)" + "zh-TW" = "Chinese (Traditional, Taiwan)" + "hr-HR" = "Croatian (Croatia)" + "cs-CZ" = "Czech (Czech Republic)" + "da-DK" = "Danish (Denmark)" + "nl-NL" = "Dutch (Netherlands)" + "en-US" = "English (United States)" + "en-GB" = "English (United Kingdom)" + "et-EE" = "Estonian (Estonia)" + "fi-FI" = "Finnish (Finland)" + "fr-CA" = "French (Canada)" + "fr-FR" = "French (France)" + "gl-ES" = "Galician" + "de-DE" = "German (Germany)" + "el-GR" = "Greek (Greece)" + "he-IL" = "Hebrew (Israel)" + "hu-HU" = "Hungarian (Hungary)" + "id-ID" = "Indonesian (Indonesia)" + "it-IT" = "Italian (Italy)" + "ja-JP" = "Japanese (Japan)" + "ko-KR" = "Korean (Korea)" + "lv-LV" = "Latvian (Latvia)" + "lt-LT" = "Lithuanian (Lithuania)" + "nb-NO" = "Norwegian, Bokmål (Norway)" + "pl-PL" = "Polish (Poland)" + "pt-BR" = "Portuguese (Brazil)" + "pt-PT" = "Portuguese (Portugal)" + "ro-RO" = "Romanian (Romania)" + "ru-RU" = "Russian (Russia)" + "sr-Latn-CS" = "Serbian (Latin, Serbia)" + "sr-Latn-RS" = "Serbian (Latin, Serbia)" + "sk-SK" = "Slovak (Slovakia)" + "sl-SI" = "Slovenian (Slovenia)" + "es-MX" = "Spanish (Mexico)" + "es-ES" = "Spanish (Spain)" + "sv-SE" = "Swedish (Sweden)" + "th-TH" = "Thai (Thailand)" + "tr-TR" = "Turkish (Turkey)" + "uk-UA" = "Ukrainian (Ukraine)" + "vi-VN" = "Vietnamese" } + # Get the current user's language and region using the registry + $Region = $localeLookup[(Get-ItemProperty -Path "HKCU:Control Panel\International\Geo").Nation] + # TODO - Create Scenario for when user has more than one language + $Language = $languageLookup[(Get-ItemProperty -Path "HKCU:Control Panel\International\User Profile").Languages] + return @{ title = "Locale" - content = $contentstring + content = "$Region - $Language" } }