diff --git a/.github/workflows/android_build.yml b/.github/workflows/android_build.yml
index fbb59039..26073779 100644
--- a/.github/workflows/android_build.yml
+++ b/.github/workflows/android_build.yml
@@ -33,11 +33,10 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install Android Workloads
run: |
- dotnet workload update --version 8.0.400
dotnet workload install android --ignore-failed-sources
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
diff --git a/.github/workflows/core_android_build.yml b/.github/workflows/core_android_build.yml
index 8c0da591..f6a40d46 100644
--- a/.github/workflows/core_android_build.yml
+++ b/.github/workflows/core_android_build.yml
@@ -33,11 +33,10 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install Android Workloads
run: |
- dotnet workload update --version 8.0.400
dotnet workload install android --ignore-failed-sources
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
diff --git a/.github/workflows/core_desktopgl_build.yml b/.github/workflows/core_desktopgl_build.yml
index 4fc47640..3ccd7acc 100644
--- a/.github/workflows/core_desktopgl_build.yml
+++ b/.github/workflows/core_desktopgl_build.yml
@@ -15,7 +15,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./cocos2d-mono.DesktopGL/cocos2d-mono.Core.DesktopGL.sln
- name: Build
diff --git a/.github/workflows/core_ios_build.yml b/.github/workflows/core_ios_build.yml
index f98a7fe9..1f19a656 100644
--- a/.github/workflows/core_ios_build.yml
+++ b/.github/workflows/core_ios_build.yml
@@ -29,11 +29,10 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install iOS Workloads
run: |
- dotnet workload update --version 8.0.400
dotnet workload install ios --ignore-failed-sources
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
diff --git a/.github/workflows/core_uwp_build.yml b/.github/workflows/core_uwp_build.yml
deleted file mode 100644
index 6fea4ade..00000000
--- a/.github/workflows/core_uwp_build.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-name: Core UWP
-
-on:
- push:
- branches: ["*"]
- pull_request:
- branches: ["*"]
-
-jobs:
- build:
- strategy:
- matrix:
- configuration: [Debug, Release]
-
- runs-on:
- windows-latest # For a list of available runner types, refer to
- # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
-
- env:
- Solution_Name: ./cocos2d-mono.Uwp/cocos2d-mono.Core.Uwp.sln # Replace with your solution name, i.e. MyWpfApp.sln.
-
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- # Install the .NET Core workload
- - name: Install .NET Core
- uses: actions/setup-dotnet@v2
- with:
- dotnet-version: 6.0.x
-
- # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- - name: Setup MSBuild.exe
- uses: microsoft/setup-msbuild@v1.0.2
-
- # Restore the application to populate the obj folder with RuntimeIdentifiers
- - name: Restore the application
- run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
- env:
- Configuration: ${{ matrix.configuration }}
-
- - name: Build the application
- run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
- env:
- Configuration: ${{ matrix.configuration }}
diff --git a/.github/workflows/core_windows_build.yml b/.github/workflows/core_windows_build.yml
index 4deebdab..2c156101 100644
--- a/.github/workflows/core_windows_build.yml
+++ b/.github/workflows/core_windows_build.yml
@@ -29,7 +29,7 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
diff --git a/.github/workflows/desktopgl_build.yml b/.github/workflows/desktopgl_build.yml
index cb381b0c..89eac73b 100644
--- a/.github/workflows/desktopgl_build.yml
+++ b/.github/workflows/desktopgl_build.yml
@@ -15,7 +15,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./cocos2d-mono.DesktopGL/cocos2d-mono.DesktopGL.sln
- name: Build
diff --git a/.github/workflows/ios_build.yml b/.github/workflows/ios_build.yml
index 5aa6fcb4..046db8df 100644
--- a/.github/workflows/ios_build.yml
+++ b/.github/workflows/ios_build.yml
@@ -29,7 +29,7 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install iOS Workloads
run: |
diff --git a/.github/workflows/uwp_build.yml b/.github/workflows/uwp_build.yml
deleted file mode 100644
index a25495b8..00000000
--- a/.github/workflows/uwp_build.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-name: UWP
-
-on:
- push:
- branches: [ "*" ]
- pull_request:
- branches: [ "*" ]
-
-jobs:
-
- build:
-
- strategy:
- matrix:
- configuration: [Debug, Release]
-
- runs-on: windows-latest # For a list of available runner types, refer to
- # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
-
- env:
- Solution_Name: ./cocos2d-mono.Uwp/cocos2d-mono.Uwp.sln # Replace with your solution name, i.e. MyWpfApp.sln.
-
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- # Install the .NET Core workload
- - name: Install .NET Core
- uses: actions/setup-dotnet@v2
- with:
- dotnet-version: 6.0.x
-
- # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- - name: Setup MSBuild.exe
- uses: microsoft/setup-msbuild@v1.0.2
-
- # Restore the application to populate the obj folder with RuntimeIdentifiers
- - name: Restore the application
- run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
- env:
- Configuration: ${{ matrix.configuration }}
-
- - name: Build the application
- run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
- env:
- Configuration: ${{ matrix.configuration }}
\ No newline at end of file
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index af96da81..7f7cd303 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -29,7 +29,7 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
diff --git a/Nuget Packages/Cocos2D.Android.nuspec b/Nuget Packages/Cocos2D.Android.nuspec
index bf0d9d8c..3832f59b 100644
--- a/Nuget Packages/Cocos2D.Android.nuspec
+++ b/Nuget Packages/Cocos2D.Android.nuspec
@@ -20,8 +20,8 @@
mono monogame cocos2d game
-
-
+
+
diff --git a/Nuget Packages/Cocos2D.Core.Android.nuspec b/Nuget Packages/Cocos2D.Core.Android.nuspec
index 9c48970c..8a578a1c 100644
--- a/Nuget Packages/Cocos2D.Core.Android.nuspec
+++ b/Nuget Packages/Cocos2D.Core.Android.nuspec
@@ -20,7 +20,7 @@
mono monogame cocos2d game
-
+
diff --git a/Nuget Packages/Cocos2D.Core.DesktopGL.nuspec b/Nuget Packages/Cocos2D.Core.DesktopGL.nuspec
index 49dc9dd5..31b9a15c 100644
--- a/Nuget Packages/Cocos2D.Core.DesktopGL.nuspec
+++ b/Nuget Packages/Cocos2D.Core.DesktopGL.nuspec
@@ -19,7 +19,7 @@
Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
mono monogame cocos2d game
-
+
diff --git a/Nuget Packages/Cocos2D.Core.Uwp.nuspec b/Nuget Packages/Cocos2D.Core.Uwp.nuspec
deleted file mode 100644
index 3c1c2ed9..00000000
--- a/Nuget Packages/Cocos2D.Core.Uwp.nuspec
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
- Cocos2D-Mono.Core.Uwp
- 2.4.8.2
- cocos2d-mono for Core UWP
- Cocos2D-Mono Team, Broken Walls Studios
- Cocos2D-Mono Team, Broken Walls Studios
- MIT
- https://github.com/brandmooffin/cocos2d-mono
- https://pbs.twimg.com/profile_images/1112234186457473024/G7S7ARjA_400x400.png
- true
- Cocos2D-Mono for Core UWP (Windows Universal)
-
-
-- CCDrawManager reset width and height on Init
-- Remove early config init during CCLabel init
-
- Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
- mono monogame cocos2d game
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Nuget Packages/Cocos2D.Core.Windows.nuspec b/Nuget Packages/Cocos2D.Core.Windows.nuspec
index 0742b57a..7199e8b3 100644
--- a/Nuget Packages/Cocos2D.Core.Windows.nuspec
+++ b/Nuget Packages/Cocos2D.Core.Windows.nuspec
@@ -21,7 +21,7 @@
-
+
diff --git a/Nuget Packages/Cocos2D.Core.iOS.nuspec b/Nuget Packages/Cocos2D.Core.iOS.nuspec
index 84602cc5..ed8f74c8 100644
--- a/Nuget Packages/Cocos2D.Core.iOS.nuspec
+++ b/Nuget Packages/Cocos2D.Core.iOS.nuspec
@@ -19,7 +19,7 @@
Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
mono monogame cocos2d game
-
+
diff --git a/Nuget Packages/Cocos2D.DesktopGL.nuspec b/Nuget Packages/Cocos2D.DesktopGL.nuspec
index 68d395bd..17e8d34b 100644
--- a/Nuget Packages/Cocos2D.DesktopGL.nuspec
+++ b/Nuget Packages/Cocos2D.DesktopGL.nuspec
@@ -19,8 +19,8 @@
Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
mono monogame cocos2d game
-
-
+
+
diff --git a/Nuget Packages/Cocos2D.Uwp.nuspec b/Nuget Packages/Cocos2D.Uwp.nuspec
deleted file mode 100644
index f9e3047d..00000000
--- a/Nuget Packages/Cocos2D.Uwp.nuspec
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
- Cocos2D-Mono.Uwp
- 2.4.8.2
- cocos2d-mono for UWP
- Cocos2D-Mono Team, Broken Walls Studios
- Cocos2D-Mono Team, Broken Walls Studios
- MIT
- https://github.com/brandmooffin/cocos2d-mono
- https://pbs.twimg.com/profile_images/1112234186457473024/G7S7ARjA_400x400.png
- true
- Cocos2D-Mono for UWP (Windows Universal)
-
-
-- CCDrawManager reset width and height on Init
-- Remove early config init during CCLabel init
-
- Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
- mono monogame cocos2d game
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Nuget Packages/Cocos2D.Windows.nuspec b/Nuget Packages/Cocos2D.Windows.nuspec
index 176314b5..1fe3f14e 100644
--- a/Nuget Packages/Cocos2D.Windows.nuspec
+++ b/Nuget Packages/Cocos2D.Windows.nuspec
@@ -21,8 +21,8 @@
-
-
+
+
diff --git a/Nuget Packages/Cocos2D.iOS.nuspec b/Nuget Packages/Cocos2D.iOS.nuspec
index 5fe9c35e..4d90e5be 100644
--- a/Nuget Packages/Cocos2D.iOS.nuspec
+++ b/Nuget Packages/Cocos2D.iOS.nuspec
@@ -19,8 +19,8 @@
Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.
mono monogame cocos2d game
-
-
+
+
diff --git a/README.md b/README.md
index 74078f72..1f04a731 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,6 @@
[![DesktopGL (Windows/Linux/macOS)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/desktopgl_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/desktopgl_build.yml)
[![Windows](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/windows_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/windows_build.yml)
[![Android](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/android_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/android_build.yml)
-[![UWP](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/uwp_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/uwp_build.yml)
[![iOS](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/dotnet-desktop.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/dotnet-desktop.yml)
diff --git a/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Core.Uwp.sln b/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Core.Uwp.sln
deleted file mode 100644
index 89d38e4d..00000000
--- a/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Core.Uwp.sln
+++ /dev/null
@@ -1,110 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.28803.452
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "box2d", "..\..\box2d\box2d.shproj", "{02F4E1C8-8A0D-49DE-9B39-A966E126ACC3}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "box2d.Uwp", "..\..\box2d\box2d.Uwp\box2d.Uwp.csproj", "{ACAC14A0-8C2B-413C-875F-A2AD3C647800}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d", "..\..\cocos2d\cocos2d.shproj", "{AFED60A6-F61D-4C4E-BB3B-20FFDA06B990}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d.Core.Uwp", "..\..\cocos2d\cocos2d.Core.Uwp\cocos2d.Core.Uwp.csproj", "{11382845-C53D-4D81-8F2E-A7F88C9BDAD6}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d-mono.Tests", "..\cocos2d-mono.Tests\cocos2d-mono.Tests.shproj", "{2AA8482A-DC8A-4905-8D09-F34D95FC66B4}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d-mono.Tests.Core.Uwp", "..\cocos2d-mono.Tests\cocos2d-mono.Tests.Core.Uwp\cocos2d-mono.Tests.Core.Uwp.csproj", "{40C1898D-DD60-4112-BBCA-39FECD44C895}"
-EndProject
-Global
- GlobalSection(SharedMSBuildProjectFiles) = preSolution
- ..\..\box2d\box2d.projitems*{02f4e1c8-8a0d-49de-9b39-a966e126acc3}*SharedItemsImports = 13
- ..\..\cocos2d\cocos2d.projitems*{11382845-c53d-4d81-8f2e-a7f88c9bdad6}*SharedItemsImports = 4
- ..\cocos2d-mono.Tests\cocos2d-mono.Tests.projitems*{2aa8482a-dc8a-4905-8d09-f34d95fc66b4}*SharedItemsImports = 13
- ..\cocos2d-mono.Tests\cocos2d-mono.Tests.projitems*{40c1898d-dd60-4112-bbca-39fecd44c895}*SharedItemsImports = 4
- ..\..\box2d\box2d.projitems*{acac14a0-8c2b-413c-875f-a2ad3c647800}*SharedItemsImports = 4
- ..\..\cocos2d\cocos2d.projitems*{afed60a6-f61d-4c4e-bb3b-20ffda06b990}*SharedItemsImports = 13
- EndGlobalSection
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|ARM = Debug|ARM
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|ARM = Release|ARM
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.ActiveCfg = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.Build.0 = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.Build.0 = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.ActiveCfg = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.Build.0 = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.ActiveCfg = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.Build.0 = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.Build.0 = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.ActiveCfg = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.Build.0 = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.ActiveCfg = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.Build.0 = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.ActiveCfg = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.Build.0 = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.ActiveCfg = Release|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.Build.0 = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.ActiveCfg = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.Build.0 = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.Build.0 = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.ActiveCfg = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.Build.0 = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.ActiveCfg = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.Build.0 = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.Build.0 = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.ActiveCfg = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.Build.0 = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.ActiveCfg = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.Build.0 = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.ActiveCfg = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.Build.0 = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.ActiveCfg = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.Build.0 = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|Any CPU.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|Any CPU.Deploy.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.ActiveCfg = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.Build.0 = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.Deploy.0 = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM64.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.ActiveCfg = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.Build.0 = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.Deploy.0 = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.Build.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.Deploy.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|Any CPU.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.ActiveCfg = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.Build.0 = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.Deploy.0 = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM64.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.ActiveCfg = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.Build.0 = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.Deploy.0 = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.Build.0 = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.Deploy.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {999F0987-118E-4AA6-AAE2-A60474109657}
- EndGlobalSection
-EndGlobal
diff --git a/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.sln b/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.sln
deleted file mode 100644
index d322b4ff..00000000
--- a/Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.sln
+++ /dev/null
@@ -1,110 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.28803.452
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "box2d", "..\..\box2d\box2d.shproj", "{02F4E1C8-8A0D-49DE-9B39-A966E126ACC3}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "box2d.Uwp", "..\..\box2d\box2d.Uwp\box2d.Uwp.csproj", "{ACAC14A0-8C2B-413C-875F-A2AD3C647800}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d", "..\..\cocos2d\cocos2d.shproj", "{AFED60A6-F61D-4C4E-BB3B-20FFDA06B990}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d.Uwp", "..\..\cocos2d\cocos2d.Uwp\cocos2d.Uwp.csproj", "{11382845-C53D-4D81-8F2E-A7F88C9BDAD6}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d-mono.Tests", "..\cocos2d-mono.Tests\cocos2d-mono.Tests.shproj", "{2AA8482A-DC8A-4905-8D09-F34D95FC66B4}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d-mono.Tests.Uwp", "..\cocos2d-mono.Tests\cocos2d-mono.Tests.Uwp\cocos2d-mono.Tests.Uwp.csproj", "{40C1898D-DD60-4112-BBCA-39FECD44C895}"
-EndProject
-Global
- GlobalSection(SharedMSBuildProjectFiles) = preSolution
- ..\..\box2d\box2d.projitems*{02f4e1c8-8a0d-49de-9b39-a966e126acc3}*SharedItemsImports = 13
- ..\..\cocos2d\cocos2d.projitems*{11382845-c53d-4d81-8f2e-a7f88c9bdad6}*SharedItemsImports = 4
- ..\cocos2d-mono.Tests\cocos2d-mono.Tests.projitems*{2aa8482a-dc8a-4905-8d09-f34d95fc66b4}*SharedItemsImports = 13
- ..\cocos2d-mono.Tests\cocos2d-mono.Tests.projitems*{40c1898d-dd60-4112-bbca-39fecd44c895}*SharedItemsImports = 4
- ..\..\box2d\box2d.projitems*{acac14a0-8c2b-413c-875f-a2ad3c647800}*SharedItemsImports = 4
- ..\..\cocos2d\cocos2d.projitems*{afed60a6-f61d-4c4e-bb3b-20ffda06b990}*SharedItemsImports = 13
- EndGlobalSection
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|ARM = Debug|ARM
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|ARM = Release|ARM
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.ActiveCfg = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.Build.0 = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.Build.0 = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.ActiveCfg = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.Build.0 = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.ActiveCfg = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.Build.0 = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.Build.0 = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.ActiveCfg = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.Build.0 = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.ActiveCfg = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.Build.0 = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.ActiveCfg = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.Build.0 = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.ActiveCfg = Release|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.Build.0 = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.ActiveCfg = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.Build.0 = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.Build.0 = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.ActiveCfg = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.Build.0 = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.ActiveCfg = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.Build.0 = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.Build.0 = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.ActiveCfg = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.Build.0 = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.ActiveCfg = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.Build.0 = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.ActiveCfg = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.Build.0 = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.ActiveCfg = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.Build.0 = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|Any CPU.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|Any CPU.Deploy.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.ActiveCfg = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.Build.0 = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM.Deploy.0 = Debug|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|ARM64.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.ActiveCfg = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.Build.0 = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x64.Deploy.0 = Debug|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.ActiveCfg = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.Build.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Debug|x86.Deploy.0 = Debug|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|Any CPU.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.ActiveCfg = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.Build.0 = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM.Deploy.0 = Release|ARM
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|ARM64.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.ActiveCfg = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.Build.0 = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x64.Deploy.0 = Release|x64
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.ActiveCfg = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.Build.0 = Release|x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}.Release|x86.Deploy.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {999F0987-118E-4AA6-AAE2-A60474109657}
- EndGlobalSection
-EndGlobal
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/.config/dotnet-tools.json
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/cocos2d-mono.Tests.Android.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/cocos2d-mono.Tests.Android.csproj
index 78bf22c4..21832624 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/cocos2d-mono.Tests.Android.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Android/cocos2d-mono.Tests.Android.csproj
@@ -6,7 +6,7 @@
true
Off
false
- net7.0-android
+ net8.0-android
false
Exe
21.0
@@ -38,8 +38,8 @@
-
-
+
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Android/cocos2d-mono.Tests.Core.Android.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Android/cocos2d-mono.Tests.Core.Android.csproj
index 21aaabb0..519e330b 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Android/cocos2d-mono.Tests.Core.Android.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Android/cocos2d-mono.Tests.Core.Android.csproj
@@ -6,7 +6,7 @@
true
Off
false
- net7.0-android
+ net8.0-android
false
Exe
21.0
@@ -38,7 +38,7 @@
-
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
index c381567b..e5268a17 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
@@ -10,7 +10,7 @@
cocos2d-mono.Tests.Core.DesktopGL
512
DesktopGL
- net7.0
+ net8.0
@@ -67,7 +67,7 @@
-
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/LockScreenLogo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/LockScreenLogo.scale-200.png
deleted file mode 100644
index 735f57ad..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/LockScreenLogo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/SplashScreen.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/SplashScreen.scale-200.png
deleted file mode 100644
index 023e7f1f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/SplashScreen.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square150x150Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square150x150Logo.scale-200.png
deleted file mode 100644
index af49fec1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square150x150Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.scale-200.png
deleted file mode 100644
index ce342a2e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
deleted file mode 100644
index f6c02ce9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/StoreLogo.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/StoreLogo.png
deleted file mode 100644
index 7385b56c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/StoreLogo.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Wide310x150Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Wide310x150Logo.scale-200.png
deleted file mode 100644
index 288995b3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Assets/Wide310x150Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Comet.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Comet.xnb
deleted file mode 100644
index 10f86a99..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Comet.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Fog.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Fog.xnb
deleted file mode 100644
index 6ef5f44e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Fog.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/HelloWorld.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/HelloWorld.xnb
deleted file mode 100644
index d12279a9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/HelloWorld.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Icon.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Icon.xnb
deleted file mode 100644
index 04f954e9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Icon.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Pea.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Pea.xnb
deleted file mode 100644
index bb6ef0b2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/Pea.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/PlanetCute-1024x1024.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/PlanetCute-1024x1024.xnb
deleted file mode 100644
index c46041e9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/PlanetCute-1024x1024.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButton.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButton.xnb
deleted file mode 100644
index 47a08876..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButton.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButtonPressed.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButtonPressed.xnb
deleted file mode 100644
index 0d17145a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SendScoreButtonPressed.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpinningPeas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpinningPeas.xnb
deleted file mode 100644
index 272f7dba..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpinningPeas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpookyPeas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpookyPeas.xnb
deleted file mode 100644
index 272f7dba..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/SpookyPeas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/aButton.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/aButton.xnb
deleted file mode 100644
index b091c416..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/aButton.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrows.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrows.xnb
deleted file mode 100644
index 7a1d7960..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrows.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrowsBar.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrowsBar.xnb
deleted file mode 100644
index d2fdb699..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/arrowsBar.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/atlastest.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/atlastest.xnb
deleted file mode 100644
index 8606741a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/atlastest.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1-hd.xnb
deleted file mode 100644
index e32cc520..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1.xnb
deleted file mode 100644
index 990ef910..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2-hd.xnb
deleted file mode 100644
index 74e9f2e3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2.xnb
deleted file mode 100644
index 0557fa11..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/b2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bButton.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bButton.xnb
deleted file mode 100644
index 59e6ea52..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bButton.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background.xnb
deleted file mode 100644
index 90564c6d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1-hd.xnb
deleted file mode 100644
index c4642a24..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1.xnb
deleted file mode 100644
index 13e179e4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2-hd.xnb
deleted file mode 100644
index 116aeb6e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2.xnb
deleted file mode 100644
index 76cc59c2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3-hd.xnb
deleted file mode 100644
index 45db1d5c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3.xnb
deleted file mode 100644
index 89504241..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/background3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball-hd.xnb
deleted file mode 100644
index 42a33d4f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball.xnb
deleted file mode 100644
index 03c9c91b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ball.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bitmapFontTest3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bitmapFontTest3.xnb
deleted file mode 100644
index c634832a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bitmapFontTest3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks-hd.xnb
deleted file mode 100644
index 40c7a32a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks.xnb
deleted file mode 100644
index c790c9c3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9.xnb
deleted file mode 100644
index f625c9e2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9r.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9r.xnb
deleted file mode 100644
index 364cbf21..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9r.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.plist
deleted file mode 100644
index d6f649cf..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.plist
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
- frames
-
- blocks9.png
-
- frame
- {{67,153},{96,96}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{96,96}}
- sourceSize
- {96,96}
-
- blocks9r.png
-
- frame
- {{67,55},{96,96}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{96,96}}
- sourceSize
- {96,96}
-
- grossini_dance_01.png
-
- frame
- {{67,2},{51,109}}
- offset
- {0,-1}
- rotated
-
- sourceColorRect
- {{17,7},{51,109}}
- sourceSize
- {85,121}
-
- grossini_dance_02.png
-
- frame
- {{2,113},{63,109}}
- offset
- {-6,-1}
- rotated
-
- sourceColorRect
- {{5,7},{63,109}}
- sourceSize
- {85,121}
-
- grossini_dance_03.png
-
- frame
- {{2,2},{63,109}}
- offset
- {-6,-1}
- rotated
-
- sourceColorRect
- {{5,7},{63,109}}
- sourceSize
- {85,121}
-
-
- metadata
-
- format
- 2
- realTextureFileName
- blocks9ss.png
- size
- {256,256}
- smartupdate
- $TexturePacker:SmartUpdate:d2e254c947e029d7d89809b3b6cdb952$
- textureFileName
- blocks9ss.png
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.xnb
deleted file mode 100644
index 8178ef33..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/blocks9ss.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-normal.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-normal.xnb
deleted file mode 100644
index 8186a5dc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-normal.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-selected.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-selected.xnb
deleted file mode 100644
index 6dfe29d6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-about-selected.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-normal.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-normal.xnb
deleted file mode 100644
index 0d204fa8..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-normal.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-selected.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-selected.xnb
deleted file mode 100644
index 640d5f32..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-highscores-selected.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-normal.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-normal.xnb
deleted file mode 100644
index b48826f5..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-normal.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-selected.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-selected.xnb
deleted file mode 100644
index 7ff1d5a9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/btn-play-selected.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/RetinaDisplay.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/RetinaDisplay.xnb
deleted file mode 100644
index 58ade805..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/RetinaDisplay.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886.xnb
deleted file mode 100644
index da1cdddc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886_.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886_.xnb
deleted file mode 100644
index de75ae32..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/bug886_.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.plist
deleted file mode 100644
index 3f3effaf..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.plist
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
- frames
-
- circle.png
-
- frame
- {{0,0},{64,64}}
- offset
- {0,0}
- rotated
-
- sourceColorRect
- {{0,0},{64,64}}
- sourceSize
- {64,64}
-
-
- metadata
-
- format
- 2
- size
- {64,64}
- textureFileName
- circle.png
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.xnb
deleted file mode 100644
index b2e3d7e4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/circle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/corner.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/corner.xnb
deleted file mode 100644
index adf46b03..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/corner.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/edge.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/edge.xnb
deleted file mode 100644
index 6dbc7055..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/edge.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/fill.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/fill.xnb
deleted file mode 100644
index a0c53a8f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/fill.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/picture.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/picture.xnb
deleted file mode 100644
index 05cb86e9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/bugs/picture.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close-hd.xnb
deleted file mode 100644
index 01ba5e60..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close.xnb
deleted file mode 100644
index 946383cb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/close.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/clouds.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/clouds.xnb
deleted file mode 100644
index d3429e04..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/clouds.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1-hd.xnb
deleted file mode 100644
index fe494ba2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1.xnb
deleted file mode 100644
index 96d69fa2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2-hd.xnb
deleted file mode 100644
index 4068e978..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2.xnb
deleted file mode 100644
index a6ee83c2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/f2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire-grayscale.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire-grayscale.xnb
deleted file mode 100644
index 514824fc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire-grayscale.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire.xnb
deleted file mode 100644
index 514824fc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fire.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fps_images.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fps_images.xnb
deleted file mode 100644
index 20e9b2fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/fps_images.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini-hd.xnb
deleted file mode 100644
index b795a80a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini.xnb
deleted file mode 100644
index 0b33ab95..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_01.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_01.xnb
deleted file mode 100644
index 8c7ae708..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_01.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_02.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_02.xnb
deleted file mode 100644
index 52c9cba5..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_02.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_03.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_03.xnb
deleted file mode 100644
index c4384074..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_03.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_04.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_04.xnb
deleted file mode 100644
index 56121e24..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_04.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_05.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_05.xnb
deleted file mode 100644
index 2013a14e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_05.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_06.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_06.xnb
deleted file mode 100644
index 684ea9f6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_06.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_07.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_07.xnb
deleted file mode 100644
index ec5f7ad9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_07.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_08.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_08.xnb
deleted file mode 100644
index 0b33ab95..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_08.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_09.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_09.xnb
deleted file mode 100644
index 746b27eb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_09.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_10.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_10.xnb
deleted file mode 100644
index 8691ab4e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_10.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_11.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_11.xnb
deleted file mode 100644
index 3f11fa76..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_11.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_12.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_12.xnb
deleted file mode 100644
index cd5a93b3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_12.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_13.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_13.xnb
deleted file mode 100644
index e52d83f2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_13.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_14.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_14.xnb
deleted file mode 100644
index b475fe4f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_14.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-hd.xnb
deleted file mode 100644
index eae8a400..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-mono.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-mono.xnb
deleted file mode 100644
index 61223e8e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas-mono.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas.xnb
deleted file mode 100644
index 0286b1be..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas_nomipmap.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas_nomipmap.xnb
deleted file mode 100644
index 0286b1be..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossini_dance_atlas_nomipmap.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-hd.xnb
deleted file mode 100644
index 918bd836..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-testalpha.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-testalpha.xnb
deleted file mode 100644
index e9dc2baa..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1-testalpha.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1.xnb
deleted file mode 100644
index f4e619c1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2-hd.xnb
deleted file mode 100644
index 2d90499a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2.xnb
deleted file mode 100644
index 5e4f82e1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/grossinis_sister2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_effect.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_effect.xnb
deleted file mode 100644
index ffe80764..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_effect.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_stencil.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_stencil.xnb
deleted file mode 100644
index 58eee260..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/hole_stencil.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/labelatlas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/labelatlas.xnb
deleted file mode 100644
index 20e9b2fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/labelatlas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_green.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_green.xnb
deleted file mode 100644
index c5456fa0..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_green.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_grey.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_grey.xnb
deleted file mode 100644
index 9bcd7dec..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/land_grey.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/landscape-1024x1024.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/landscape-1024x1024.xnb
deleted file mode 100644
index 5a920525..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/landscape-1024x1024.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/menuitemsprite.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/menuitemsprite.xnb
deleted file mode 100644
index 3bbe5cd3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/menuitemsprite.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/mountain_grey.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/mountain_grey.xnb
deleted file mode 100644
index 8d74ec06..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/mountain_grey.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle-hd.xnb
deleted file mode 100644
index b5e2ca3c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle.xnb
deleted file mode 100644
index 702f4760..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/paddle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles-hd.xnb
deleted file mode 100644
index 102743c3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles.xnb
deleted file mode 100644
index 9b1a8dbb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/particles.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/pattern1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/pattern1.xnb
deleted file mode 100644
index 06879c5d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/pattern1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/piece.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/piece.xnb
deleted file mode 100644
index d6bba616..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/piece.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/powered.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/powered.xnb
deleted file mode 100644
index d690f71f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/powered.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1-hd.xnb
deleted file mode 100644
index a1541cca..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1.xnb
deleted file mode 100644
index 98802516..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2-hd.xnb
deleted file mode 100644
index 8c6bf3c4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2.xnb
deleted file mode 100644
index d354a39a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/r2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sky_evening.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sky_evening.xnb
deleted file mode 100644
index 4b79e5d2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sky_evening.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/snow.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/snow.xnb
deleted file mode 100644
index 2755c9e6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/snow.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-0.xnb
deleted file mode 100644
index 69b486b9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-1.xnb
deleted file mode 100644
index 9f091b72..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-2.xnb
deleted file mode 100644
index 721ef633..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-3.xnb
deleted file mode 100644
index 08439165..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-4.xnb
deleted file mode 100644
index a68ef9b3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-5.xnb
deleted file mode 100644
index 847c6273..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-6.xnb
deleted file mode 100644
index f1a0e025..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-7.xnb
deleted file mode 100644
index ac062f77..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-0-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-0.xnb
deleted file mode 100644
index ff73a10e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-1.xnb
deleted file mode 100644
index 9862a67a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-2.xnb
deleted file mode 100644
index 0b7cb935..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-3.xnb
deleted file mode 100644
index 3d924a07..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-4.xnb
deleted file mode 100644
index 4d91b1b3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-5.xnb
deleted file mode 100644
index 48b4635e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-6.xnb
deleted file mode 100644
index 7b6b0f56..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-7.xnb
deleted file mode 100644
index b4c88d96..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-1-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-0.xnb
deleted file mode 100644
index 3a8979d7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-1.xnb
deleted file mode 100644
index 86770448..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-2.xnb
deleted file mode 100644
index c8b9eb2b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-3.xnb
deleted file mode 100644
index 486648bf..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-4.xnb
deleted file mode 100644
index a9940195..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-5.xnb
deleted file mode 100644
index cdd53427..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-6.xnb
deleted file mode 100644
index 068387fc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-7.xnb
deleted file mode 100644
index fc0e687b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-2-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-0.xnb
deleted file mode 100644
index f855ba03..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-1.xnb
deleted file mode 100644
index 5b17b994..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-2.xnb
deleted file mode 100644
index a01f93f0..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-3.xnb
deleted file mode 100644
index 7c4751f9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-4.xnb
deleted file mode 100644
index 6629d373..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-5.xnb
deleted file mode 100644
index c48adb84..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-6.xnb
deleted file mode 100644
index 213663d0..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-7.xnb
deleted file mode 100644
index 7c4efdf2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-3-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-0.xnb
deleted file mode 100644
index 54ffae74..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-1.xnb
deleted file mode 100644
index b3a9815d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-2.xnb
deleted file mode 100644
index 39462e63..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-3.xnb
deleted file mode 100644
index 800e2069..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-4.xnb
deleted file mode 100644
index 1c2df3a9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-5.xnb
deleted file mode 100644
index 5459f5f4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-6.xnb
deleted file mode 100644
index 9b248e70..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-7.xnb
deleted file mode 100644
index e66ea33b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-4-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-0.xnb
deleted file mode 100644
index 0b75840d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-1.xnb
deleted file mode 100644
index 942c3b74..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-2.xnb
deleted file mode 100644
index 00d0faa7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-3.xnb
deleted file mode 100644
index 365ebd2d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-4.xnb
deleted file mode 100644
index 0e41229e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-5.xnb
deleted file mode 100644
index c9c52736..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-6.xnb
deleted file mode 100644
index 6ff5fe3c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-7.xnb
deleted file mode 100644
index cf938e80..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-5-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-0.xnb
deleted file mode 100644
index 404ba4e4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-1.xnb
deleted file mode 100644
index 584ca2ae..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-2.xnb
deleted file mode 100644
index 0f7188cc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-3.xnb
deleted file mode 100644
index 5a9e3ab8..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-4.xnb
deleted file mode 100644
index f4a21e34..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-5.xnb
deleted file mode 100644
index 704da239..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-6.xnb
deleted file mode 100644
index 3ef49de4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-7.xnb
deleted file mode 100644
index 4ec33c61..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-6-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-0.xnb
deleted file mode 100644
index 4937090f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-1.xnb
deleted file mode 100644
index 58ae30d1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-2.xnb
deleted file mode 100644
index d036a968..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-3.xnb
deleted file mode 100644
index 0637e380..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-4.xnb
deleted file mode 100644
index ef8ec5f4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-5.xnb
deleted file mode 100644
index 5789df31..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-6.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-6.xnb
deleted file mode 100644
index c3970bd2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-6.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-7.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-7.xnb
deleted file mode 100644
index 580bb020..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/sprites_test/sprite-7-7.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/spritesheet1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/spritesheet1.xnb
deleted file mode 100644
index aaf23e4e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/spritesheet1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars-grayscale.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars-grayscale.xnb
deleted file mode 100644
index 01575048..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars-grayscale.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars.xnb
deleted file mode 100644
index 01575048..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2-grayscale.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2-grayscale.xnb
deleted file mode 100644
index 3cf517b5..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2-grayscale.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2.xnb
deleted file mode 100644
index 3cf517b5..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/stars2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/streak.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/streak.xnb
deleted file mode 100644
index 105b9ead..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/streak.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test-rgba1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test-rgba1.xnb
deleted file mode 100644
index 1035b91e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test-rgba1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_1021x1024.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_1021x1024.xnb
deleted file mode 100644
index e444655e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_1021x1024.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_blend.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_blend.xnb
deleted file mode 100644
index 0e9592da..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_blend.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_image.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_image.xnb
deleted file mode 100644
index 3306b210..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/test_image.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture1024x1024.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture1024x1024.xnb
deleted file mode 100644
index 4899c523..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture1024x1024.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture2048x2048.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture2048x2048.xnb
deleted file mode 100644
index 6a1767e6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture2048x2048.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture512x512.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture512x512.xnb
deleted file mode 100644
index dbe53903..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/texture512x512.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ui.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ui.xnb
deleted file mode 100644
index 8cfbdc77..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/ui.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/white-512x512.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/white-512x512.xnb
deleted file mode 100644
index 22816e49..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Images/white-512x512.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.plist
deleted file mode 100644
index 82e9ad17..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 90.099998474121094
- angleVariance
- 32.049999237060547
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 1
- finishColorGreen
- 0.70999997854232788
- finishColorRed
- 0.5899999737739563
- finishColorVarianceAlpha
- 1
- finishColorVarianceBlue
- 0.20999999344348907
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 40.770000457763672
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 269
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.99000000953674316
- particleLifespanVariance
- 0.12999999523162842
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 16.5
- sourcePositionVariancey
- 34.799999237060547
- sourcePositionx
- 162.83000183105469
- sourcePositiony
- 194.32000732421875
- speed
- 71
- speedVariance
- 30
- startColorAlpha
- 0.0
- startColorBlue
- 0.0
- startColorGreen
- 1
- startColorRed
- 1
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.34000000357627869
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.0
- startParticleSize
- 64
- startParticleSizeVariance
- 5
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- BoilingFoam.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.xnb
deleted file mode 100644
index 248d4a69..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BoilingFoam.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.plist
deleted file mode 100644
index 73e83aa4..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 0.0
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.38999998569488525
- finishColorGreen
- 0.25999999046325684
- finishColorRed
- 0.14000000059604645
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 28.489999771118164
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- -671.04998779296875
- maxParticles
- 1000
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.46050000190734863
- particleLifespanVariance
- 0.59210002422332764
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 4.4000000953674316
- sourcePositionx
- 160
- sourcePositiony
- 308.39999389648438
- speed
- 177.6300048828125
- speedVariance
- 0.0
- startColorAlpha
- 1
- startColorBlue
- 0.6600000262260437
- startColorGreen
- 0.49000000953674316
- startColorRed
- 0.0
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.5899999737739563
- startParticleSize
- 0.0
- startParticleSizeVariance
- 18.950000762939453
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- BurstPipe.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.xnb
deleted file mode 100644
index 8930a923..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/BurstPipe.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.plist
deleted file mode 100644
index a3824727..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 46.849998474121094
- angleVariance
- 0.0
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 0.15999999642372131
- finishColorVarianceAlpha
- 1
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 64
- finishParticleSizeVariance
- 0.0
- gravityx
- -276.32000732421875
- gravityy
- 355.260009765625
- maxParticles
- 1000
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.19740000367164612
- particleLifespanVariance
- 2.1710999011993408
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- -4.5
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 226.5
- sourcePositiony
- 156.39999389648438
- speed
- 0.0
- speedVariance
- 203.94999694824219
- startColorAlpha
- 1
- startColorBlue
- 0.14000000059604645
- startColorGreen
- 0.43999999761581421
- startColorRed
- 0.79000002145767212
- startColorVarianceAlpha
- 0.5
- startColorVarianceBlue
- 0.20000000298023224
- startColorVarianceGreen
- 0.20000000298023224
- startColorVarianceRed
- 0.0
- startParticleSize
- 41.680000305175781
- startParticleSizeVariance
- 0.0
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- Comet.png
- textureImageData
- H4sIAAAAAAAAA+1bB1RURxd+byu9g1RZpINUpVtoKoiKIqJYorisdESqLRINkihGjSHEFo0EC/ZoRCRWLMRoFHuPEIMlNizY4/5z3fvic7MrmJic84vr+Tjj7My997tt5i1L796UE0UFqlD/wUsqldJvgv/CJrTr35KrjBunGfyn/nib/FvIldsMmvXJWzOYejv8X8OZzYsnB74c5N9X5pO36od/wl8Jb3m+DD8BQtgMmHXyfpH3xVvxw9/h3wLe8nxVCFQRaiyoI9hzzDoVBf546354U/4t5M3mzPDUINAk0CLQVgItXKPB8ou8L17rh3+TvxLu8rwZzgxf4KVDoEugR6BPYEBgKAcDfE8P1+rgXsYfjC8U+eFv+6Al/BXkOzvminhrof16yMuIwJjAhMCUwIzAnMACYY5zprjGGPcYoAwdlKnID/K58Eb10Bz/FsRcRY63LsaR4WyGHC0JrAisCWwIbOVgg+9Z4VoL3Mv4Qh9ls/2g8k9zoYX8FXFnYq6OOarD4m2CMbVETsDPgcCJoD2BK4EbgTvCDefa4xoH3GONMsxRJuMHHdSpzsoFhT74J/ylf815ee4QB23MUUMWbxHG0wE5AT9PAi8CXwJ/ggA5+ON7XrjWDfc6oCwRyw+GqFMbbVDmg2ZzQBn/Zrgz+a7NirkZxgpsdSRwQR7eyK0LQRBBKEF3gjCCcEQYzoXimi64xxtluKBMG9RhxsoFxgdqf8cHivi3kDuT78YYF6hbe4wZ2OxD0JkgmKAHQQRBJEEUQTRBDMFARAzOReGaCNwTjDJ8UGZ71GGFOo2lL+vhb/ngNfzZNS+f82zu0KesMT5uGLNOBCEY20jkFkswjCCOQEwgIRiFkOBcHK6JxT2RKCMEZXqjDkfUaaHAB+xaaLYXyPNXEnuB9NV6Z7i3lcpyEnqWh1RWv4EYuz4EAwiGEowkSCBIJcggyCLIIchF5OBcBq5JwD1DUUYflBmIOjxQpw3awPiA3Q/YZ6PSHFDCX547nDPqctwtUL+zVJabUK+Qr5C7/QmGYEyTCcYgzwkE+QQfE0wlKERMxbl8XJOLe5JRxhCUGYE6/FGnM9rAzgNttJU5G1/xwev4K4g9u+bhvIGeC30Has8aYwB2QP+G3tVbKqvl4QSJGM+xyAs4FhHMIphDUExQgijGuVm4ZiruGYsyElFmDOoIRZ2eaIM12mSENmpKX+0FSnNAAX9leQ/1BecO9F7oP1CDHhgLsAdydJBUlrcpUllOT8L4zkSO8wkWEZQSlBEsRZTh3CJcU4x7ClFGDsociTr6oE5/tMERbTJDG9m94LU5wPBvJvZw54LcgrPXUirrwdCHoBaDMSZgF+RqOsZtCsYSuCxEfisIVhOsJ9hAsBGxAedW45pS3FOMMqagzHTUMQh1BqMNbmiTJdqojzY3mwNy/JXFHu6dTN5DvcE5BL0Y+hHUZAzGBuwbR1CA8ZtLsISgHPltIqgi2Eawg2AnYgfOVeGa9bhnCcqYiTLHoY6RqDMCbfBGm2ykL+tAtyU5oIS/stjDHQxyDeoOziPoydCXhktl+TkW7ZwtleUx5PUa5LSVYBfBPoL9BAcIDiIO4Nw+XLMV96xBGfNRZgHqSEGd/dGGTmiTI9rYbA6w+UtfzX12z2fqnh17uIvBfQTOZKhD6M3Qn6BGp2CswF6o63UElRjjGuRaS3CM4CTBKcRJnKvFNTW4pxJlLEWZM1FHDuocgjaEoE0ucjnA9AH2WfBKDbD4K8p9pufD2WIpld3Fwc9wJ4N7CZzNUI/Qo6FPQa3OxZiB3VsIqgl+Qm4nCM4QnCe4SFCHuIhzZ3BNLe6pRhnrUOZc1DEJdYrRhnC0yRNttESbmbNAaQ0o4M/OfThL4Rkc+iqcMUzdQ9+BuxncT+CMhpyEXg39Cmp2DcYO7IfcPkpwmuACQT3BbwSXCa4gLuNcPa45jXsOoIxKlLkEdRSizmS0IRJtYvqANdpsgByU1oAS/sx9h8l9uF/A8yj0WThzoObgfgp9CO4p+VJZbkLPhr4FtbsTYwg8zmKMgeNVgt8JbhDcRNzAuau45iLuOYoydqLMctQxE3WOQRui0SZ/tNEWbWZqgLkPNcdfUd+Xz314NoO+C3d0uKfCXW0qxgXOLejd0L+ghmsxlsCnATkC39sEdwjuIu7g3E1c04B7TqOMGpS5HnUUo85ctCEWbeoi/WsNKDoH2J8TKePP1D70UrhbwD0Lns3h+RTyDZ5T4K4O91WoSehPKzBO0MOhj0EtX8CYAq9byPUeQZMc7uF7t3Dtb7j3BMrahbJXoK4i1J2KtkSibV5oqxXarqgHyPNn9z75cw8+k2NqH+4acO+C51R4VoMelC+V3Vvh7gb3FzjD92HcoJ9BTV/F2AK/+wQPCB4SPEI8xLn7uOYm7qlHGbUoswp1LEKd+WhDHNoUijYyPcBU+tdzUP6ZSBl/du+DMwU+n4L6gs8poN6g98IzGzy3wN2dyX24x8BZDufZeenL2N/GGD9Azo8JniAe49wDXHNb+jIHzqOs/SibqYE5qDsLbYlG2/zRVhup4h74Ov7yvR/u0nCWMr0Pnjngsxq4e8EzO5zDTO3D+QT32B1SWd+GM/2iVNbbb2BcmzDWDPenCMYHD3HNHdxzGWWcRJk7UEeZ9GUPyEFbYtC2AOnLHmiOHJSeAUr4M8+6sJfp/e4oG85a+MwGPreA/gNnETzDwR0F7vLQq6Fe4V4DZzucb5DPd5HbIznubB88wjV3cc8VlHEKZe5EHUtRZyHaMAptCkcb3aUvzwCGv/p7/i3m31rzv7X3v9Z6/rX2+8/7++/755/3z7+t+/OPVvv5V2v//PP959/vf//R2n//9f73n6/NgVbx+28lOdCqvv8glwPydfDOf//lNTnQar7/9AY+eCe//9ZCH7zT33+U8wG7F8j74J39/quCHJD3wTv//Wc5H7BrgX02vrPff1fiB2W58E7+/UMLfKDID+/c378o8EFzfnjn/v7pDf3A+ELeH//Xf//WQj+wfcH2h7xf5HnK8+XKyXwrvFm2vw0xjCz6Nb5Q5BNFULSHftu8WTa/TXFsufK+eJ1PlHL9NzjL2flviZbXo8wf/ylfBXZRlBZRxyX/oalA8oNmjTkvxjyKCqyguThPFtMCHHPID114H2YpFVqPtcYQx+Rd2oglsw2zPpCizVnro1gy+/+pd/snWZSQojTCyHjfC5NV8B+N/8h7vZLSR3N0KCotPTszqkewaFDsYJHwEJGkSgkoD4qKE2dl9O7fPRq2h3cLEWWRRYwHZK5+cFI2OOYS1lckekMn6oozMrOJpL5k3CFekiUm4wIyTs3LzoD5RjI2GJkCYw5wN8gkBpKxMYwTZOP2L9bIxoEwjk9LjydjsDkjPi0exnvI+NPcHAkZc3uRcWFukiSPjI+TsU1qTloSGT+CvWmSuCziPg2Yz5aIE8nYnYw1MqOjQsi4E3GiRgJrPJI1zpaMzQZSIaMzxmUmJSRmixzEjiIPPz9fUZgkL1WSne3SN06cEpcZLwoZnZYRlz6OomScX7z0wLci4mRvDz9vbxdPVw+Wo177ZgtfEFvZ6F6/FzGjjQ6+nFO0bnQpRfk2Ed/Mfjk3ch5FbZ5KUcZnX87ZfENR2iRuFYdZfIwgXxKzszP83dzy8vJckyRiV3Don69mF7TgxdLnCuL+dI8oVDIqLic1WwR+E49OHZ2TKcrKiBNLRC6vJPE/2ajYjvZRklGSTEk62RFDsiwpPYGEOz0+KTtpdLooKV1ZEP/mNrmXLK/JS7/sOWUw3JXSOWxAcW8epHj66hR36CLyDv1n3HqpxlBQeQMtr8jy/sVLQQflzIIfWUkJL/aFREWLxDmZubL3oCwpPqVGaVMGlAnVlrKmHCgXypPyoQJIo+pG9aQiqWgqlvqAElOJVBqVSeVRE6nJVCFVRM2mvqTmU4upMqqcWkttoDZTW6ld1D7qAFVLnaDOUXVUA3WdaqQeUE9pmhbSmrQ+bUJb0ra0M+1J+9Jd6G50LzqKjqVH0Al0Op1DT6Q/povoOfR8egldTn9Hb6F30fvpI/QZup6+Rt+ln3C4HA2OAceCY8dx4/hygjgRnGjOME4CZwxnPKeAM5Mzl1PKWc2p4OziHOCc4NRxrnOaSANX5xpxrbguXF9uCDeSO5g7ipvJncSdzi3hlnLXcqu4Ndxj3DruDe5jnoCnzxPxXHgBvDDeAJ6YN4Y3iTeDN5+3glfB28M7xqvnNfKe8zX55nxnvj8/nD+In8DP4xfyS/jL+Jv4e/kn+A38BwKBwEhgL/ARhAliBcmCCYIZgq8F6wQ7BUcElwRNQqHQROgs7CyMFMYJs4WFwnnC1cIdwqPCBuEjFXUVSxVPle4qg1XSVaaolKisVNmuclTlispTVR1VW1V/1UjVeNVxqrNUy1SrVA+rNqg+VdNVs1frrBatlqw2WW2u2lq1vWrn1e6pq6u3U/dT76eepP6R+lz19eo/qterP9bQ03DSCNEYqpGjMVNjucZOjTMa9zQ1Ne00AzUHa2ZrztQs19yt+YvmIy19LVetcK14rXytBVoVWke1bmmrattqB2l/oD1eu0R7o/Zh7Rs6qjp2OiE6cTqTdBbobNE5pdOkq6/roRupm6Y7Q3el7n7dq3pCPTu9bnrxegV63+rt1rukz9W31g/RF+t/rF+mv1e/wUBgYG8QbpBsUGSwxuCQQaOhnmFHwxjDsYYLDLcZ1hlxjeyMwo1SjWYZbTA6afSkjUWboDaSNtParG1ztM1DYzPjQGOJ8XTjdcYnjJ+YiEy6maSYfG6y2eSCKc/UybSfaZ7pItO9pjfMDMwCzMRm0802mJ0155g7mUeZTzD/1vygeZNFW4seFhkW8yx2W9xoa9Q2sG1y2+K229tes9S37GKZZFlsucPyd5GhKEiUKpor2iNqtDK3CrPKsVpidcjqaTv7dgPaTWm3rt0FazVrX+tR1sXW1daNNpY2vW0m2qyyOWurautrm2j7lW2N7UM7e7uBdp/Ybba7am9sH24/3n6V/XkHTYeuDmMcSh2OOwocfR1THL92rHXiOHk5JTotcDrszHH2dk5y/tr5SHt+e7/26e1L259y0XAJcsl1WeVS72rk2st1iutm11tuNm6D3T53q3F77u7lnupe5n7OQ8+jp8cUjyqPu55OnmLPBZ7HO2h26N4hv0NlhzsdnTtKOi7qeNpL36u31yde1V5/ePt4Z3qv9b7mY+MzwmehzylfA9++vjN8f/Tj+wX75ftt9Xvs7+2f7b/B/3aAS0BKwMqAq53sO0k6lXW61Lld57jOSzrXdRF1GdHlmy51Xa26xnUt7fproHVgfOCywCtBjkHJQauDbgW7B2cGbwp+GOIf8mHIzlBuaI/Q6aGHuul1G9BtfrdfurfrntB9VffGHl49JvTYGcYPiwj7POxUuEW4OLw8vLGnT88Pe+6J0IjoHzE/4tdeTr0ye1X15vTu2fuL3uf72PZJ77M5kooMj/wi8kJf+75j+v7QT9Cvb78F/S5HeURNjKrpr99/eP+V/R9EB0fPij43wGFAzoDqGO2YoTHlMQ8Hhg6cM7BukNugDwcdiDWNTYqtHCwcHDN42eCmId2GfDmkYajX0MKhJ4fZDxs7bP8Hph+kfrBtuPbwuOEbR/BHDByxcsSzuMi40rimkeEjF45sFIeIvxJfjw+ML46/JuksmSO5MqrzqDmjriZ0Tvgi4Vpi18SSxBtJIUnzk+4khyUvTn6YEpmyPEWaOjB1XZpK2oi0Lel66Snpe0a3HT129JEM54zCjLox/mO+HNOYGZG5LIvOGpZVmW1ALlMHcxxypubU53bJXZD7KC8mb+NY3bHpYw+Ocxo3bdyV8d3HL53AmyCeUD3RauLkifUfBn24ZBI9aeSk6nzr/IL8ho96fLRistrklMk/T3GfMmfK/Y8HflxVYFHwUcGlqT2mrirUKswsPPVJwCeLP+V9mvTpoWkdps2b9nx6/PSfityLSoqezRDP+Okzj8/mfiadOWrmoVnesxbNFsxOn33y866fr5ijO2f8nEtf9P6iolhUPL34/pfDv9xf0rFk8VdqX+V8VTe319zKeTbzZs97Nj9x/okFwQvWLTRfOG3hw6/jvz66KHDR2sUWi4sWP/km6ZvTS3osqSi1Ky35VvBt7reXy2LKapb6Li1fZrqsaNkfy9OX162IWrGn3Ke8fKX5ylmrOKtyVl1bPXR17ZrQNZVrXdYuWWe0rmg9tT5n/e/fjfju5IaIDdUbfTeu/d72+4Wb9DdNr6ArxlU0bk7cXFcZW3lkS88t1VUBVZt+cP1h+VarrQu2GW6btV1te8F26Y7xO5p2Zuy8sSth16Xq4dXndg/afXxPvz2H9kbs/XFf9327a4JqdvzY+cet+/33b/nJ96fNB7wPVBz0OrjpZ6+fNx3yPlRx2OdwZa1fbdWRTke2H+16dNex0GP7jocfP3Ciz4kjJwecPH1q6Km60/Gnr55JPXPnbO7Zp+c+Os8/P/2CzoWSX8x/Kb3oeHFdnXfdtvrQ+oO/9v/13CXxpeu/Zf32rKHgsublkiuWV8qvel7deq37tdrfh/zecD3j+tMbhTd1by685XDr+9uBtw82DmpsuJN5R3p3xj2Te8vvd7xf3dS36ZcHaQ+ePpz+yOTRise+j2ueDHxy5WneM+GzuX84/lH1POL5eWmaVPo/LX7Mrg5NAAA=
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.xnb
deleted file mode 100644
index efd61181..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Comet.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.plist
deleted file mode 100644
index bfb446e9..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 360
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- 0.0099999997764825821
- emitterType
- 0.0
- finishColorAlpha
- 0.8399999737739563
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 0.0
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 13.590000152587891
- finishParticleSizeVariance
- 0.0
- gravityx
- 1.1499999761581421
- gravityy
- 1.5800000429153442
- maxParticles
- 809
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.0
- particleLifespanVariance
- 1.118399977684021
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 160
- sourcePositiony
- 262.79998779296875
- speed
- 243.41999816894531
- speedVariance
- 1
- startColorAlpha
- 1
- startColorBlue
- 0.36000001430511475
- startColorGreen
- 0.56000000238418579
- startColorRed
- 0.88999998569488525
- startColorVarianceAlpha
- 0.5
- startColorVarianceBlue
- 0.20000000298023224
- startColorVarianceGreen
- 0.20000000298023224
- startColorVarianceRed
- 0.20000000298023224
- startParticleSize
- 34.110000610351562
- startParticleSizeVariance
- 38.319999694824219
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- ExplodingRing.png
- textureImageData
- H4sIAAAAAAAAA+1bB1RURxd+byu9g1RZpINUpVtoKoiKIqJYorisdESqLRINkihGjSHEFo0EC/ZoRCRWLMRoFHuPEIMlNizY4/5z3fvic7MrmJic84vr+Tjj7My997tt5i1L796UE0UFqlD/wUsqldJvgv/CJrTr35KrjBunGfyn/nib/FvIldsMmvXJWzOYejv8X8OZzYsnB74c5N9X5pO36od/wl8Jb3m+DD8BQtgMmHXyfpH3xVvxw9/h3wLe8nxVCFQRaiyoI9hzzDoVBf546354U/4t5M3mzPDUINAk0CLQVgItXKPB8ou8L17rh3+TvxLu8rwZzgxf4KVDoEugR6BPYEBgKAcDfE8P1+rgXsYfjC8U+eFv+6Al/BXkOzvminhrof16yMuIwJjAhMCUwIzAnMACYY5zprjGGPcYoAwdlKnID/K58Eb10Bz/FsRcRY63LsaR4WyGHC0JrAisCWwIbOVgg+9Z4VoL3Mv4Qh9ls/2g8k9zoYX8FXFnYq6OOarD4m2CMbVETsDPgcCJoD2BK4EbgTvCDefa4xoH3GONMsxRJuMHHdSpzsoFhT74J/ylf815ee4QB23MUUMWbxHG0wE5AT9PAi8CXwJ/ggA5+ON7XrjWDfc6oCwRyw+GqFMbbVDmg2ZzQBn/Zrgz+a7NirkZxgpsdSRwQR7eyK0LQRBBKEF3gjCCcEQYzoXimi64xxtluKBMG9RhxsoFxgdqf8cHivi3kDuT78YYF6hbe4wZ2OxD0JkgmKAHQQRBJEEUQTRBDMFARAzOReGaCNwTjDJ8UGZ71GGFOo2lL+vhb/ngNfzZNS+f82zu0KesMT5uGLNOBCEY20jkFkswjCCOQEwgIRiFkOBcHK6JxT2RKCMEZXqjDkfUaaHAB+xaaLYXyPNXEnuB9NV6Z7i3lcpyEnqWh1RWv4EYuz4EAwiGEowkSCBIJcggyCLIIchF5OBcBq5JwD1DUUYflBmIOjxQpw3awPiA3Q/YZ6PSHFDCX547nDPqctwtUL+zVJabUK+Qr5C7/QmGYEyTCcYgzwkE+QQfE0wlKERMxbl8XJOLe5JRxhCUGYE6/FGnM9rAzgNttJU5G1/xwev4K4g9u+bhvIGeC30Has8aYwB2QP+G3tVbKqvl4QSJGM+xyAs4FhHMIphDUExQgijGuVm4ZiruGYsyElFmDOoIRZ2eaIM12mSENmpKX+0FSnNAAX9leQ/1BecO9F7oP1CDHhgLsAdydJBUlrcpUllOT8L4zkSO8wkWEZQSlBEsRZTh3CJcU4x7ClFGDsociTr6oE5/tMERbTJDG9m94LU5wPBvJvZw54LcgrPXUirrwdCHoBaDMSZgF+RqOsZtCsYSuCxEfisIVhOsJ9hAsBGxAedW45pS3FOMMqagzHTUMQh1BqMNbmiTJdqojzY3mwNy/JXFHu6dTN5DvcE5BL0Y+hHUZAzGBuwbR1CA8ZtLsISgHPltIqgi2Eawg2AnYgfOVeGa9bhnCcqYiTLHoY6RqDMCbfBGm2ykL+tAtyU5oIS/stjDHQxyDeoOziPoydCXhktl+TkW7ZwtleUx5PUa5LSVYBfBPoL9BAcIDiIO4Nw+XLMV96xBGfNRZgHqSEGd/dGGTmiTI9rYbA6w+UtfzX12z2fqnh17uIvBfQTOZKhD6M3Qn6BGp2CswF6o63UElRjjGuRaS3CM4CTBKcRJnKvFNTW4pxJlLEWZM1FHDuocgjaEoE0ucjnA9AH2WfBKDbD4K8p9pufD2WIpld3Fwc9wJ4N7CZzNUI/Qo6FPQa3OxZiB3VsIqgl+Qm4nCM4QnCe4SFCHuIhzZ3BNLe6pRhnrUOZc1DEJdYrRhnC0yRNttESbmbNAaQ0o4M/OfThL4Rkc+iqcMUzdQ9+BuxncT+CMhpyEXg39Cmp2DcYO7IfcPkpwmuACQT3BbwSXCa4gLuNcPa45jXsOoIxKlLkEdRSizmS0IRJtYvqANdpsgByU1oAS/sx9h8l9uF/A8yj0WThzoObgfgp9CO4p+VJZbkLPhr4FtbsTYwg8zmKMgeNVgt8JbhDcRNzAuau45iLuOYoydqLMctQxE3WOQRui0SZ/tNEWbWZqgLkPNcdfUd+Xz314NoO+C3d0uKfCXW0qxgXOLejd0L+ghmsxlsCnATkC39sEdwjuIu7g3E1c04B7TqOMGpS5HnUUo85ctCEWbeoi/WsNKDoH2J8TKePP1D70UrhbwD0Lns3h+RTyDZ5T4K4O91WoSehPKzBO0MOhj0EtX8CYAq9byPUeQZMc7uF7t3Dtb7j3BMrahbJXoK4i1J2KtkSibV5oqxXarqgHyPNn9z75cw8+k2NqH+4acO+C51R4VoMelC+V3Vvh7gb3FzjD92HcoJ9BTV/F2AK/+wQPCB4SPEI8xLn7uOYm7qlHGbUoswp1LEKd+WhDHNoUijYyPcBU+tdzUP6ZSBl/du+DMwU+n4L6gs8poN6g98IzGzy3wN2dyX24x8BZDufZeenL2N/GGD9Azo8JniAe49wDXHNb+jIHzqOs/SibqYE5qDsLbYlG2/zRVhup4h74Ov7yvR/u0nCWMr0Pnjngsxq4e8EzO5zDTO3D+QT32B1SWd+GM/2iVNbbb2BcmzDWDPenCMYHD3HNHdxzGWWcRJk7UEeZ9GUPyEFbYtC2AOnLHmiOHJSeAUr4M8+6sJfp/e4oG85a+MwGPreA/gNnETzDwR0F7vLQq6Fe4V4DZzucb5DPd5HbIznubB88wjV3cc8VlHEKZe5EHUtRZyHaMAptCkcb3aUvzwCGv/p7/i3m31rzv7X3v9Z6/rX2+8/7++/755/3z7+t+/OPVvv5V2v//PP959/vf//R2n//9f73n6/NgVbx+28lOdCqvv8glwPydfDOf//lNTnQar7/9AY+eCe//9ZCH7zT33+U8wG7F8j74J39/quCHJD3wTv//Wc5H7BrgX02vrPff1fiB2W58E7+/UMLfKDID+/c378o8EFzfnjn/v7pDf3A+ELeH//Xf//WQj+wfcH2h7xf5HnK8+XKyXwrvFm2vw0xjCz6Nb5Q5BNFULSHftu8WTa/TXFsufK+eJ1PlHL9NzjL2flviZbXo8wf/ylfBXZRlBZRxyX/oalA8oNmjTkvxjyKCqyguThPFtMCHHPID114H2YpFVqPtcYQx+Rd2oglsw2zPpCizVnro1gy+/+pd/snWZSQojTCyHjfC5NV8B+N/8h7vZLSR3N0KCotPTszqkewaFDsYJHwEJGkSgkoD4qKE2dl9O7fPRq2h3cLEWWRRYwHZK5+cFI2OOYS1lckekMn6oozMrOJpL5k3CFekiUm4wIyTs3LzoD5RjI2GJkCYw5wN8gkBpKxMYwTZOP2L9bIxoEwjk9LjydjsDkjPi0exnvI+NPcHAkZc3uRcWFukiSPjI+TsU1qTloSGT+CvWmSuCziPg2Yz5aIE8nYnYw1MqOjQsi4E3GiRgJrPJI1zpaMzQZSIaMzxmUmJSRmixzEjiIPPz9fUZgkL1WSne3SN06cEpcZLwoZnZYRlz6OomScX7z0wLci4mRvDz9vbxdPVw+Wo177ZgtfEFvZ6F6/FzGjjQ6+nFO0bnQpRfk2Ed/Mfjk3ch5FbZ5KUcZnX87ZfENR2iRuFYdZfIwgXxKzszP83dzy8vJckyRiV3Don69mF7TgxdLnCuL+dI8oVDIqLic1WwR+E49OHZ2TKcrKiBNLRC6vJPE/2ajYjvZRklGSTEk62RFDsiwpPYGEOz0+KTtpdLooKV1ZEP/mNrmXLK/JS7/sOWUw3JXSOWxAcW8epHj66hR36CLyDv1n3HqpxlBQeQMtr8jy/sVLQQflzIIfWUkJL/aFREWLxDmZubL3oCwpPqVGaVMGlAnVlrKmHCgXypPyoQJIo+pG9aQiqWgqlvqAElOJVBqVSeVRE6nJVCFVRM2mvqTmU4upMqqcWkttoDZTW6ld1D7qAFVLnaDOUXVUA3WdaqQeUE9pmhbSmrQ+bUJb0ra0M+1J+9Jd6G50LzqKjqVH0Al0Op1DT6Q/povoOfR8egldTn9Hb6F30fvpI/QZup6+Rt+ln3C4HA2OAceCY8dx4/hygjgRnGjOME4CZwxnPKeAM5Mzl1PKWc2p4OziHOCc4NRxrnOaSANX5xpxrbguXF9uCDeSO5g7ipvJncSdzi3hlnLXcqu4Ndxj3DruDe5jnoCnzxPxXHgBvDDeAJ6YN4Y3iTeDN5+3glfB28M7xqvnNfKe8zX55nxnvj8/nD+In8DP4xfyS/jL+Jv4e/kn+A38BwKBwEhgL/ARhAliBcmCCYIZgq8F6wQ7BUcElwRNQqHQROgs7CyMFMYJs4WFwnnC1cIdwqPCBuEjFXUVSxVPle4qg1XSVaaolKisVNmuclTlispTVR1VW1V/1UjVeNVxqrNUy1SrVA+rNqg+VdNVs1frrBatlqw2WW2u2lq1vWrn1e6pq6u3U/dT76eepP6R+lz19eo/qterP9bQ03DSCNEYqpGjMVNjucZOjTMa9zQ1Ne00AzUHa2ZrztQs19yt+YvmIy19LVetcK14rXytBVoVWke1bmmrattqB2l/oD1eu0R7o/Zh7Rs6qjp2OiE6cTqTdBbobNE5pdOkq6/roRupm6Y7Q3el7n7dq3pCPTu9bnrxegV63+rt1rukz9W31g/RF+t/rF+mv1e/wUBgYG8QbpBsUGSwxuCQQaOhnmFHwxjDsYYLDLcZ1hlxjeyMwo1SjWYZbTA6afSkjUWboDaSNtParG1ztM1DYzPjQGOJ8XTjdcYnjJ+YiEy6maSYfG6y2eSCKc/UybSfaZ7pItO9pjfMDMwCzMRm0802mJ0155g7mUeZTzD/1vygeZNFW4seFhkW8yx2W9xoa9Q2sG1y2+K229tes9S37GKZZFlsucPyd5GhKEiUKpor2iNqtDK3CrPKsVpidcjqaTv7dgPaTWm3rt0FazVrX+tR1sXW1daNNpY2vW0m2qyyOWurautrm2j7lW2N7UM7e7uBdp/Ybba7am9sH24/3n6V/XkHTYeuDmMcSh2OOwocfR1THL92rHXiOHk5JTotcDrszHH2dk5y/tr5SHt+e7/26e1L259y0XAJcsl1WeVS72rk2st1iutm11tuNm6D3T53q3F77u7lnupe5n7OQ8+jp8cUjyqPu55OnmLPBZ7HO2h26N4hv0NlhzsdnTtKOi7qeNpL36u31yde1V5/ePt4Z3qv9b7mY+MzwmehzylfA9++vjN8f/Tj+wX75ftt9Xvs7+2f7b/B/3aAS0BKwMqAq53sO0k6lXW61Lld57jOSzrXdRF1GdHlmy51Xa26xnUt7fproHVgfOCywCtBjkHJQauDbgW7B2cGbwp+GOIf8mHIzlBuaI/Q6aGHuul1G9BtfrdfurfrntB9VffGHl49JvTYGcYPiwj7POxUuEW4OLw8vLGnT88Pe+6J0IjoHzE/4tdeTr0ye1X15vTu2fuL3uf72PZJ77M5kooMj/wi8kJf+75j+v7QT9Cvb78F/S5HeURNjKrpr99/eP+V/R9EB0fPij43wGFAzoDqGO2YoTHlMQ8Hhg6cM7BukNugDwcdiDWNTYqtHCwcHDN42eCmId2GfDmkYajX0MKhJ4fZDxs7bP8Hph+kfrBtuPbwuOEbR/BHDByxcsSzuMi40rimkeEjF45sFIeIvxJfjw+ML46/JuksmSO5MqrzqDmjriZ0Tvgi4Vpi18SSxBtJIUnzk+4khyUvTn6YEpmyPEWaOjB1XZpK2oi0Lel66Snpe0a3HT129JEM54zCjLox/mO+HNOYGZG5LIvOGpZVmW1ALlMHcxxypubU53bJXZD7KC8mb+NY3bHpYw+Ocxo3bdyV8d3HL53AmyCeUD3RauLkifUfBn24ZBI9aeSk6nzr/IL8ho96fLRistrklMk/T3GfMmfK/Y8HflxVYFHwUcGlqT2mrirUKswsPPVJwCeLP+V9mvTpoWkdps2b9nx6/PSfityLSoqezRDP+Okzj8/mfiadOWrmoVnesxbNFsxOn33y866fr5ijO2f8nEtf9P6iolhUPL34/pfDv9xf0rFk8VdqX+V8VTe319zKeTbzZs97Nj9x/okFwQvWLTRfOG3hw6/jvz66KHDR2sUWi4sWP/km6ZvTS3osqSi1Ky35VvBt7reXy2LKapb6Li1fZrqsaNkfy9OX162IWrGn3Ke8fKX5ylmrOKtyVl1bPXR17ZrQNZVrXdYuWWe0rmg9tT5n/e/fjfju5IaIDdUbfTeu/d72+4Wb9DdNr6ArxlU0bk7cXFcZW3lkS88t1VUBVZt+cP1h+VarrQu2GW6btV1te8F26Y7xO5p2Zuy8sSth16Xq4dXndg/afXxPvz2H9kbs/XFf9327a4JqdvzY+cet+/33b/nJ96fNB7wPVBz0OrjpZ6+fNx3yPlRx2OdwZa1fbdWRTke2H+16dNex0GP7jocfP3Ciz4kjJwecPH1q6Km60/Gnr55JPXPnbO7Zp+c+Os8/P/2CzoWSX8x/Kb3oeHFdnXfdtvrQ+oO/9v/13CXxpeu/Zf32rKHgsublkiuWV8qvel7deq37tdrfh/zecD3j+tMbhTd1by685XDr+9uBtw82DmpsuJN5R3p3xj2Te8vvd7xf3dS36ZcHaQ+ePpz+yOTRise+j2ueDHxy5WneM+GzuX84/lH1POL5eWmaVPo/LX7Mrg5NAAA=
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.xnb
deleted file mode 100644
index 3695690b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/ExplodingRing.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Flower.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Flower.plist
deleted file mode 100644
index c059b966..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Flower.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 90
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 0.0
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 30
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 250
- maxRadius
- 276.20999145507812
- maxRadiusVariance
- 154.94999694824219
- minRadius
- 0.0
- particleLifespan
- 4
- particleLifespanVariance
- 1
- radialAccelVariance
- 0.0
- radialAcceleration
- -60
- rotatePerSecond
- 35.529998779296875
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 169.91000366210938
- sourcePositiony
- 228.71000671386719
- speed
- 80
- speedVariance
- 10
- startColorAlpha
- 1
- startColorBlue
- 0.5
- startColorGreen
- 0.5
- startColorRed
- 0.5
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.5
- startColorVarianceGreen
- 0.5
- startColorVarianceRed
- 0.5
- startParticleSize
- 30
- startParticleSizeVariance
- 10
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 15
- textureFileName
- Flower.png
- textureImageData
- H4sIAAAAAAAAAwGaBGX7iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAA5mlDQ1BJQ0MgUHJvZmlsZQAAeAFjYGCsSCwoyGESYGDIzSspcg9yjIyIjFJgv8rAzsDIAAaJycUFjgEBPhAeNvLbNYjay7ogs2ad1vz46kTgxG2Ka/z0r9ZuwKYDSYwlJbU4GcjfAsSlyQVFJQwMjDpAtnp2SJAzkB0CZPOVlxSAxFOAbBGoeiCTQdo5MSczqSixJDVFwb0osVLBOT8nv6i4IDE5FSRNXVCSWgF0AwODc35BZVFmekaJgiPQt6lAO3MLSktSi3QUPPOS9RgYkkuLyqA2MzIZMzCAwhPC/xwIDidGsTMAFkw91gWJ+yQAAANvSURBVEgNxZU7aFRREIb/uXnsZpPoxoAYxBSBKKaIKBYiqF0awTQ2iqiNoqCFnWJpkSiCFoIgIgqWKoqCxEJQQSIWBgmI+GgsBDVmNZvdTTbZ8Z85d+/mCYKFZ2DZe8/MN3PmzMwF/nHJcvaaQgShKKUiU8vpLQGgaQPqKXUJYBYzlPJSmKhK1pP2Txu1BS1oxUpKFm0uWX9qRYu2aON8fdBPvPRF5Zt0Ik1pQorSGMegMP/TmKIUUdJISnT0DX3BMAFEI3oW37EDBWSISBMRDhEAUyjR3I4W6Wod1ZPRyAKApnEX2/EGu2OExWBZMID5LxLZwDdr8Fquyq1q5HESebaMn/0y+vSY5PmUdn8GYProv4BJ5NGq9+QBDqMg0wFRBVjqVniyzuk2uYl3SwDy6NVTeCrH8Rt5OvHlAF5cMM8y81m9hCy9fPaQLYKyH2ASG/QgxmQvcvjlCK+NAAgXFy6tDSv0NFrlGb4yCxEqzECR4XfqHuTkBMZdfmEixBDqoJ6qKb/ADE/fzBQVdBd60O6yitWwieYTMpDckF2yLwJ4AKs7QxjE6qBZnmBKe9FFgJmv1x2YlOu+W62RetpxGSfi5RjCIA2UFBEZeaubdR2DnkC9dqAkD/neds23SR3tYoC1jEFMbMuUGIt81bWS1SZJsQteOTwYml5oNPcObxmD1CQKUUmRmymdlQ98DiY1HfsXA6xh50uFubcOoIpC6thc9ma+jj3NAZiBibetl26JZ8/Q+xedYS7a+K7su0Ev4GJA8GamphTKpoBmpq4s75nGN34jHSwn2512zAydVeIIOCaCsTVsybtuEu3aw8y/xBh+Ylwee110+a5pOSSMl1BIod+tYQveNJ1+7/dpbmKIG5jQfmzkLmdCjLAAmFtbFpg1bOi4DV5112g4hh8OyOG3DCKnh7HFERZD2S3DVTDXtW7crBd47gFWnY2Pue2c14vSjkMYXtSNBFTnQRceYRSDy86D87pFtuLTonlARJpG3TosQ25uc3HhRAoHHNB+6ZaP4QBWhcnSJi3IPZxJOm7xTLQUF3BF90WJXTJUyfkpR3CHZ7cBtuxU5uXu1yEtSlPwnJD0Gm7Lc+bCGsl+rXGs/vldiuvEbmo6zELdiQNy1BAJoFIXzQbm332ZqvoJIBjXfon5q29jzeJ//fsDttmrmko6AygAAAAASUVORK5CYIJuAiUFmgQAAA==
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Galaxy.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Galaxy.plist
deleted file mode 100644
index 11f69387..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Galaxy.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 90
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 0.0
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 37
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 934
- maxRadius
- 276.20999145507812
- maxRadiusVariance
- 154.94999694824219
- minRadius
- 0.0
- particleLifespan
- 4
- particleLifespanVariance
- 1
- radialAccelVariance
- 0.0
- radialAcceleration
- -20
- rotatePerSecond
- 35.529998779296875
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 169.91000366210938
- sourcePositiony
- 228.71000671386719
- speed
- 59.209999084472656
- speedVariance
- 10
- startColorAlpha
- 1
- startColorBlue
- 0.75999999046325684
- startColorGreen
- 0.25
- startColorRed
- 0.11999999731779099
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.0
- startParticleSize
- 37
- startParticleSizeVariance
- 10
- tangentialAccelVariance
- 50
- tangentialAcceleration
- 50
- textureFileName
- Galaxy.png
- textureImageData
- H4sIAAAAAAAAAwFmA5n8iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADLUlEQVRYCcXX51JbQRCEUeOc/f6v6ZzxHKFPLAoI84epmrp7985294QVxcXl5eWjh7Sn9yB/MWcej19sXQb87/iP8f+yiztWAOmzcYL5k/F9AX9m7/fWf83zTmLOVeD5AHECWieiKpR95D8nlhPcepbH7TYBL+dI/mrWRCRkrQIBZY9Q5vzb+PdxQj2P2ikBCPnrxb0TRMQpAYiRIa9lVcregR0TgATZm/G3W7cmxn5VaA6qQNkjEkNAMbPcDOpBJfYF6DMByJC/H3+3XSfC97IziATov8FD8HUcDmzZs+bETSF0Z+cEICeCE0TYOQFlHznSZoTQkwIc5PW+FqwC7NUGVagCXTvlXzNHXnXE5LsrulYAYFduX4Ts11b4LlaWlbXBWzNH2GxojzN4jgogJgENYreganyYGELsq1YCAOp9CZX5eivEwy9mltcvPvqwirBHSGKIQE6Eitg35forO5mxSo5cDJyVHIf3TRVSIxNgiUgIUO5Abel2qII4hLJnSk5M7XC2rMPGU5s2APO++11PiKBVUECEyAq5athHyvS6TO2vhOHB72/ILK+VtHnb0+EEAkeiLZGV2UpyG94cvRbgh+KcGyzenZb5l3FPbbBfzDks3zcmE9aBCIBF1FCt16meO98M6L3BEpeohIUHP65ZXvXJM2IH8oCAATZYiJWc+a7swJF/HvddnHjnuLgwE4RvY1XAAVMuwAHvHPA61cUDNnD6DUws8k/j2kJEZ8NahdjbWIBeVvJIgSISh4yJ8931SgBwpMhVwtPZKiIeaSJmeWWrgMolENh6pSKXrTjftcKU66m9ziViFSI+AWJ3tgoQADTwrtdKLvvinE2AfcAylTXyj9tn1UiE8ztbBdhUIiD2u9ez3PS5LP0QJe6UgKpgJhpOuPBv2DEBMubAmbI3H0BqDYEJcBOAy06mqpCI/xIw5zYViFx/gZc98IZyX0DtITIR+4M4n27afgX6CgB52dffsq9FawWqkipUCWLyWR7aKQEiHVwFuHbrX7batApNRO3wPOj77O3swf8zuquAneJZaEPZ14KqcOOKrYdOre8j4BTWvfZl8qD2D7ghcomuE8XXAAAAAElFTkSuQmCCksg8PmYDAAA=
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.plist
deleted file mode 100644
index c24278f6..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 0.0
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 1
- finishColorRed
- 1
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 0.0
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- -197.3699951171875
- maxParticles
- 861
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.46050000190734863
- particleLifespanVariance
- 0.85530000925064087
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 7
- sourcePositionVariancey
- 7
- sourcePositionx
- 160
- sourcePositiony
- 210
- speed
- 225
- speedVariance
- 6.5799999237060547
- startColorAlpha
- 0.090000003576278687
- startColorBlue
- 0.0
- startColorGreen
- 0.0
- startColorRed
- 1
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.0
- startParticleSize
- 45.049999237060547
- startParticleSizeVariance
- 29.049999237060547
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- LavaFlow.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.xnb
deleted file mode 100644
index 53c3d0bc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/LavaFlow.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/PeasTexture.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/PeasTexture.xnb
deleted file mode 100644
index e2722904..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/PeasTexture.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Phoenix.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Phoenix.plist
deleted file mode 100644
index 317870f7..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Phoenix.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 349
- angleVariance
- 93
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 1
- finishColorAlpha
- 0.32887318730354309
- finishColorBlue
- 0.93377602100372314
- finishColorGreen
- 0.95858514308929443
- finishColorRed
- 0.19334913790225983
- finishColorVarianceAlpha
- 0.38997083902359009
- finishColorVarianceBlue
- 0.37059104442596436
- finishColorVarianceGreen
- 0.81526708602905273
- finishColorVarianceRed
- 0.83449059724807739
- finishParticleSize
- 43
- finishParticleSizeVariance
- 18
- gravityx
- 1.4500000476837158
- gravityy
- 1.1499999761581421
- maxParticles
- 285
- maxRadius
- 60
- maxRadiusVariance
- 85.263160705566406
- minRadius
- 0.0
- particleLifespan
- 0.0
- particleLifespanVariance
- 2
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 360
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- -4.5
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 191.15043640136719
- sourcePositiony
- 217.41175842285156
- speed
- 390
- speedVariance
- 179
- startColorAlpha
- 0.27146226167678833
- startColorBlue
- 0.91891378164291382
- startColorGreen
- 0.10308317095041275
- startColorRed
- 0.7686341404914856
- startColorVarianceAlpha
- 0.0067866151221096516
- startColorVarianceBlue
- 0.32555040717124939
- startColorVarianceGreen
- 0.41684192419052124
- startColorVarianceRed
- 0.79420870542526245
- startParticleSize
- 3
- startParticleSizeVariance
- 24
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- phoenixLeftWing.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SmallSun.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SmallSun.plist
deleted file mode 100644
index 54be523a..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SmallSun.plist
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
- angle
- 0.0
- angleVariance
- 360
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 1
- finishColorRed
- 1
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 0.0
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 500
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 0.20000000298023224
- particleLifespanVariance
- 0.85530000925064087
- radialAccelVariance
- 0.0
- radialAcceleration
- -380
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- rotationEnd
- 0.0
- rotationEndVariance
- 0.0
- rotationStart
- 0.0
- rotationStartVariance
- 0.0
- sourcePositionVariancex
- 7
- sourcePositionVariancey
- 7
- sourcePositionx
- 161.41999816894531
- sourcePositiony
- 232.94000244140625
- speed
- 128
- speedVariance
- 6.5799999237060547
- startColorAlpha
- 1
- startColorBlue
- 0.0
- startColorGreen
- 0.0
- startColorRed
- 1
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.0
- startParticleSize
- 22
- startParticleSizeVariance
- 14
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- -144.74000549316406
- textureFileName
- particleTexture.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpinningPeas.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpinningPeas.plist
deleted file mode 100644
index 724564dc..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpinningPeas.plist
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
- angle
- 90
- angleVariance
- 360
- blendFuncDestination
- 771
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0
- finishColorAlpha
- 0
- finishColorBlue
- 1
- finishColorGreen
- 1
- finishColorRed
- 1
- finishColorVarianceAlpha
- 0
- finishColorVarianceBlue
- 0
- finishColorVarianceGreen
- 0
- finishColorVarianceRed
- 0
- finishParticleSize
- 64
- finishParticleSizeVariance
- 0
- gravityx
- 0
- gravityy
- 0
- maxParticles
- 15
- maxRadius
- 331.5799865722656
- maxRadiusVariance
- 0
- minRadius
- 0
- particleLifespan
- 10
- particleLifespanVariance
- 0
- radialAcceleration
- 0
- radialAccelVariance
- 0
- rotatePerSecond
- 0
- rotatePerSecondVariance
- 68.68000030517578
- rotationEnd
- 0
- rotationEndVariance
- 3600
- rotationStart
- 0
- rotationStartVariance
- 0
- sourcePositionVariancex
- 7
- sourcePositionVariancey
- 7
- sourcePositionx
- 160
- sourcePositiony
- 222
- speed
- 20
- speedVariance
- 0
- startColorAlpha
- 1
- startColorBlue
- 1
- startColorGreen
- 1
- startColorRed
- 1
- startColorVarianceAlpha
- 0
- startColorVarianceBlue
- 0
- startColorVarianceGreen
- 0
- startColorVarianceRed
- 0
- startParticleSize
- 64
- startParticleSizeVariance
- 0
- tangentialAcceleration
- 0
- tangentialAccelVariance
- 0
- textureFileName
- PeasTexture.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Spiral.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Spiral.plist
deleted file mode 100644
index 8096ac24..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Spiral.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 270
- angleVariance
- 0.0
- blendFuncDestination
- 771
- blendFuncSource
- 1
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 0.0
- finishColorBlue
- 0.5
- finishColorGreen
- 0.5
- finishColorRed
- 0.5
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.5
- finishColorVarianceGreen
- 0.5
- finishColorVarianceRed
- 0.5
- finishParticleSize
- 20
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 500
- maxRadius
- 276.20999145507812
- maxRadiusVariance
- 154.94999694824219
- minRadius
- 0.0
- particleLifespan
- 10
- particleLifespanVariance
- 0.0
- radialAccelVariance
- 10
- radialAcceleration
- -380
- rotatePerSecond
- 35.529998779296875
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 158.58407592773438
- sourcePositiony
- 252.70588684082031
- speed
- 150
- speedVariance
- 0.0
- startColorAlpha
- 1
- startColorBlue
- 0.5
- startColorGreen
- 0.5
- startColorRed
- 0.5
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.5
- startColorVarianceGreen
- 0.5
- startColorVarianceRed
- 0.5
- startParticleSize
- 20
- startParticleSizeVariance
- 0.0
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 45
- textureFileName
- Spiral.png
- textureImageData
- H4sIAAAAAAAAAwFmA5n8iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADLUlEQVRYCcXX51JbQRCEUeOc/f6v6ZzxHKFPLAoI84epmrp7985294QVxcXl5eWjh7Sn9yB/MWcej19sXQb87/iP8f+yiztWAOmzcYL5k/F9AX9m7/fWf83zTmLOVeD5AHECWieiKpR95D8nlhPcepbH7TYBL+dI/mrWRCRkrQIBZY9Q5vzb+PdxQj2P2ikBCPnrxb0TRMQpAYiRIa9lVcregR0TgATZm/G3W7cmxn5VaA6qQNkjEkNAMbPcDOpBJfYF6DMByJC/H3+3XSfC97IziATov8FD8HUcDmzZs+bETSF0Z+cEICeCE0TYOQFlHznSZoTQkwIc5PW+FqwC7NUGVagCXTvlXzNHXnXE5LsrulYAYFduX4Ts11b4LlaWlbXBWzNH2GxojzN4jgogJgENYreganyYGELsq1YCAOp9CZX5eivEwy9mltcvPvqwirBHSGKIQE6Eitg35forO5mxSo5cDJyVHIf3TRVSIxNgiUgIUO5Abel2qII4hLJnSk5M7XC2rMPGU5s2APO++11PiKBVUECEyAq5athHyvS6TO2vhOHB72/ILK+VtHnb0+EEAkeiLZGV2UpyG94cvRbgh+KcGyzenZb5l3FPbbBfzDks3zcmE9aBCIBF1FCt16meO98M6L3BEpeohIUHP65ZXvXJM2IH8oCAATZYiJWc+a7swJF/HvddnHjnuLgwE4RvY1XAAVMuwAHvHPA61cUDNnD6DUws8k/j2kJEZ8NahdjbWIBeVvJIgSISh4yJ8931SgBwpMhVwtPZKiIeaSJmeWWrgMolENh6pSKXrTjftcKU66m9ziViFSI+AWJ3tgoQADTwrtdKLvvinE2AfcAylTXyj9tn1UiE8ztbBdhUIiD2u9ez3PS5LP0QJe6UgKpgJhpOuPBv2DEBMubAmbI3H0BqDYEJcBOAy06mqpCI/xIw5zYViFx/gZc98IZyX0DtITIR+4M4n27afgX6CgB52dffsq9FawWqkipUCWLyWR7aKQEiHVwFuHbrX7batApNRO3wPOj77O3swf8zuquAneJZaEPZ14KqcOOKrYdOre8j4BTWvfZl8qD2D7ghcomuE8XXAAAAAElFTkSuQmCCksg8PmYDAAA=
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpookyPeas.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpookyPeas.plist
deleted file mode 100644
index 8abb1d41..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/SpookyPeas.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 90
- angleVariance
- 360
- blendFuncDestination
- 771
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 1
- finishColorAlpha
- 1
- finishColorBlue
- 1
- finishColorGreen
- 1
- finishColorRed
- 1
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 1
- finishColorVarianceGreen
- 1
- finishColorVarianceRed
- 1
- finishParticleSize
- 0.0
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 1000
- maxRadius
- 192.6300048828125
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 2
- particleLifespanVariance
- 0.0
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 73.419998168945312
- rotatePerSecondVariance
- 73.419998168945312
- sourcePositionVariancex
- 7
- sourcePositionVariancey
- 7
- sourcePositionx
- 160
- sourcePositiony
- 222
- speed
- 225
- speedVariance
- 30
- startColorAlpha
- 0.0
- startColorBlue
- 1
- startColorGreen
- 0.0
- startColorRed
- 0.0
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 1
- startColorVarianceGreen
- 1
- startColorVarianceRed
- 1
- startParticleSize
- 64
- startParticleSizeVariance
- 5
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- PeasTexture.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/TestPremultipliedAlpha.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/TestPremultipliedAlpha.plist
deleted file mode 100644
index 1f9c2e6a..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/TestPremultipliedAlpha.plist
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
- angle
- 0.0
- angleVariance
- 360
- blendFuncDestination
- 771
- blendFuncSource
- 1
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 0.0
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 0.0
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 1
- finishColorVarianceGreen
- 1
- finishColorVarianceRed
- 1
- finishParticleSize
- 0.0
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 90
- maxRadius
- 100
- maxRadiusVariance
- 178.05097961425781
- minRadius
- 0.0
- particleLifespan
- 1.513200044631958
- particleLifespanVariance
- 0.0
- radialAccelVariance
- 0.0
- radialAcceleration
- -14.391447067260742
- rotatePerSecond
- 360
- rotatePerSecondVariance
- 0.0
- rotationEnd
- 0.0
- rotationEndVariance
- 367.84539794921875
- rotationStart
- 0.0
- rotationStartVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 16
- sourcePositionx
- 160
- sourcePositiony
- 240
- speed
- 183.07977294921875
- speedVariance
- 29.759456634521484
- startColorAlpha
- 0.2199999988079071
- startColorBlue
- 1
- startColorGreen
- 1
- startColorRed
- 1
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.57999998331069946
- startColorVarianceRed
- 0.34000000357627869
- startParticleSize
- 24.026315689086914
- startParticleSizeVariance
- 22.319999694824219
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 44.921875
- textureFileName
- arrows.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Upsidedown.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Upsidedown.plist
deleted file mode 100644
index 51d58af8..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/Upsidedown.plist
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
- angle
- 153
- angleVariance
- 163
- blendFuncDestination
- 771
- blendFuncSource
- 1
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 0.17519465088844299
- finishColorBlue
- 0.11082467436790466
- finishColorGreen
- 0.28954619169235229
- finishColorRed
- 0.0099386833608150482
- finishColorVarianceAlpha
- 0.25987446308135986
- finishColorVarianceBlue
- 0.73861962556838989
- finishColorVarianceGreen
- 0.16484105587005615
- finishColorVarianceRed
- 0.28705751895904541
- finishParticleSize
- 18
- finishParticleSizeVariance
- 31
- gravityx
- 0.64999997615814209
- gravityy
- 1.6000000238418579
- maxParticles
- 206
- maxRadius
- 100
- maxRadiusVariance
- 0.0
- minRadius
- 0.0
- particleLifespan
- 3
- particleLifespanVariance
- 9
- radialAccelVariance
- 0.0
- radialAcceleration
- 0.0
- rotatePerSecond
- 0.0
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 7
- sourcePositionVariancey
- 7
- sourcePositionx
- 164.24778747558594
- sourcePositiony
- 194.82353210449219
- speed
- 77
- speedVariance
- 69
- startColorAlpha
- 0.76000493764877319
- startColorBlue
- 0.21461969614028931
- startColorGreen
- 0.55250370502471924
- startColorRed
- 0.79755288362503052
- startColorVarianceAlpha
- 0.26676812767982483
- startColorVarianceBlue
- 0.93595731258392334
- startColorVarianceGreen
- 0.98810279369354248
- startColorVarianceRed
- 0.55410420894622803
- startParticleSize
- 12
- startParticleSizeVariance
- 62
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 0.0
- textureFileName
- Upsidedown.png
- textureImageData
- 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
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/debian.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/debian.plist
deleted file mode 100644
index 1caf17cd..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/debian.plist
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
- angle
- 270
- angleVariance
- 0.0
- blendAdditive
- 0.0
- blendFuncDestination
- 1
- blendFuncSource
- 770
- duration
- -1
- emitterType
- 0.0
- finishColorAlpha
- 1
- finishColorBlue
- 0.0
- finishColorGreen
- 0.0
- finishColorRed
- 1
- finishColorVarianceAlpha
- 0.0
- finishColorVarianceBlue
- 0.0
- finishColorVarianceGreen
- 0.0
- finishColorVarianceRed
- 0.0
- finishParticleSize
- 20
- finishParticleSizeVariance
- 0.0
- gravityx
- 0.0
- gravityy
- 0.0
- maxParticles
- 500
- maxRadius
- 276.20999145507812
- maxRadiusVariance
- 154.94999694824219
- minRadius
- 0.0
- particleLifespan
- 10
- particleLifespanVariance
- 0.0
- radialAccelVariance
- 0.0
- radialAcceleration
- -200
- rotatePerSecond
- 35.529998779296875
- rotatePerSecondVariance
- 0.0
- sourcePositionVariancex
- 0.0
- sourcePositionVariancey
- 0.0
- sourcePositionx
- 175.58000183105469
- sourcePositiony
- 247.05999755859375
- speed
- 50
- speedVariance
- 0.0
- startColorAlpha
- 1
- startColorBlue
- 0.0
- startColorGreen
- 0.0
- startColorRed
- 1
- startColorVarianceAlpha
- 0.0
- startColorVarianceBlue
- 0.0
- startColorVarianceGreen
- 0.0
- startColorVarianceRed
- 0.0
- startParticleSize
- 20
- startParticleSizeVariance
- 0.0
- tangentialAccelVariance
- 0.0
- tangentialAcceleration
- 45
- textureFileName
- debian.png
- textureImageData
- H4sIAAAAAAAAAwFmA5n8iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADLUlEQVRYCcXX51JbQRCEUeOc/f6v6ZzxHKFPLAoI84epmrp7985294QVxcXl5eWjh7Sn9yB/MWcej19sXQb87/iP8f+yiztWAOmzcYL5k/F9AX9m7/fWf83zTmLOVeD5AHECWieiKpR95D8nlhPcepbH7TYBL+dI/mrWRCRkrQIBZY9Q5vzb+PdxQj2P2ikBCPnrxb0TRMQpAYiRIa9lVcregR0TgATZm/G3W7cmxn5VaA6qQNkjEkNAMbPcDOpBJfYF6DMByJC/H3+3XSfC97IziATov8FD8HUcDmzZs+bETSF0Z+cEICeCE0TYOQFlHznSZoTQkwIc5PW+FqwC7NUGVagCXTvlXzNHXnXE5LsrulYAYFduX4Ts11b4LlaWlbXBWzNH2GxojzN4jgogJgENYreganyYGELsq1YCAOp9CZX5eivEwy9mltcvPvqwirBHSGKIQE6Eitg35forO5mxSo5cDJyVHIf3TRVSIxNgiUgIUO5Abel2qII4hLJnSk5M7XC2rMPGU5s2APO++11PiKBVUECEyAq5athHyvS6TO2vhOHB72/ILK+VtHnb0+EEAkeiLZGV2UpyG94cvRbgh+KcGyzenZb5l3FPbbBfzDks3zcmE9aBCIBF1FCt16meO98M6L3BEpeohIUHP65ZXvXJM2IH8oCAATZYiJWc+a7swJF/HvddnHjnuLgwE4RvY1XAAVMuwAHvHPA61cUDNnD6DUws8k/j2kJEZ8NahdjbWIBeVvJIgSISh4yJ8931SgBwpMhVwtPZKiIeaSJmeWWrgMolENh6pSKXrTjftcKU66m9ziViFSI+AWJ3tgoQADTwrtdKLvvinE2AfcAylTXyj9tn1UiE8ztbBdhUIiD2u9ez3PS5LP0QJe6UgKpgJhpOuPBv2DEBMubAmbI3H0BqDYEJcBOAy06mqpCI/xIw5zYViFx/gZc98IZyX0DtITIR+4M4n27afgX6CgB52dffsq9FawWqkipUCWLyWR7aKQEiHVwFuHbrX7batApNRO3wPOj77O3swf8zuquAneJZaEPZ14KqcOOKrYdOre8j4BTWvfZl8qD2D7ghcomuE8XXAAAAAElFTkSuQmCCksg8PmYDAAA=
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/particleTexture.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/particleTexture.xnb
deleted file mode 100644
index 10f86a99..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/particleTexture.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/phoenixLeftWing.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/phoenixLeftWing.xnb
deleted file mode 100644
index 0b24f943..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Particles/phoenixLeftWing.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.wma b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.wma
deleted file mode 100644
index d1fa65bf..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.wma and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.xnb
deleted file mode 100644
index 853c2287..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/background.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/effect1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/effect1.xnb
deleted file mode 100644
index c5497461..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/Sounds/effect1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/arial16.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/arial16.fnt
deleted file mode 100644
index 1d1e3ad7..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/arial16.fnt
+++ /dev/null
@@ -1,192 +0,0 @@
-info face="ArialMT" size=16 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=19 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="arial16.png"
-chars count=187
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=4 page=0 chnl=0
-char id=64 x=0 y=0 width=18 height=17 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0
-char id=124 x=18 y=0 width=4 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=125 x=22 y=0 width=7 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=123 x=29 y=0 width=7 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=93 x=36 y=0 width=6 height=17 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=91 x=42 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=41 x=48 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=40 x=54 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=106 x=60 y=0 width=7 height=17 xoffset=-1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=36 x=67 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=38 x=78 y=0 width=13 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=35 x=91 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=37 x=102 y=0 width=15 height=14 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0
-char id=92 x=117 y=0 width=7 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=47 x=124 y=0 width=7 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=48 x=131 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=57 x=142 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=56 x=153 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=54 x=164 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=53 x=175 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=51 x=186 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=121 x=197 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=113 x=207 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=112 x=217 y=0 width=10 height=14 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=103 x=227 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=100 x=237 y=0 width=10 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=98 x=247 y=0 width=10 height=14 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=85 x=257 y=0 width=12 height=14 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=83 x=269 y=0 width=12 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=81 x=281 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=79 x=295 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=74 x=309 y=0 width=9 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=71 x=318 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=67 x=332 y=0 width=13 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=59 x=345 y=0 width=4 height=13 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0
-char id=63 x=349 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=33 x=359 y=0 width=5 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=55 x=364 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=52 x=375 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=50 x=386 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=49 x=396 y=0 width=7 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=116 x=403 y=0 width=7 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=108 x=410 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=107 x=414 y=0 width=9 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=105 x=423 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=104 x=427 y=0 width=9 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=102 x=436 y=0 width=7 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=90 x=443 y=0 width=12 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
-char id=89 x=455 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=88 x=468 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=87 x=481 y=0 width=17 height=13 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0
-char id=86 x=498 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=84 x=0 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
-char id=82 x=12 y=17 width=13 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=80 x=25 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=78 x=36 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=77 x=48 y=17 width=14 height=13 xoffset=1 yoffset=3 xadvance=13 page=0 chnl=0
-char id=76 x=62 y=17 width=10 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=75 x=72 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=73 x=84 y=17 width=4 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=72 x=88 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=70 x=100 y=17 width=10 height=13 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0
-char id=69 x=110 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=68 x=121 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=66 x=133 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=65 x=144 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=117 x=156 y=17 width=8 height=11 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=115 x=164 y=17 width=10 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=111 x=174 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=101 x=185 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=99 x=196 y=17 width=10 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=97 x=206 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=43 x=217 y=17 width=10 height=10 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
-char id=62 x=227 y=17 width=11 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
-char id=60 x=238 y=17 width=11 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
-char id=58 x=249 y=17 width=4 height=10 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0
-char id=122 x=253 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=120 x=263 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=119 x=273 y=17 width=14 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
-char id=118 x=287 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=114 x=297 y=17 width=7 height=10 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
-char id=110 x=304 y=17 width=9 height=10 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=109 x=313 y=17 width=14 height=10 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0
-char id=94 x=327 y=17 width=9 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
-char id=42 x=336 y=17 width=8 height=7 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0
-char id=61 x=344 y=17 width=10 height=6 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
-char id=44 x=354 y=17 width=4 height=6 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0
-char id=39 x=358 y=17 width=5 height=6 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0
-char id=34 x=363 y=17 width=7 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=126 x=370 y=17 width=11 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0
-char id=96 x=381 y=17 width=6 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=95 x=387 y=17 width=13 height=3 xoffset=-1 yoffset=17 xadvance=8 page=0 chnl=0
-char id=45 x=400 y=17 width=7 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0
-char id=46 x=407 y=17 width=4 height=3 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0
-char id=133 x=411 y=17 width=8 height=3 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0
-char id=150 x=419 y=17 width=5 height=3 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0
-char id=151 x=424 y=17 width=8 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0
-char id=152 x=432 y=17 width=7 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0
-char id=168 x=439 y=17 width=7 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=175 x=446 y=17 width=13 height=3 xoffset=-1 yoffset=1 xadvance=8 page=0 chnl=0
-char id=183 x=459 y=17 width=5 height=3 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0
-char id=130 x=464 y=17 width=4 height=4 xoffset=0 yoffset=13 xadvance=2 page=0 chnl=0
-char id=132 x=468 y=17 width=6 height=4 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0
-char id=136 x=474 y=17 width=7 height=4 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0
-char id=145 x=481 y=17 width=4 height=4 xoffset=0 yoffset=4 xadvance=2 page=0 chnl=0
-char id=146 x=485 y=17 width=4 height=4 xoffset=0 yoffset=4 xadvance=2 page=0 chnl=0
-char id=147 x=489 y=17 width=6 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=148 x=495 y=17 width=6 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=180 x=501 y=17 width=6 height=4 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=139 x=0 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=2 page=0 chnl=0
-char id=149 x=5 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0
-char id=153 x=10 y=30 width=7 height=6 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
-char id=155 x=17 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=2 page=0 chnl=0
-char id=172 x=22 y=30 width=10 height=6 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
-char id=176 x=32 y=30 width=7 height=6 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=0
-char id=184 x=39 y=30 width=7 height=6 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0
-char id=156 x=46 y=30 width=12 height=8 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0
-char id=170 x=58 y=30 width=8 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=178 x=66 y=30 width=7 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=179 x=73 y=30 width=7 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=185 x=80 y=30 width=6 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=186 x=86 y=30 width=8 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=215 x=94 y=30 width=9 height=8 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=247 x=103 y=30 width=11 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=171 x=114 y=30 width=9 height=9 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
-char id=187 x=123 y=30 width=9 height=9 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
-char id=164 x=132 y=30 width=11 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
-char id=154 x=143 y=30 width=8 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
-char id=177 x=151 y=30 width=11 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
-char id=230 x=162 y=30 width=16 height=11 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
-char id=248 x=178 y=30 width=10 height=11 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=128 x=188 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=129 x=199 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=140 x=210 y=30 width=12 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
-char id=141 x=222 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=142 x=233 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=143 x=244 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=144 x=255 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=157 x=266 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=158 x=277 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=165 x=288 y=30 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=198 x=299 y=30 width=18 height=13 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0
-char id=208 x=317 y=30 width=13 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=222 x=330 y=30 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=137 x=341 y=30 width=18 height=14 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0
-char id=161 x=359 y=30 width=5 height=14 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
-char id=163 x=364 y=30 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=169 x=375 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=174 x=389 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=181 x=403 y=30 width=9 height=14 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=188 x=412 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=189 x=427 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=190 x=442 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=191 x=457 y=30 width=10 height=14 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=216 x=467 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=223 x=481 y=30 width=11 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0
-char id=240 x=492 y=30 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=134 x=503 y=30 width=7 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=135 x=0 y=45 width=7 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=138 x=7 y=45 width=8 height=15 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0
-char id=195 x=15 y=45 width=13 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0
-char id=203 x=28 y=45 width=11 height=15 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0
-char id=207 x=39 y=45 width=7 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0
-char id=131 x=46 y=45 width=10 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0
-char id=192 x=56 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=193 x=69 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=194 x=82 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=200 x=95 y=45 width=11 height=16 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0
-char id=202 x=106 y=45 width=11 height=16 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0
-char id=204 x=117 y=45 width=6 height=16 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=205 x=123 y=45 width=5 height=16 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=206 x=128 y=45 width=9 height=16 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=213 x=137 y=45 width=14 height=16 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0
-char id=221 x=151 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=162 x=164 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=166 x=174 y=45 width=4 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=167 x=178 y=45 width=11 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=182 x=189 y=45 width=11 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=210 x=200 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=211 x=214 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=212 x=228 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=217 x=242 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=218 x=254 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=219 x=266 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=253 x=278 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=254 x=288 y=45 width=10 height=17 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=255 x=298 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/fixed-ortho-test2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/fixed-ortho-test2.xnb
deleted file mode 100644
index 90ab4591..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/fixed-ortho-test2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test.tmx
deleted file mode 100644
index f132d61a..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test.tmx
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test1.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test1.tmx
deleted file mode 100644
index d6be233c..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-test1.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-tiles.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-tiles.xnb
deleted file mode 100644
index a26b3f91..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/hexa-tiles.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-bug787.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-bug787.tmx
deleted file mode 100644
index 84f5b4a1..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-bug787.tmx
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-movelayer.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-movelayer.tmx
deleted file mode 100644
index 61633687..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-movelayer.tmx
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-objectgroup.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-objectgroup.tmx
deleted file mode 100644
index b7562ff7..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-objectgroup.tmx
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-vertexz.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-vertexz.tmx
deleted file mode 100644
index c9ba09ea..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-vertexz.tmx
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-zorder.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-zorder.tmx
deleted file mode 100644
index 08380fd8..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test-zorder.tmx
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test.xnb
deleted file mode 100644
index ac36f39c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test01.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test01.tmx
deleted file mode 100644
index 84f5b4a1..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test01.tmx
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.tmx
deleted file mode 100644
index 2b5e5485..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.tmx
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.xnb
deleted file mode 100644
index ac36f39c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test11.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test11.tmx
deleted file mode 100644
index 2b5e5485..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test11.tmx
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2-uncompressed.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2-uncompressed.tmx
deleted file mode 100644
index 9244cd3e..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2-uncompressed.tmx
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.tmx
deleted file mode 100644
index bcae22af..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.tmx
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.xnb
deleted file mode 100644
index a9e0fe94..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test22.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test22.tmx
deleted file mode 100644
index bcae22af..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso-test22.tmx
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso.xnb
deleted file mode 100644
index fb72b047..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/iso.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/levelmap.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/levelmap.xnb
deleted file mode 100644
index ff83ea0e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/levelmap.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-objects.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-objects.tmx
deleted file mode 100644
index 5f67cb2f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-objects.tmx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-rotation-test.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-rotation-test.tmx
deleted file mode 100644
index d2b3bf19..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-rotation-test.tmx
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1.xnb
deleted file mode 100644
index 0780b159..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1_bw.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1_bw.xnb
deleted file mode 100644
index 96aad1c3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test1_bw.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test2.xnb
deleted file mode 100644
index 7136b3f1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-test2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-tile-property.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-tile-property.tmx
deleted file mode 100644
index e4145943..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/ortho-tile-property.tmx
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-movelayer.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-movelayer.tmx
deleted file mode 100644
index cc67994f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-movelayer.tmx
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-vertexz.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-vertexz.tmx
deleted file mode 100644
index 2c3adf52..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-vertexz.tmx
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-zorder.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-zorder.tmx
deleted file mode 100644
index 1b9b9218..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test-zorder.tmx
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tmx
deleted file mode 100644
index 386e4ba5..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tmx
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tsx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tsx
deleted file mode 100644
index ce744aa4..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test1.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test11.tsx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test11.tsx
deleted file mode 100644
index ce744aa4..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test11.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test2.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test2.tmx
deleted file mode 100644
index 60aef9ed..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test2.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test3.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test3.tmx
deleted file mode 100644
index 049d2ea2..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test3.tmx
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4-hd.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4-hd.tmx
deleted file mode 100644
index 8a9c0a1f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4-hd.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4.tmx
deleted file mode 100644
index 8b0a4a8b..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test4.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test5.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test5.tmx
deleted file mode 100644
index 1e294601..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test5.tmx
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6-hd.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6-hd.tmx
deleted file mode 100644
index d4ce8322..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6-hd.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6.tmx
deleted file mode 100644
index 61b0a262..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/orthogonal-test6.tmx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/test-object-layer.tmx b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/test-object-layer.tmx
deleted file mode 100644
index c1331665..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/test-object-layer.tmx
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles-hd.xnb
deleted file mode 100644
index 0442b0fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles.xnb
deleted file mode 100644
index 59f7f629..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tiles.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing-hd.xnb
deleted file mode 100644
index 1d7b38e3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing.xnb
deleted file mode 100644
index f76febfc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/TileMaps/tmw_desert_spacing.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/animations-2.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/animations-2.plist
deleted file mode 100644
index 28604570..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/animations-2.plist
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
- animations
-
- dance_1
-
- delayPerUnit
- 0.2
- restoreOriginalFrame
-
- loops
- 2
- frames
-
-
- spriteframe
- grossini_dance_01.png
- delayUnits
- 1
- notification
-
- firstframe
-
-
-
-
- spriteframe
- grossini_dance_02.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_03.png
- delayUnits
- 0.5
-
-
- spriteframe
- grossini_dance_04.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_05.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_06.png
- delayUnits
- 1
- notification
-
- key1
- 1234
- key2
-
-
-
-
- spriteframe
- grossini_dance_07.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_08.png
- delayUnits
- 2
-
-
- spriteframe
- grossini_dance_09.png
- delayUnits
- 0.5
-
-
- spriteframe
- grossini_dance_10.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_11.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_12.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_13.png
- delayUnits
- 1
-
-
- spriteframe
- grossini_dance_14.png
- delayUnits
- 1
- notification
-
- lastframe
-
-
-
-
-
-
- properties
-
- spritesheets
-
- animations/grossini.plist
- animations/grossini_blue.plist
- animations/grossini_family.plist
-
- format
- 2
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation-hd.xnb
deleted file mode 100644
index 8cb19af1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation.xnb
deleted file mode 100644
index 178faeb4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/dragon_animation.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.plist
deleted file mode 100644
index 1f4a458a..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.plist
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
- texture
-
- width
- 256
- height
- 256
-
- frames
-
- child1.gif
-
- x
- 1
- y
- 0
- width
- 54
- height
- 130
- offsetX
- 7.5
- offsetY
- -0.5
- originalWidth
- 91
- originalHeight
- 139
-
- father.gif
-
- x
- 56
- y
- 1
- width
- 45
- height
- 117
- offsetX
- 5
- offsetY
- -7
- originalWidth
- 91
- originalHeight
- 139
-
- sister1.gif
-
- x
- 102
- y
- 1
- width
- 47
- height
- 124
- offsetX
- 5
- offsetY
- -5.5
- originalWidth
- 91
- originalHeight
- 139
-
- sister2.gif
-
- x
- 150
- y
- 1
- width
- 47
- height
- 109
- offsetX
- 5
- offsetY
- -12
- originalWidth
- 91
- originalHeight
- 139
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.xnb
deleted file mode 100644
index 9fe44779..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/ghosts.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.plist
deleted file mode 100644
index d9902a8a..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.plist
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
- frames
-
- grossini_dance_01.png
-
- spriteSize
- {51, 109}
- textureRect
- {{2, 2}, {51, 109}}
- spriteOffset
- {0, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_01
-
-
- grossini_dance_02.png
-
- spriteSize
- {63, 109}
- textureRect
- {{55, 2}, {63, 109}}
- spriteOffset
- {-6, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_02
-
-
- grossini_dance_03.png
-
- spriteSize
- {63, 109}
- textureRect
- {{120, 2}, {63, 109}}
- spriteOffset
- {-6, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_03
-
-
- grossini_dance_04.png
-
- spriteSize
- {74, 109}
- textureRect
- {{185, 2}, {74, 109}}
- spriteOffset
- {-0.5, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_04
-
-
- grossini_dance_05.png
-
- spriteSize
- {74, 109}
- textureRect
- {{261, 2}, {74, 109}}
- spriteOffset
- {-0.5, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_05
-
-
- grossini_dance_06.png
-
- spriteSize
- {63, 109}
- textureRect
- {{337, 2}, {63, 109}}
- spriteOffset
- {-6, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_06
-
-
- grossini_dance_07.png
-
- spriteSize
- {63, 109}
- textureRect
- {{402, 2}, {63, 109}}
- spriteOffset
- {-6, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_07
-
-
- grossini_dance_08.png
-
- spriteSize
- {51, 109}
- textureRect
- {{2, 113}, {51, 109}}
- spriteOffset
- {0, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_08
-
-
- grossini_dance_09.png
-
- spriteSize
- {51, 109}
- textureRect
- {{55, 113}, {51, 109}}
- spriteOffset
- {0, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_09
-
-
- grossini_dance_10.png
-
- spriteSize
- {62, 109}
- textureRect
- {{108, 113}, {62, 109}}
- spriteOffset
- {5.5, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_10
-
-
- grossini_dance_11.png
-
- spriteSize
- {62, 109}
- textureRect
- {{172, 113}, {62, 109}}
- spriteOffset
- {5.5, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_11
-
-
- grossini_dance_12.png
-
- spriteSize
- {51, 106}
- textureRect
- {{236, 113}, {51, 106}}
- spriteOffset
- {0, -2.5}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_12
-
-
- grossini_dance_13.png
-
- spriteSize
- {51, 109}
- textureRect
- {{289, 113}, {51, 109}}
- spriteOffset
- {0, -1}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_13
-
-
- grossini_dance_14.png
-
- spriteSize
- {51, 106}
- textureRect
- {{342, 113}, {51, 106}}
- spriteOffset
- {0, -2.5}
- textureRotated
-
- spriteSourceSize
- {85, 121}
- aliases
-
- dance_14
-
-
-
- metadata
-
- format
- 3
- size
- {512, 256}
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.xnb
deleted file mode 100644
index 27457451..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini-aliases.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.plist
deleted file mode 100644
index 2c894b6f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.plist
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
- texture
-
- width
- 512
- height
- 256
-
- frames
-
- grossini_dance_01.png
-
- x
- 347
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_02.png
-
- x
- 215
- y
- 111
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_03.png
-
- x
- 151
- y
- 111
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_04.png
-
- x
- 1
- y
- 111
- width
- 74
- height
- 109
- offsetX
- -0.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_05.png
-
- x
- 76
- y
- 111
- width
- 74
- height
- 109
- offsetX
- -0.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_06.png
-
- x
- 399
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_07.png
-
- x
- 105
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_08.png
-
- x
- 1
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_09.png
-
- x
- 295
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_10.png
-
- x
- 232
- y
- 1
- width
- 62
- height
- 109
- offsetX
- 5.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_11.png
-
- x
- 169
- y
- 1
- width
- 62
- height
- 109
- offsetX
- 5.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_12.png
-
- x
- 279
- y
- 111
- width
- 51
- height
- 106
- offsetX
- 0
- offsetY
- -2.5
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_13.png
-
- x
- 53
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_14.png
-
- x
- 331
- y
- 111
- width
- 51
- height
- 106
- offsetX
- 0
- offsetY
- -2.5
- originalWidth
- 85
- originalHeight
- -121
-
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.xnb
deleted file mode 100644
index e3e84a3d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.plist
deleted file mode 100644
index 7e39687b..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.plist
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
- texture
-
- width
- 256
- height
- 128
-
- frames
-
- grossini_blue_01.png
-
- x
- 76
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- 121
-
- grossini_blue_02.png
-
- x
- 128
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- 121
-
- grossini_blue_03.png
-
- x
- 192
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- 121
-
- grossini_blue_04.png
-
- x
- 1
- y
- 1
- width
- 74
- height
- 109
- offsetX
- -0.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- 121
-
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.xnb
deleted file mode 100644
index e8f0a443..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_blue.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.plist
deleted file mode 100644
index beb70604..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.plist
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
- texture
-
- width
- 256
- height
- 128
-
- frames
-
- grossini.png
-
- x
- 103
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- 121
-
- grossinis_sister1.png
-
- x
- 55
- y
- 1
- width
- 47
- height
- 112
- offsetX
- -0.5
- offsetY
- -11.5
- originalWidth
- 52
- originalHeight
- 139
-
- grossinis_sister2.png
-
- x
- 1
- y
- 1
- width
- 53
- height
- 126
- offsetX
- -0.5
- offsetY
- -2
- originalWidth
- 56
- originalHeight
- 138
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.xnb
deleted file mode 100644
index cfe3fe84..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_family.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.plist
deleted file mode 100644
index cf9bb58e..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.plist
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
- texture
-
- width
- 512
- height
- 256
-
- frames
-
- grossini_dance_gray_01.png
-
- x
- 347
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_02.png
-
- x
- 215
- y
- 111
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_03.png
-
- x
- 151
- y
- 111
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_04.png
-
- x
- 1
- y
- 111
- width
- 74
- height
- 109
- offsetX
- -0.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_05.png
-
- x
- 76
- y
- 111
- width
- 74
- height
- 109
- offsetX
- -0.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_06.png
-
- x
- 399
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_07.png
-
- x
- 105
- y
- 1
- width
- 63
- height
- 109
- offsetX
- -6
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_08.png
-
- x
- 1
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_09.png
-
- x
- 295
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_10.png
-
- x
- 232
- y
- 1
- width
- 62
- height
- 109
- offsetX
- 5.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_11.png
-
- x
- 169
- y
- 1
- width
- 62
- height
- 109
- offsetX
- 5.5
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_12.png
-
- x
- 279
- y
- 111
- width
- 51
- height
- 106
- offsetX
- 0
- offsetY
- -2.5
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_13.png
-
- x
- 53
- y
- 1
- width
- 51
- height
- 109
- offsetX
- 0
- offsetY
- -1
- originalWidth
- 85
- originalHeight
- -121
-
- grossini_dance_gray_14.png
-
- x
- 331
- y
- 111
- width
- 51
- height
- 106
- offsetX
- 0
- offsetY
- -2.5
- originalWidth
- 85
- originalHeight
- -121
-
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.xnb
deleted file mode 100644
index 98b08c1c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/animations/grossini_gray.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Circle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Circle.xnb
deleted file mode 100644
index d8f50ead..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Circle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Rock.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Rock.xnb
deleted file mode 100644
index 6f36b0c2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Rock.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Terrain.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Terrain.xnb
deleted file mode 100644
index 3cc39605..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Terrain.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Texture.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Texture.xnb
deleted file mode 100644
index 27aef4c9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/box2d/Texture.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/animated-grossini.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/animated-grossini.xnb
deleted file mode 100644
index 33c2f07d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/animated-grossini.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-0.xnb
deleted file mode 100644
index 6e736203..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-1.xnb
deleted file mode 100644
index 38e80033..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-2.xnb
deleted file mode 100644
index 251ffe4f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-a-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-0.xnb
deleted file mode 100644
index 7469c9c1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-1.xnb
deleted file mode 100644
index 0498c4cc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-2.xnb
deleted file mode 100644
index e5f6ee0c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-b-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-0.xnb
deleted file mode 100644
index bc43900e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-1.xnb
deleted file mode 100644
index b48fea6b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-back-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-0.xnb
deleted file mode 100644
index 26dc3f43..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-1.xnb
deleted file mode 100644
index 3fa09816..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-2.xnb
deleted file mode 100644
index f2a1e1ad..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/btn-test-2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/burst.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/burst.xnb
deleted file mode 100644
index e948faf3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/burst.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/flower.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/flower.xnb
deleted file mode 100644
index d5fe2920..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/flower.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-0.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-0.xnb
deleted file mode 100644
index da4756de..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-0.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-1.xnb
deleted file mode 100644
index 66012d0c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/gem-1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/grossini-generic.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/grossini-generic.xnb
deleted file mode 100644
index c1861be2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/grossini-generic.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-left.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-left.xnb
deleted file mode 100644
index 56a1cb15..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-left.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-right.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-right.xnb
deleted file mode 100644
index 902eb549..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle-right.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle.xnb
deleted file mode 100644
index 67664cfb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/jungle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo-icon.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo-icon.xnb
deleted file mode 100644
index 542ff5fe..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo-icon.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo.xnb
deleted file mode 100644
index fb2e9374..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/logo.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/markerfelt24shadow.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/markerfelt24shadow.xnb
deleted file mode 100644
index fe0d5db0..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/markerfelt24shadow.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-fire.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-fire.xnb
deleted file mode 100644
index 514824fc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-fire.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-smoke.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-smoke.xnb
deleted file mode 100644
index 882b4480..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-smoke.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-snow.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-snow.xnb
deleted file mode 100644
index 2755c9e6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-snow.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-stars.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-stars.xnb
deleted file mode 100644
index 01575048..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/particle-stars.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/scale-9-demo.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/scale-9-demo.xnb
deleted file mode 100644
index 6692db20..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/ccb/scale-9-demo.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/CCControlColourPickerSpriteSheet.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/CCControlColourPickerSpriteSheet.xnb
deleted file mode 100644
index 443c7281..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/CCControlColourPickerSpriteSheet.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/background.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/background.xnb
deleted file mode 100644
index 89a27421..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/background.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/button.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/button.xnb
deleted file mode 100644
index 1742f902..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/button.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonBackground.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonBackground.xnb
deleted file mode 100644
index 0d5b9908..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonBackground.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonHighlighted.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonHighlighted.xnb
deleted file mode 100644
index 060236b4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/buttonHighlighted.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/green_edit.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/green_edit.xnb
deleted file mode 100644
index c4c4044f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/green_edit.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/orange_edit.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/orange_edit.xnb
deleted file mode 100644
index 2da99ac7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/orange_edit.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerButton.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerButton.xnb
deleted file mode 100644
index a069fda6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerButton.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerProgress.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerProgress.xnb
deleted file mode 100644
index 2bbd895f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerProgress.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerTrack.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerTrack.xnb
deleted file mode 100644
index 0cec9136..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/potentiometerTrack.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/ribbon.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/ribbon.xnb
deleted file mode 100644
index 6fdc1e40..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/ribbon.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress.xnb
deleted file mode 100644
index 0557c2ec..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress2.xnb
deleted file mode 100644
index e1512d2e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderProgress2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderThumb.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderThumb.xnb
deleted file mode 100644
index 818ce242..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderThumb.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack.xnb
deleted file mode 100644
index 7b298a55..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack2.xnb
deleted file mode 100644
index 081c0200..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/sliderTrack2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-minus.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-minus.xnb
deleted file mode 100644
index 669f473a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-minus.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-plus.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-plus.xnb
deleted file mode 100644
index c55a7568..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/stepper-plus.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-mask.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-mask.xnb
deleted file mode 100644
index ce398206..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-mask.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-off.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-off.xnb
deleted file mode 100644
index 7f0907f6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-off.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-on.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-on.xnb
deleted file mode 100644
index 755bd4c3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-on.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-thumb.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-thumb.xnb
deleted file mode 100644
index f34b38a3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/switch-thumb.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/yellow_edit.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/yellow_edit.xnb
deleted file mode 100644
index 9b5aaa46..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/extensions/yellow_edit.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess-26.xnb
deleted file mode 100644
index a0bc2c9e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess.ttf
deleted file mode 100644
index e3d2a400..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/A Damn Mess.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy-26.xnb
deleted file mode 100644
index 2e982833..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy.ttf
deleted file mode 100644
index cb1b43ee..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abberancy.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction-26.xnb
deleted file mode 100644
index 6cd4e4c9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction.ttf
deleted file mode 100644
index 1c20f9ab..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Abduction.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/American Typewriter.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/American Typewriter.ttf
deleted file mode 100644
index 8ef0d3c9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/American Typewriter.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Arial.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Arial.xnb
deleted file mode 100644
index cc56d5fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Arial.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Courier New.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Courier New.ttf
deleted file mode 100644
index ebb3361a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Courier New.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Marker Felt.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Marker Felt.ttf
deleted file mode 100644
index 3752ef31..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Marker Felt.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt Thin Plain.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt Thin Plain.ttf
deleted file mode 100644
index c51f2796..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt Thin Plain.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-16.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-16.xnb
deleted file mode 100644
index bced6839..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-16.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-18.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-18.xnb
deleted file mode 100644
index 20bb3abb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-18.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-22.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-22.xnb
deleted file mode 100644
index 2dedac1c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-22.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-12.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-12.xnb
deleted file mode 100644
index 5939276b..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-12.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-18.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-18.xnb
deleted file mode 100644
index 864e0811..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/MarkerFelt-Thin-18.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy-26.xnb
deleted file mode 100644
index 89288e3e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy.ttf
deleted file mode 100644
index 42088720..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Paint Boy.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular-26.xnb
deleted file mode 100644
index 208c8f79..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular.ttf
deleted file mode 100644
index 1062de0d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Schwarzwald Regular.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts-26.xnb
deleted file mode 100644
index 6fc9b8b5..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts.ttf
deleted file mode 100644
index 02036618..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Scissor Cuts.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Thonburi.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Thonburi.ttf
deleted file mode 100644
index ab579da8..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/Thonburi.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/ThonburiBold.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/ThonburiBold.ttf
deleted file mode 100644
index cce195a8..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/ThonburiBold.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-12.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-12.xnb
deleted file mode 100644
index 0e6d5330..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-12.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-16.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-16.xnb
deleted file mode 100644
index cc56d5fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-16.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-18.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-18.xnb
deleted file mode 100644
index ada74c2d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-18.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-20.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-20.xnb
deleted file mode 100644
index 177274e4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-20.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-22.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-22.xnb
deleted file mode 100644
index 66a22c32..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-22.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-24.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-24.xnb
deleted file mode 100644
index d11be447..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-24.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-26.xnb
deleted file mode 100644
index a6a77043..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-28.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-28.xnb
deleted file mode 100644
index c4384849..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-28.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-30.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-30.xnb
deleted file mode 100644
index 38af0e92..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-30.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-32.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-32.xnb
deleted file mode 100644
index d97f1cab..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-32.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-34.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-34.xnb
deleted file mode 100644
index 5c380753..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-34.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-38.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-38.xnb
deleted file mode 100644
index b79b8ebf..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-38.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-50.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-50.xnb
deleted file mode 100644
index 536563ae..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-50.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-64.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-64.xnb
deleted file mode 100644
index ad8755f6..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-64.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.GlyphProject b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.GlyphProject
deleted file mode 100644
index 87994d21..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.GlyphProject and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.fnt
deleted file mode 100644
index 59971fd2..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.fnt
+++ /dev/null
@@ -1,206 +0,0 @@
-info face="ArialUnicodeMS" size=26 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2
-common lineHeight=35 base=28 scaleW=512 scaleH=256 pages=1 packed=0
-page id=0 file="arial-unicode-26.png"
-chars count=202
-char id=64 x=2 y=2 width=29 height=29 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0 letter="@"
-char id=210 x=33 y=2 width=22 height=29 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="Ò"
-char id=211 x=57 y=2 width=22 height=29 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="Ó"
-char id=212 x=81 y=2 width=22 height=29 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="Ô"
-char id=199 x=105 y=2 width=21 height=29 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Ç"
-char id=217 x=128 y=2 width=19 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 letter="Ù"
-char id=218 x=149 y=2 width=19 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 letter="Ú"
-char id=219 x=170 y=2 width=19 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 letter="Û"
-char id=182 x=191 y=2 width=18 height=29 xoffset=-1 yoffset=8 xadvance=13 page=0 chnl=0 letter="¶"
-char id=162 x=211 y=2 width=17 height=29 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="¢"
-char id=167 x=230 y=2 width=17 height=29 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="§"
-char id=253 x=249 y=2 width=17 height=29 xoffset=-1 yoffset=8 xadvance=13 page=0 chnl=0 letter="ý"
-char id=254 x=268 y=2 width=17 height=29 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="þ"
-char id=255 x=287 y=2 width=17 height=29 xoffset=-1 yoffset=8 xadvance=13 page=0 chnl=0 letter="ÿ"
-char id=123 x=306 y=2 width=13 height=29 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 letter="{"
-char id=125 x=321 y=2 width=12 height=29 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 letter="}"
-char id=40 x=335 y=2 width=11 height=29 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="("
-char id=41 x=348 y=2 width=11 height=29 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter=")"
-char id=106 x=361 y=2 width=10 height=29 xoffset=-3 yoffset=8 xadvance=5 page=0 chnl=0 letter="j"
-char id=91 x=373 y=2 width=10 height=29 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="["
-char id=93 x=385 y=2 width=10 height=29 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="]"
-char id=124 x=397 y=2 width=7 height=29 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 letter="|"
-char id=166 x=406 y=2 width=7 height=29 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 letter="¦"
-char id=32654 x=415 y=2 width=28 height=28 xoffset=0 yoffset=5 xadvance=26 page=0 chnl=0 letter="美"
-char id=22909 x=445 y=2 width=28 height=28 xoffset=0 yoffset=5 xadvance=26 page=0 chnl=0 letter="好"
-char id=33391 x=475 y=2 width=27 height=28 xoffset=1 yoffset=5 xadvance=26 page=0 chnl=0 letter="良"
-char id=45216 x=2 y=33 width=27 height=28 xoffset=1 yoffset=5 xadvance=26 page=0 chnl=0 letter="날"
-char id=30340 x=31 y=33 width=25 height=28 xoffset=1 yoffset=5 xadvance=26 page=0 chnl=0 letter="的"
-char id=192 x=58 y=33 width=22 height=28 xoffset=-1 yoffset=3 xadvance=17 page=0 chnl=0 letter="À"
-char id=193 x=82 y=33 width=22 height=28 xoffset=-1 yoffset=3 xadvance=17 page=0 chnl=0 letter="Á"
-char id=194 x=106 y=33 width=22 height=28 xoffset=-1 yoffset=3 xadvance=17 page=0 chnl=0 letter="Â"
-char id=197 x=130 y=33 width=22 height=28 xoffset=-1 yoffset=3 xadvance=17 page=0 chnl=0 letter="Å"
-char id=213 x=154 y=33 width=22 height=28 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="Õ"
-char id=214 x=178 y=33 width=22 height=28 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="Ö"
-char id=221 x=202 y=33 width=21 height=28 xoffset=-1 yoffset=3 xadvance=17 page=0 chnl=0 letter="Ý"
-char id=220 x=225 y=33 width=19 height=28 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 letter="Ü"
-char id=200 x=246 y=33 width=18 height=28 xoffset=1 yoffset=3 xadvance=17 page=0 chnl=0 letter="È"
-char id=201 x=266 y=33 width=18 height=28 xoffset=1 yoffset=3 xadvance=17 page=0 chnl=0 letter="É"
-char id=202 x=286 y=33 width=18 height=28 xoffset=1 yoffset=3 xadvance=17 page=0 chnl=0 letter="Ê"
-char id=36 x=306 y=33 width=17 height=28 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="$"
-char id=206 x=325 y=33 width=13 height=28 xoffset=-2 yoffset=3 xadvance=7 page=0 chnl=0 letter="Î"
-char id=204 x=340 y=33 width=9 height=28 xoffset=-1 yoffset=3 xadvance=7 page=0 chnl=0 letter="Ì"
-char id=205 x=351 y=33 width=9 height=28 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=0 letter="Í"
-char id=22825 x=362 y=33 width=28 height=27 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="天"
-char id=51339 x=392 y=33 width=26 height=27 xoffset=1 yoffset=6 xadvance=26 page=0 chnl=0 letter="좋"
-char id=51008 x=420 y=33 width=26 height=27 xoffset=1 yoffset=6 xadvance=26 page=0 chnl=0 letter="은"
-char id=195 x=448 y=33 width=22 height=27 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=0 letter="Ã"
-char id=196 x=472 y=33 width=22 height=27 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=0 letter="Ä"
-char id=209 x=2 y=63 width=19 height=27 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 letter="Ñ"
-char id=203 x=23 y=63 width=18 height=27 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 letter="Ë"
-char id=207 x=43 y=63 width=12 height=27 xoffset=-1 yoffset=4 xadvance=7 page=0 chnl=0 letter="Ï"
-char id=12434 x=57 y=63 width=24 height=26 xoffset=2 yoffset=6 xadvance=26 page=0 chnl=0 letter="を"
-char id=12356 x=83 y=63 width=24 height=25 xoffset=2 yoffset=7 xadvance=26 page=0 chnl=0 letter="い"
-char id=81 x=109 y=63 width=23 height=25 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Q"
-char id=216 x=134 y=63 width=23 height=25 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="Ø"
-char id=26085 x=159 y=63 width=19 height=25 xoffset=5 yoffset=7 xadvance=26 page=0 chnl=0 letter="日"
-char id=229 x=180 y=63 width=17 height=25 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="å"
-char id=37 x=199 y=63 width=25 height=24 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="%"
-char id=190 x=226 y=63 width=25 height=24 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 letter="¾"
-char id=169 x=253 y=63 width=24 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 letter="©"
-char id=174 x=279 y=63 width=24 height=24 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=0 letter="®"
-char id=188 x=305 y=63 width=24 height=24 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="¼"
-char id=189 x=331 y=63 width=24 height=24 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="½"
-char id=71 x=357 y=63 width=22 height=24 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="G"
-char id=79 x=381 y=63 width=22 height=24 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="O"
-char id=67 x=405 y=63 width=21 height=24 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C"
-char id=38 x=428 y=63 width=20 height=24 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="&"
-char id=83 x=450 y=63 width=19 height=24 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="S"
-char id=85 x=471 y=63 width=19 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 letter="U"
-char id=35 x=2 y=92 width=19 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="#"
-char id=163 x=23 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="£"
-char id=223 x=43 y=92 width=18 height=24 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="ß"
-char id=242 x=63 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="ò"
-char id=243 x=83 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="ó"
-char id=244 x=103 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="ô"
-char id=245 x=123 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="õ"
-char id=246 x=143 y=92 width=18 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="ö"
-char id=98 x=163 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="b"
-char id=100 x=182 y=92 width=17 height=24 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="d"
-char id=103 x=201 y=92 width=17 height=24 xoffset=-1 yoffset=13 xadvance=14 page=0 chnl=0 letter="g"
-char id=112 x=220 y=92 width=17 height=24 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="p"
-char id=121 x=239 y=92 width=17 height=24 xoffset=-1 yoffset=13 xadvance=13 page=0 chnl=0 letter="y"
-char id=51 x=258 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="3"
-char id=53 x=277 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="5"
-char id=54 x=296 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="6"
-char id=56 x=315 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="8"
-char id=57 x=334 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="9"
-char id=48 x=353 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="0"
-char id=191 x=372 y=92 width=17 height=24 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="¿"
-char id=224 x=391 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="à"
-char id=225 x=410 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="á"
-char id=226 x=429 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="â"
-char id=227 x=448 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ã"
-char id=228 x=467 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ä"
-char id=232 x=486 y=92 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="è"
-char id=233 x=2 y=118 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="é"
-char id=234 x=21 y=118 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ê"
-char id=235 x=40 y=118 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ë"
-char id=240 x=59 y=118 width=17 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ð"
-char id=113 x=78 y=118 width=16 height=24 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="q"
-char id=181 x=96 y=118 width=16 height=24 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="µ"
-char id=231 x=114 y=118 width=16 height=24 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="ç"
-char id=249 x=132 y=118 width=16 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ù"
-char id=250 x=150 y=118 width=16 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ú"
-char id=251 x=168 y=118 width=16 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="û"
-char id=252 x=186 y=118 width=16 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ü"
-char id=74 x=204 y=118 width=15 height=24 xoffset=-1 yoffset=8 xadvance=13 page=0 chnl=0 letter="J"
-char id=47 x=221 y=118 width=12 height=24 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="/"
-char id=92 x=235 y=118 width=12 height=24 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="\"
-char id=161 x=249 y=118 width=8 height=24 xoffset=1 yoffset=13 xadvance=8 page=0 chnl=0 letter="¡"
-char id=87 x=259 y=118 width=29 height=23 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0 letter="W"
-char id=198 x=290 y=118 width=29 height=23 xoffset=-1 yoffset=8 xadvance=26 page=0 chnl=0 letter="Æ"
-char id=65 x=321 y=118 width=22 height=23 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 letter="A"
-char id=77 x=345 y=118 width=22 height=23 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 letter="M"
-char id=86 x=369 y=118 width=22 height=23 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 letter="V"
-char id=208 x=393 y=118 width=22 height=23 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=0 letter="Ð"
-char id=75 x=417 y=118 width=21 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="K"
-char id=82 x=440 y=118 width=21 height=23 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 letter="R"
-char id=88 x=463 y=118 width=21 height=23 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 letter="X"
-char id=89 x=486 y=118 width=21 height=23 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 letter="Y"
-char id=68 x=2 y=144 width=20 height=23 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 letter="D"
-char id=84 x=24 y=144 width=20 height=23 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 letter="T"
-char id=90 x=46 y=144 width=20 height=23 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=0 letter="Z"
-char id=66 x=68 y=144 width=19 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="B"
-char id=72 x=89 y=144 width=19 height=23 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 letter="H"
-char id=78 x=110 y=144 width=19 height=23 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 letter="N"
-char id=80 x=131 y=144 width=19 height=23 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 letter="P"
-char id=165 x=152 y=144 width=19 height=23 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="¥"
-char id=222 x=173 y=144 width=19 height=23 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 letter="Þ"
-char id=69 x=194 y=144 width=18 height=23 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 letter="E"
-char id=50 x=214 y=144 width=18 height=23 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="2"
-char id=52 x=234 y=144 width=18 height=23 xoffset=-1 yoffset=8 xadvance=14 page=0 chnl=0 letter="4"
-char id=70 x=254 y=144 width=17 height=23 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 letter="F"
-char id=76 x=273 y=144 width=17 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="L"
-char id=55 x=292 y=144 width=17 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="7"
-char id=63 x=311 y=144 width=17 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="?"
-char id=104 x=330 y=144 width=16 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="h"
-char id=107 x=348 y=144 width=16 height=23 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="k"
-char id=241 x=366 y=144 width=16 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="ñ"
-char id=238 x=384 y=144 width=13 height=23 xoffset=-2 yoffset=8 xadvance=7 page=0 chnl=0 letter="î"
-char id=102 x=399 y=144 width=12 height=23 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="f"
-char id=49 x=413 y=144 width=12 height=23 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 letter="1"
-char id=239 x=427 y=144 width=12 height=23 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="ï"
-char id=116 x=441 y=144 width=11 height=23 xoffset=-1 yoffset=9 xadvance=7 page=0 chnl=0 letter="t"
-char id=236 x=454 y=144 width=9 height=23 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 letter="ì"
-char id=237 x=465 y=144 width=9 height=23 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 letter="í"
-char id=33 x=476 y=144 width=8 height=23 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 letter="!"
-char id=73 x=486 y=144 width=7 height=23 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 letter="I"
-char id=105 x=495 y=144 width=7 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="i"
-char id=108 x=2 y=169 width=7 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="l"
-char id=59 x=11 y=169 width=7 height=22 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 letter=";"
-char id=248 x=20 y=169 width=18 height=20 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="ø"
-char id=177 x=40 y=169 width=17 height=20 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="±"
-char id=230 x=59 y=169 width=27 height=19 xoffset=-1 yoffset=13 xadvance=23 page=0 chnl=0 letter="æ"
-char id=111 x=88 y=169 width=18 height=19 xoffset=-1 yoffset=13 xadvance=14 page=0 chnl=0 letter="o"
-char id=97 x=108 y=169 width=17 height=19 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="a"
-char id=101 x=127 y=169 width=17 height=19 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="e"
-char id=99 x=146 y=169 width=16 height=19 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="c"
-char id=115 x=164 y=169 width=16 height=19 xoffset=-1 yoffset=13 xadvance=13 page=0 chnl=0 letter="s"
-char id=117 x=182 y=169 width=16 height=19 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="u"
-char id=109 x=200 y=169 width=23 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="m"
-char id=119 x=225 y=169 width=23 height=18 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 letter="w"
-char id=118 x=250 y=169 width=17 height=18 xoffset=-1 yoffset=13 xadvance=13 page=0 chnl=0 letter="v"
-char id=120 x=269 y=169 width=17 height=18 xoffset=-1 yoffset=13 xadvance=13 page=0 chnl=0 letter="x"
-char id=122 x=288 y=169 width=17 height=18 xoffset=-1 yoffset=13 xadvance=13 page=0 chnl=0 letter="z"
-char id=110 x=307 y=169 width=16 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n"
-char id=114 x=325 y=169 width=12 height=18 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="r"
-char id=58 x=339 y=169 width=7 height=18 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 letter=":"
-char id=60 x=348 y=169 width=17 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="<"
-char id=62 x=367 y=169 width=17 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter=">"
-char id=43 x=386 y=169 width=17 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="+"
-char id=164 x=405 y=169 width=17 height=17 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="¤"
-char id=171 x=424 y=169 width=16 height=17 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="«"
-char id=187 x=442 y=169 width=16 height=17 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="»"
-char id=247 x=460 y=169 width=17 height=16 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="÷"
-char id=215 x=479 y=169 width=15 height=16 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0 letter="×"
-char id=94 x=2 y=194 width=16 height=15 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 letter="^"
-char id=170 x=20 y=194 width=13 height=14 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 letter="ª"
-char id=178 x=35 y=194 width=13 height=14 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 letter="²"
-char id=179 x=50 y=194 width=13 height=14 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 letter="³"
-char id=186 x=65 y=194 width=13 height=14 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 letter="º"
-char id=185 x=80 y=194 width=10 height=14 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="¹"
-char id=61 x=92 y=194 width=17 height=13 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="="
-char id=172 x=111 y=194 width=17 height=13 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="¬"
-char id=42 x=130 y=194 width=14 height=12 xoffset=-1 yoffset=8 xadvance=10 page=0 chnl=0 letter="*"
-char id=176 x=146 y=194 width=12 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="°"
-char id=34 x=160 y=194 width=12 height=11 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="""
-char id=184 x=174 y=194 width=10 height=11 xoffset=0 yoffset=26 xadvance=8 page=0 chnl=0 letter="¸"
-char id=39 x=186 y=194 width=7 height=11 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter="'"
-char id=44 x=195 y=194 width=7 height=11 xoffset=1 yoffset=24 xadvance=7 page=0 chnl=0 letter=","
-char id=126 x=204 y=194 width=18 height=9 xoffset=0 yoffset=15 xadvance=15 page=0 chnl=0 letter="~"
-char id=168 x=224 y=194 width=12 height=8 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 letter="¨"
-char id=96 x=238 y=194 width=9 height=8 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="`"
-char id=180 x=249 y=194 width=9 height=8 xoffset=2 yoffset=8 xadvance=8 page=0 chnl=0 letter="´"
-char id=183 x=260 y=194 width=7 height=8 xoffset=1 yoffset=16 xadvance=7 page=0 chnl=0 letter="·"
-char id=19968 x=269 y=194 width=25 height=7 xoffset=2 yoffset=15 xadvance=26 page=0 chnl=0 letter="一"
-char id=95 x=296 y=194 width=19 height=7 xoffset=-2 yoffset=28 xadvance=13 page=0 chnl=0 letter="_"
-char id=45 x=317 y=194 width=12 height=7 xoffset=-1 yoffset=19 xadvance=8 page=0 chnl=0 letter="-"
-char id=173 x=331 y=194 width=12 height=7 xoffset=-1 yoffset=19 xadvance=8 page=0 chnl=0 letter=""
-char id=46 x=345 y=194 width=7 height=7 xoffset=1 yoffset=24 xadvance=7 page=0 chnl=0 letter="."
-char id=175 x=354 y=194 width=19 height=6 xoffset=-2 yoffset=5 xadvance=13 page=0 chnl=0 letter="¯"
-char id=32 x=439 y=194 width=0 height=0 xoffset=-113 yoffset=148 xadvance=7 page=0 chnl=0 letter="space"
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.xnb
deleted file mode 100644
index f111f4f7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial-unicode-26.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial.ttf
deleted file mode 100644
index abc899cd..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.fnt
deleted file mode 100644
index 30b551af..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.fnt
+++ /dev/null
@@ -1,192 +0,0 @@
-info face="ArialMT" size=16 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=19 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="arial16.png"
-chars count=187
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=4 page=0 chnl=0
-char id=64 x=0 y=0 width=18 height=17 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0
-char id=124 x=18 y=0 width=4 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=125 x=22 y=0 width=7 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=123 x=29 y=0 width=7 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=93 x=36 y=0 width=6 height=17 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=91 x=42 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=41 x=48 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=40 x=54 y=0 width=6 height=17 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=106 x=60 y=0 width=7 height=17 xoffset=-1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=36 x=67 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=38 x=78 y=0 width=13 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=35 x=91 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=37 x=102 y=0 width=15 height=14 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0
-char id=92 x=117 y=0 width=7 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=47 x=124 y=0 width=7 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=48 x=131 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=57 x=142 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=56 x=153 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=54 x=164 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=53 x=175 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=51 x=186 y=0 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=121 x=197 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=113 x=207 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=112 x=217 y=0 width=10 height=14 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=103 x=227 y=0 width=10 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=100 x=237 y=0 width=10 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=98 x=247 y=0 width=10 height=14 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=85 x=257 y=0 width=12 height=14 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=83 x=269 y=0 width=12 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=81 x=281 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=79 x=295 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=74 x=309 y=0 width=9 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=71 x=318 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=67 x=332 y=0 width=13 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=59 x=345 y=0 width=4 height=13 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0
-char id=63 x=349 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=33 x=359 y=0 width=5 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=55 x=364 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=52 x=375 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=50 x=386 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=49 x=396 y=0 width=7 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=116 x=403 y=0 width=7 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=108 x=410 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=107 x=414 y=0 width=9 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=105 x=423 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=3 page=0 chnl=0
-char id=104 x=427 y=0 width=9 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=102 x=436 y=0 width=7 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
-char id=90 x=443 y=0 width=12 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
-char id=89 x=455 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=88 x=468 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=87 x=481 y=0 width=17 height=13 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0
-char id=86 x=498 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=84 x=0 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
-char id=82 x=12 y=17 width=13 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=80 x=25 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=78 x=36 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=77 x=48 y=17 width=14 height=13 xoffset=1 yoffset=3 xadvance=13 page=0 chnl=0
-char id=76 x=62 y=17 width=10 height=13 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=75 x=72 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=73 x=84 y=17 width=4 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=72 x=88 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=70 x=100 y=17 width=10 height=13 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0
-char id=69 x=110 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=68 x=121 y=17 width=12 height=13 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
-char id=66 x=133 y=17 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=65 x=144 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=117 x=156 y=17 width=8 height=11 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=115 x=164 y=17 width=10 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=111 x=174 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=101 x=185 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=99 x=196 y=17 width=10 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=97 x=206 y=17 width=11 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=43 x=217 y=17 width=10 height=10 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
-char id=62 x=227 y=17 width=11 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
-char id=60 x=238 y=17 width=11 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
-char id=58 x=249 y=17 width=4 height=10 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0
-char id=122 x=253 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=120 x=263 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=119 x=273 y=17 width=14 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
-char id=118 x=287 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=114 x=297 y=17 width=7 height=10 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
-char id=110 x=304 y=17 width=9 height=10 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=109 x=313 y=17 width=14 height=10 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0
-char id=94 x=327 y=17 width=9 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
-char id=42 x=336 y=17 width=8 height=7 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0
-char id=61 x=344 y=17 width=10 height=6 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
-char id=44 x=354 y=17 width=4 height=6 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0
-char id=39 x=358 y=17 width=5 height=6 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0
-char id=34 x=363 y=17 width=7 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=126 x=370 y=17 width=11 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0
-char id=96 x=381 y=17 width=6 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=95 x=387 y=17 width=13 height=3 xoffset=-1 yoffset=17 xadvance=8 page=0 chnl=0
-char id=45 x=400 y=17 width=7 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0
-char id=46 x=407 y=17 width=4 height=3 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0
-char id=133 x=411 y=17 width=8 height=3 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0
-char id=150 x=419 y=17 width=5 height=3 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0
-char id=151 x=424 y=17 width=8 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0
-char id=152 x=432 y=17 width=7 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0
-char id=168 x=439 y=17 width=7 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=175 x=446 y=17 width=13 height=3 xoffset=-1 yoffset=1 xadvance=8 page=0 chnl=0
-char id=183 x=459 y=17 width=5 height=3 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0
-char id=130 x=464 y=17 width=4 height=4 xoffset=0 yoffset=13 xadvance=2 page=0 chnl=0
-char id=132 x=468 y=17 width=6 height=4 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0
-char id=136 x=474 y=17 width=7 height=4 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0
-char id=145 x=481 y=17 width=4 height=4 xoffset=0 yoffset=4 xadvance=2 page=0 chnl=0
-char id=146 x=485 y=17 width=4 height=4 xoffset=0 yoffset=4 xadvance=2 page=0 chnl=0
-char id=147 x=489 y=17 width=6 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=148 x=495 y=17 width=6 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=180 x=501 y=17 width=6 height=4 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
-char id=139 x=0 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=2 page=0 chnl=0
-char id=149 x=5 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0
-char id=153 x=10 y=30 width=7 height=6 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
-char id=155 x=17 y=30 width=5 height=6 xoffset=0 yoffset=9 xadvance=2 page=0 chnl=0
-char id=172 x=22 y=30 width=10 height=6 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
-char id=176 x=32 y=30 width=7 height=6 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=0
-char id=184 x=39 y=30 width=7 height=6 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0
-char id=156 x=46 y=30 width=12 height=8 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0
-char id=170 x=58 y=30 width=8 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=178 x=66 y=30 width=7 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=179 x=73 y=30 width=7 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=185 x=80 y=30 width=6 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=186 x=86 y=30 width=8 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
-char id=215 x=94 y=30 width=9 height=8 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=247 x=103 y=30 width=11 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
-char id=171 x=114 y=30 width=9 height=9 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
-char id=187 x=123 y=30 width=9 height=9 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
-char id=164 x=132 y=30 width=11 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
-char id=154 x=143 y=30 width=8 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
-char id=177 x=151 y=30 width=11 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
-char id=230 x=162 y=30 width=16 height=11 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
-char id=248 x=178 y=30 width=10 height=11 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=128 x=188 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=129 x=199 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=140 x=210 y=30 width=12 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
-char id=141 x=222 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=142 x=233 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=143 x=244 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=144 x=255 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=157 x=266 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=158 x=277 y=30 width=11 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
-char id=165 x=288 y=30 width=11 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=198 x=299 y=30 width=18 height=13 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0
-char id=208 x=317 y=30 width=13 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=222 x=330 y=30 width=11 height=13 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=137 x=341 y=30 width=18 height=14 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0
-char id=161 x=359 y=30 width=5 height=14 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
-char id=163 x=364 y=30 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=169 x=375 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=174 x=389 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
-char id=181 x=403 y=30 width=9 height=14 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=188 x=412 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=189 x=427 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=190 x=442 y=30 width=15 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
-char id=191 x=457 y=30 width=10 height=14 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=216 x=467 y=30 width=14 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
-char id=223 x=481 y=30 width=11 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0
-char id=240 x=492 y=30 width=11 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=134 x=503 y=30 width=7 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=135 x=0 y=45 width=7 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0
-char id=138 x=7 y=45 width=8 height=15 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0
-char id=195 x=15 y=45 width=13 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0
-char id=203 x=28 y=45 width=11 height=15 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0
-char id=207 x=39 y=45 width=7 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0
-char id=131 x=46 y=45 width=10 height=16 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0
-char id=192 x=56 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=193 x=69 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=194 x=82 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=200 x=95 y=45 width=11 height=16 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0
-char id=202 x=106 y=45 width=11 height=16 xoffset=1 yoffset=0 xadvance=10 page=0 chnl=0
-char id=204 x=117 y=45 width=6 height=16 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=205 x=123 y=45 width=5 height=16 xoffset=1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=206 x=128 y=45 width=9 height=16 xoffset=-1 yoffset=0 xadvance=4 page=0 chnl=0
-char id=213 x=137 y=45 width=14 height=16 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0
-char id=221 x=151 y=45 width=13 height=16 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
-char id=162 x=164 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=166 x=174 y=45 width=4 height=17 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
-char id=167 x=178 y=45 width=11 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=182 x=189 y=45 width=11 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=210 x=200 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=211 x=214 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=212 x=228 y=45 width=14 height=17 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0
-char id=217 x=242 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=218 x=254 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=219 x=266 y=45 width=12 height=17 xoffset=1 yoffset=0 xadvance=11 page=0 chnl=0
-char id=253 x=278 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
-char id=254 x=288 y=45 width=10 height=17 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
-char id=255 x=298 y=45 width=10 height=17 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.xnb
deleted file mode 100644
index aa43236a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/arial16.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.fnt
deleted file mode 100644
index 32f0c6cb..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.fnt
+++ /dev/null
@@ -1,210 +0,0 @@
-info face="W12(P)" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=37 base=28 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="bitmapFontChinese.png"
-chars count=204
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=28 xadvance=15 page=0 chnl=0
-char id=35937 x=0 y=0 width=33 height=36 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=26696 x=33 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=26071 x=68 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=24314 x=103 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=21338 x=138 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=23478 x=173 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=22530 x=208 y=0 width=34 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=33521 x=242 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=26159 x=277 y=0 width=34 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=23433 x=311 y=0 width=35 height=36 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=31532 x=346 y=0 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=33258 x=381 y=0 width=34 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20146 x=415 y=0 width=34 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=24182 x=449 y=0 width=34 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=23459 x=0 y=36 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=19996 x=35 y=36 width=34 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=24180 x=69 y=36 width=34 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=30633 x=103 y=36 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20026 x=138 y=36 width=33 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=27835 x=171 y=36 width=34 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=33402 x=205 y=36 width=33 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=31569 x=238 y=36 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20043 x=273 y=36 width=32 height=35 xoffset=1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26368 x=305 y=36 width=35 height=35 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=39302 x=340 y=36 width=37 height=35 xoffset=-2 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=24109 x=377 y=36 width=34 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20027 x=411 y=36 width=33 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=27611 x=444 y=36 width=34 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=38271 x=0 y=71 width=34 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20020 x=34 y=71 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=20140 x=69 y=71 width=33 height=35 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=39318 x=102 y=71 width=34 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=21326 x=136 y=71 width=35 height=35 xoffset=-1 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=24509 x=171 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22270 x=206 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=32418 x=241 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26143 x=276 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20116 x=311 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=21319 x=346 y=71 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26469 x=379 y=71 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=36215 x=412 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=31449 x=447 y=71 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20102 x=0 y=106 width=30 height=34 xoffset=1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=31435 x=30 y=106 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=25104 x=63 y=106 width=34 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=21578 x=97 y=106 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20005 x=131 y=106 width=32 height=34 xoffset=1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=24196 x=163 y=106 width=34 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=37324 x=197 y=106 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=36825 x=230 y=106 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22312 x=264 y=106 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=27901 x=299 y=106 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26085 x=334 y=106 width=31 height=34 xoffset=1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=30446 x=365 y=106 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=25152 x=399 y=106 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=19990 x=434 y=106 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=25919 x=469 y=106 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=27530 x=0 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=29305 x=35 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26415 x=70 y=140 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=26480 x=103 y=140 width=34 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20195 x=137 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=21476 x=172 y=140 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20250 x=206 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22823 x=241 y=140 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=30865 x=274 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=24565 x=309 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=38596 x=344 y=140 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=23545 x=379 y=140 width=34 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=34903 x=413 y=140 width=36 height=34 xoffset=-2 yoffset=0 xadvance=36 page=0 chnl=0
-char id=38754 x=449 y=140 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=31471 x=0 y=174 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22330 x=35 y=174 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=24191 x=69 y=174 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=30340 x=102 y=174 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=37117 x=137 y=174 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22269 x=172 y=174 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20849 x=205 y=174 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=27665 x=238 y=174 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20013 x=271 y=174 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=20110 x=305 y=174 width=34 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=27004 x=339 y=174 width=34 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22478 x=373 y=174 width=35 height=34 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22825 x=408 y=174 width=33 height=34 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=125 x=441 y=174 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=123 x=455 y=174 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=93 x=469 y=174 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=91 x=483 y=174 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=41 x=497 y=174 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=40 x=0 y=208 width=14 height=34 xoffset=-1 yoffset=1 xadvance=15 page=0 chnl=0
-char id=29616 x=14 y=208 width=35 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=26376 x=49 y=208 width=33 height=33 xoffset=0 yoffset=1 xadvance=36 page=0 chnl=0
-char id=22320 x=82 y=208 width=35 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=20029 x=117 y=208 width=33 height=33 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=22766 x=150 y=208 width=34 height=33 xoffset=0 yoffset=1 xadvance=36 page=0 chnl=0
-char id=29289 x=184 y=208 width=35 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=32426 x=219 y=208 width=35 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=21450 x=254 y=208 width=34 height=33 xoffset=0 yoffset=1 xadvance=36 page=0 chnl=0
-char id=24515 x=288 y=208 width=34 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=21271 x=322 y=208 width=33 height=33 xoffset=0 yoffset=0 xadvance=36 page=0 chnl=0
-char id=21644 x=355 y=208 width=35 height=33 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=20301 x=390 y=208 width=34 height=33 xoffset=-1 yoffset=0 xadvance=36 page=0 chnl=0
-char id=38376 x=424 y=208 width=33 height=33 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=92 x=457 y=208 width=14 height=33 xoffset=-2 yoffset=1 xadvance=13 page=0 chnl=0
-char id=47 x=471 y=208 width=14 height=33 xoffset=-2 yoffset=1 xadvance=13 page=0 chnl=0
-char id=24449 x=0 y=242 width=35 height=32 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=27492 x=35 y=242 width=35 height=32 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=20174 x=70 y=242 width=34 height=32 xoffset=-1 yoffset=1 xadvance=36 page=0 chnl=0
-char id=20986 x=104 y=242 width=33 height=32 xoffset=0 yoffset=1 xadvance=36 page=0 chnl=0
-char id=20197 x=137 y=242 width=34 height=32 xoffset=0 yoffset=2 xadvance=36 page=0 chnl=0
-char id=36 x=171 y=242 width=26 height=32 xoffset=0 yoffset=2 xadvance=29 page=0 chnl=0
-char id=106 x=197 y=242 width=20 height=32 xoffset=-2 yoffset=4 xadvance=20 page=0 chnl=0
-char id=20154 x=217 y=242 width=36 height=31 xoffset=-2 yoffset=1 xadvance=36 page=0 chnl=0
-char id=38 x=253 y=242 width=26 height=28 xoffset=-2 yoffset=4 xadvance=25 page=0 chnl=0
-char id=35 x=279 y=242 width=26 height=28 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0
-char id=37 x=305 y=242 width=34 height=28 xoffset=-2 yoffset=4 xadvance=33 page=0 chnl=0
-char id=64 x=339 y=242 width=27 height=28 xoffset=-2 yoffset=4 xadvance=27 page=0 chnl=0
-char id=124 x=366 y=242 width=11 height=28 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0
-char id=33 x=377 y=242 width=14 height=28 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=0
-char id=48 x=391 y=242 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=57 x=421 y=242 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=56 x=451 y=242 width=28 height=28 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=55 x=479 y=242 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=54 x=0 y=274 width=28 height=28 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=52 x=28 y=274 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=51 x=58 y=274 width=28 height=28 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=50 x=86 y=274 width=28 height=28 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=49 x=114 y=274 width=14 height=28 xoffset=6 yoffset=4 xadvance=29 page=0 chnl=0
-char id=116 x=128 y=274 width=25 height=28 xoffset=-2 yoffset=4 xadvance=24 page=0 chnl=0
-char id=107 x=153 y=274 width=24 height=28 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=0
-char id=105 x=177 y=274 width=14 height=28 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0
-char id=100 x=191 y=274 width=26 height=28 xoffset=-2 yoffset=4 xadvance=25 page=0 chnl=0
-char id=98 x=217 y=274 width=26 height=28 xoffset=-2 yoffset=4 xadvance=25 page=0 chnl=0
-char id=90 x=243 y=274 width=27 height=28 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=0
-char id=87 x=270 y=274 width=29 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=86 x=299 y=274 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=85 x=329 y=274 width=27 height=28 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=83 x=356 y=274 width=26 height=28 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=0
-char id=81 x=382 y=274 width=29 height=28 xoffset=-2 yoffset=4 xadvance=28 page=0 chnl=0
-char id=79 x=411 y=274 width=28 height=28 xoffset=-2 yoffset=4 xadvance=27 page=0 chnl=0
-char id=76 x=439 y=274 width=27 height=28 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=75 x=466 y=274 width=26 height=28 xoffset=-1 yoffset=4 xadvance=26 page=0 chnl=0
-char id=74 x=0 y=302 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=73 x=30 y=302 width=16 height=28 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=0
-char id=72 x=46 y=302 width=28 height=28 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=71 x=74 y=302 width=28 height=28 xoffset=-2 yoffset=4 xadvance=28 page=0 chnl=0
-char id=69 x=102 y=302 width=29 height=28 xoffset=-1 yoffset=4 xadvance=30 page=0 chnl=0
-char id=67 x=131 y=302 width=29 height=28 xoffset=-2 yoffset=4 xadvance=28 page=0 chnl=0
-char id=65 x=160 y=302 width=30 height=28 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=0
-char id=63 x=190 y=302 width=23 height=27 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=0
-char id=53 x=213 y=302 width=28 height=27 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=0
-char id=121 x=241 y=302 width=27 height=27 xoffset=-2 yoffset=9 xadvance=26 page=0 chnl=0
-char id=113 x=268 y=302 width=25 height=27 xoffset=-2 yoffset=9 xadvance=25 page=0 chnl=0
-char id=108 x=293 y=302 width=12 height=27 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0
-char id=104 x=305 y=302 width=27 height=27 xoffset=-2 yoffset=4 xadvance=26 page=0 chnl=0
-char id=103 x=332 y=302 width=26 height=27 xoffset=-2 yoffset=9 xadvance=25 page=0 chnl=0
-char id=102 x=358 y=302 width=16 height=27 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0
-char id=89 x=374 y=302 width=29 height=27 xoffset=-2 yoffset=4 xadvance=28 page=0 chnl=0
-char id=88 x=403 y=302 width=29 height=27 xoffset=-2 yoffset=4 xadvance=28 page=0 chnl=0
-char id=84 x=432 y=302 width=28 height=27 xoffset=-2 yoffset=4 xadvance=27 page=0 chnl=0
-char id=82 x=460 y=302 width=27 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=80 x=0 y=330 width=27 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=78 x=27 y=330 width=27 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=77 x=54 y=330 width=28 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=70 x=82 y=330 width=30 height=27 xoffset=-1 yoffset=4 xadvance=30 page=0 chnl=0
-char id=68 x=112 y=330 width=28 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=66 x=140 y=330 width=27 height=27 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=0
-char id=112 x=167 y=330 width=26 height=26 xoffset=-2 yoffset=9 xadvance=26 page=0 chnl=0
-char id=59 x=193 y=330 width=12 height=25 xoffset=-1 yoffset=9 xadvance=13 page=0 chnl=0
-char id=65306 x=205 y=330 width=13 height=24 xoffset=2 yoffset=8 xadvance=36 page=0 chnl=0
-char id=62 x=218 y=330 width=20 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0
-char id=60 x=238 y=330 width=20 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0
-char id=58 x=258 y=330 width=12 height=23 xoffset=-1 yoffset=9 xadvance=13 page=0 chnl=0
-char id=122 x=270 y=330 width=26 height=23 xoffset=-2 yoffset=9 xadvance=25 page=0 chnl=0
-char id=119 x=296 y=330 width=30 height=23 xoffset=-2 yoffset=9 xadvance=29 page=0 chnl=0
-char id=118 x=326 y=330 width=27 height=23 xoffset=-2 yoffset=9 xadvance=26 page=0 chnl=0
-char id=117 x=353 y=330 width=28 height=23 xoffset=-2 yoffset=9 xadvance=27 page=0 chnl=0
-char id=115 x=381 y=330 width=21 height=23 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=0
-char id=114 x=402 y=330 width=16 height=23 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=0
-char id=111 x=418 y=330 width=26 height=23 xoffset=-2 yoffset=9 xadvance=25 page=0 chnl=0
-char id=110 x=444 y=330 width=27 height=23 xoffset=-2 yoffset=9 xadvance=26 page=0 chnl=0
-char id=101 x=471 y=330 width=25 height=23 xoffset=-2 yoffset=9 xadvance=24 page=0 chnl=0
-char id=99 x=0 y=357 width=24 height=23 xoffset=-2 yoffset=9 xadvance=23 page=0 chnl=0
-char id=97 x=24 y=357 width=27 height=23 xoffset=-2 yoffset=9 xadvance=27 page=0 chnl=0
-char id=43 x=51 y=357 width=23 height=22 xoffset=-2 yoffset=9 xadvance=22 page=0 chnl=0
-char id=120 x=74 y=357 width=26 height=22 xoffset=-2 yoffset=9 xadvance=25 page=0 chnl=0
-char id=109 x=100 y=357 width=28 height=22 xoffset=-2 yoffset=9 xadvance=28 page=0 chnl=0
-char id=42 x=128 y=357 width=20 height=20 xoffset=-2 yoffset=4 xadvance=20 page=0 chnl=0
-char id=61 x=148 y=357 width=21 height=20 xoffset=-1 yoffset=10 xadvance=22 page=0 chnl=0
-char id=12289 x=169 y=357 width=17 height=16 xoffset=0 yoffset=16 xadvance=36 page=0 chnl=0
-char id=12290 x=186 y=357 width=15 height=16 xoffset=1 yoffset=16 xadvance=36 page=0 chnl=0
-char id=94 x=201 y=357 width=19 height=16 xoffset=-2 yoffset=4 xadvance=18 page=0 chnl=0
-char id=8221 x=220 y=357 width=21 height=15 xoffset=-2 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=8220 x=241 y=357 width=21 height=15 xoffset=14 yoffset=-1 xadvance=36 page=0 chnl=0
-char id=65292 x=262 y=357 width=13 height=15 xoffset=2 yoffset=20 xadvance=36 page=0 chnl=0
-char id=44 x=275 y=357 width=12 height=14 xoffset=-1 yoffset=20 xadvance=13 page=0 chnl=0
-char id=39 x=287 y=357 width=10 height=14 xoffset=-1 yoffset=4 xadvance=12 page=0 chnl=0
-char id=34 x=297 y=357 width=15 height=14 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=0
-char id=19968 x=312 y=357 width=34 height=13 xoffset=-1 yoffset=10 xadvance=36 page=0 chnl=0
-char id=46 x=346 y=357 width=12 height=13 xoffset=-1 yoffset=19 xadvance=13 page=0 chnl=0
-char id=126 x=358 y=357 width=16 height=12 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=95 x=374 y=357 width=22 height=11 xoffset=-2 yoffset=25 xadvance=20 page=0 chnl=0
-char id=45 x=396 y=357 width=14 height=11 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=0
-char id=96 x=410 y=357 width=12 height=11 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0
-kernings count=-1
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.xnb
deleted file mode 100644
index 3cde634d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontChinese.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.fnt
deleted file mode 100644
index 7190f52f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.fnt
+++ /dev/null
@@ -1,100 +0,0 @@
-info face="ArtistampMedium" size=48 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=52 base=26 scaleW=256 scaleH=512 pages=1 packed=0
-page id=0 file="bitmapFontTest.png"
-chars count=94
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=44 xadvance=14 page=0 chnl=0
-char id=94 x=0 y=0 width=51 height=49 xoffset=1 yoffset=3 xadvance=51 page=0 chnl=0
-char id=95 x=51 y=0 width=82 height=48 xoffset=2 yoffset=4 xadvance=84 page=0 chnl=0
-char id=41 x=133 y=0 width=14 height=46 xoffset=1 yoffset=3 xadvance=13 page=0 chnl=0
-char id=40 x=147 y=0 width=16 height=46 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0
-char id=126 x=163 y=0 width=30 height=42 xoffset=2 yoffset=6 xadvance=31 page=0 chnl=0
-char id=47 x=193 y=0 width=24 height=42 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0
-char id=37 x=217 y=0 width=32 height=38 xoffset=1 yoffset=10 xadvance=31 page=0 chnl=0
-char id=36 x=0 y=49 width=22 height=38 xoffset=-1 yoffset=10 xadvance=18 page=0 chnl=0
-char id=93 x=22 y=49 width=11 height=38 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0
-char id=91 x=33 y=49 width=12 height=38 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
-char id=84 x=45 y=49 width=29 height=38 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0
-char id=63 x=74 y=49 width=21 height=37 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0
-char id=122 x=95 y=49 width=24 height=37 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0
-char id=116 x=119 y=49 width=29 height=37 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0
-char id=113 x=148 y=49 width=29 height=37 xoffset=1 yoffset=9 xadvance=28 page=0 chnl=0
-char id=102 x=177 y=49 width=27 height=37 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0
-char id=101 x=204 y=49 width=27 height=37 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0
-char id=98 x=0 y=87 width=30 height=37 xoffset=1 yoffset=6 xadvance=28 page=0 chnl=0
-char id=87 x=30 y=87 width=44 height=37 xoffset=0 yoffset=8 xadvance=42 page=0 chnl=0
-char id=81 x=74 y=87 width=29 height=37 xoffset=1 yoffset=8 xadvance=29 page=0 chnl=0
-char id=74 x=103 y=87 width=25 height=37 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0
-char id=70 x=128 y=87 width=27 height=37 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0
-char id=69 x=155 y=87 width=28 height=37 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0
-char id=66 x=183 y=87 width=30 height=37 xoffset=1 yoffset=7 xadvance=29 page=0 chnl=0
-char id=65 x=213 y=87 width=30 height=37 xoffset=0 yoffset=8 xadvance=29 page=0 chnl=0
-char id=38 x=0 y=124 width=32 height=36 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0
-char id=64 x=32 y=124 width=40 height=36 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0
-char id=57 x=72 y=124 width=21 height=36 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0
-char id=56 x=93 y=124 width=21 height=36 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0
-char id=55 x=114 y=124 width=21 height=36 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0
-char id=54 x=135 y=124 width=21 height=36 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0
-char id=53 x=156 y=124 width=21 height=36 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0
-char id=52 x=177 y=124 width=21 height=36 xoffset=1 yoffset=7 xadvance=21 page=0 chnl=0
-char id=51 x=198 y=124 width=21 height=36 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0
-char id=50 x=219 y=124 width=22 height=36 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0
-char id=120 x=0 y=160 width=31 height=36 xoffset=0 yoffset=8 xadvance=28 page=0 chnl=0
-char id=119 x=31 y=160 width=46 height=36 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0
-char id=117 x=77 y=160 width=29 height=36 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0
-char id=115 x=106 y=160 width=26 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0
-char id=114 x=132 y=160 width=29 height=36 xoffset=1 yoffset=9 xadvance=28 page=0 chnl=0
-char id=110 x=161 y=160 width=29 height=36 xoffset=1 yoffset=9 xadvance=28 page=0 chnl=0
-char id=109 x=190 y=160 width=38 height=36 xoffset=1 yoffset=9 xadvance=37 page=0 chnl=0
-char id=108 x=0 y=196 width=29 height=36 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0
-char id=106 x=29 y=196 width=24 height=36 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0
-char id=104 x=53 y=196 width=31 height=36 xoffset=1 yoffset=9 xadvance=30 page=0 chnl=0
-char id=100 x=84 y=196 width=29 height=36 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0
-char id=99 x=113 y=196 width=27 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0
-char id=97 x=140 y=196 width=31 height=36 xoffset=0 yoffset=8 xadvance=29 page=0 chnl=0
-char id=90 x=171 y=196 width=25 height=36 xoffset=1 yoffset=8 xadvance=24 page=0 chnl=0
-char id=89 x=196 y=196 width=30 height=36 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0
-char id=88 x=0 y=232 width=31 height=36 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0
-char id=85 x=31 y=232 width=29 height=36 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0
-char id=83 x=60 y=232 width=26 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0
-char id=82 x=86 y=232 width=30 height=36 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0
-char id=79 x=116 y=232 width=29 height=36 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0
-char id=78 x=145 y=232 width=30 height=36 xoffset=1 yoffset=10 xadvance=29 page=0 chnl=0
-char id=77 x=175 y=232 width=39 height=36 xoffset=1 yoffset=10 xadvance=38 page=0 chnl=0
-char id=76 x=214 y=232 width=29 height=36 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0
-char id=75 x=0 y=268 width=29 height=36 xoffset=1 yoffset=8 xadvance=27 page=0 chnl=0
-char id=72 x=29 y=268 width=30 height=36 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0
-char id=71 x=59 y=268 width=30 height=36 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0
-char id=68 x=89 y=268 width=29 height=36 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0
-char id=67 x=118 y=268 width=27 height=36 xoffset=1 yoffset=9 xadvance=25 page=0 chnl=0
-char id=92 x=145 y=268 width=37 height=35 xoffset=1 yoffset=9 xadvance=37 page=0 chnl=0
-char id=33 x=182 y=268 width=9 height=35 xoffset=2 yoffset=10 xadvance=10 page=0 chnl=0
-char id=48 x=191 y=268 width=21 height=35 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0
-char id=49 x=212 y=268 width=14 height=35 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0
-char id=121 x=0 y=304 width=30 height=35 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0
-char id=118 x=30 y=304 width=29 height=35 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0
-char id=112 x=59 y=304 width=26 height=35 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0
-char id=111 x=85 y=304 width=29 height=35 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0
-char id=107 x=114 y=304 width=29 height=35 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0
-char id=105 x=143 y=304 width=15 height=35 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0
-char id=103 x=158 y=304 width=30 height=35 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0
-char id=86 x=188 y=304 width=29 height=35 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0
-char id=80 x=217 y=304 width=26 height=35 xoffset=1 yoffset=11 xadvance=24 page=0 chnl=0
-char id=73 x=0 y=339 width=14 height=35 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
-char id=35 x=14 y=339 width=27 height=34 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0
-char id=59 x=41 y=339 width=10 height=32 xoffset=2 yoffset=19 xadvance=10 page=0 chnl=0
-char id=124 x=51 y=339 width=17 height=28 xoffset=1 yoffset=14 xadvance=16 page=0 chnl=0
-char id=125 x=68 y=339 width=17 height=28 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0
-char id=123 x=85 y=339 width=17 height=28 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0
-char id=42 x=102 y=339 width=29 height=27 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0
-char id=60 x=131 y=339 width=66 height=26 xoffset=1 yoffset=17 xadvance=65 page=0 chnl=0
-char id=58 x=197 y=339 width=9 height=26 xoffset=2 yoffset=19 xadvance=10 page=0 chnl=0
-char id=62 x=0 y=374 width=66 height=25 xoffset=1 yoffset=17 xadvance=66 page=0 chnl=0
-char id=43 x=66 y=374 width=22 height=20 xoffset=0 yoffset=15 xadvance=19 page=0 chnl=0
-char id=44 x=88 y=374 width=8 height=16 xoffset=2 yoffset=34 xadvance=9 page=0 chnl=0
-char id=34 x=96 y=374 width=16 height=15 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
-char id=39 x=112 y=374 width=8 height=13 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0
-char id=61 x=120 y=374 width=15 height=10 xoffset=2 yoffset=22 xadvance=16 page=0 chnl=0
-char id=46 x=135 y=374 width=10 height=9 xoffset=2 yoffset=35 xadvance=10 page=0 chnl=0
-char id=96 x=145 y=374 width=12 height=8 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0
-char id=45 x=157 y=374 width=15 height=5 xoffset=2 yoffset=23 xadvance=16 page=0 chnl=0
-kernings count=-1
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.xnb
deleted file mode 100644
index d6eaf115..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.fnt
deleted file mode 100644
index d0814a00..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.fnt
+++ /dev/null
@@ -1,188 +0,0 @@
-info face="Ardour3DGM" size=96 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=104 base=26 scaleW=1024 scaleH=512 pages=1 packed=0
-page id=0 file="bitmapFontTest2.png"
-chars count=94
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=75 xadvance=30 page=0 chnl=0
-char id=125 x=0 y=0 width=34 height=90 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0
-char id=123 x=34 y=0 width=34 height=90 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0
-char id=93 x=68 y=0 width=35 height=90 xoffset=1 yoffset=10 xadvance=31 page=0 chnl=0
-char id=91 x=103 y=0 width=35 height=90 xoffset=1 yoffset=10 xadvance=31 page=0 chnl=0
-char id=41 x=138 y=0 width=28 height=90 xoffset=1 yoffset=10 xadvance=24 page=0 chnl=0
-char id=40 x=166 y=0 width=26 height=90 xoffset=1 yoffset=10 xadvance=24 page=0 chnl=0
-char id=124 x=192 y=0 width=21 height=89 xoffset=1 yoffset=13 xadvance=17 page=0 chnl=0
-char id=106 x=213 y=0 width=37 height=79 xoffset=-7 yoffset=21 xadvance=18 page=0 chnl=0
-char id=81 x=250 y=0 width=42 height=77 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=37 x=292 y=0 width=79 height=70 xoffset=1 yoffset=14 xadvance=75 page=0 chnl=0
-char id=92 x=371 y=0 width=57 height=70 xoffset=1 yoffset=14 xadvance=55 page=0 chnl=0
-char id=47 x=428 y=0 width=59 height=70 xoffset=1 yoffset=14 xadvance=55 page=0 chnl=0
-char id=52 x=487 y=0 width=49 height=70 xoffset=1 yoffset=13 xadvance=45 page=0 chnl=0
-char id=77 x=536 y=0 width=63 height=70 xoffset=1 yoffset=13 xadvance=59 page=0 chnl=0
-char id=55 x=599 y=0 width=55 height=69 xoffset=1 yoffset=15 xadvance=51 page=0 chnl=0
-char id=121 x=654 y=0 width=40 height=69 xoffset=1 yoffset=31 xadvance=38 page=0 chnl=0
-char id=113 x=694 y=0 width=41 height=69 xoffset=1 yoffset=32 xadvance=37 page=0 chnl=0
-char id=112 x=735 y=0 width=41 height=69 xoffset=1 yoffset=32 xadvance=37 page=0 chnl=0
-char id=108 x=776 y=0 width=21 height=69 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0
-char id=107 x=797 y=0 width=41 height=69 xoffset=1 yoffset=14 xadvance=37 page=0 chnl=0
-char id=104 x=838 y=0 width=41 height=69 xoffset=1 yoffset=14 xadvance=37 page=0 chnl=0
-char id=89 x=879 y=0 width=42 height=69 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=88 x=921 y=0 width=42 height=69 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=78 x=963 y=0 width=43 height=69 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0
-char id=75 x=0 y=90 width=43 height=69 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0
-char id=72 x=43 y=90 width=42 height=69 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=49 x=85 y=90 width=33 height=68 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0
-char id=103 x=118 y=90 width=40 height=68 xoffset=1 yoffset=32 xadvance=38 page=0 chnl=0
-char id=102 x=158 y=90 width=33 height=68 xoffset=1 yoffset=15 xadvance=29 page=0 chnl=0
-char id=100 x=191 y=90 width=41 height=68 xoffset=1 yoffset=14 xadvance=37 page=0 chnl=0
-char id=98 x=232 y=90 width=41 height=68 xoffset=1 yoffset=14 xadvance=37 page=0 chnl=0
-char id=87 x=273 y=90 width=62 height=68 xoffset=1 yoffset=14 xadvance=58 page=0 chnl=0
-char id=86 x=335 y=90 width=40 height=68 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=85 x=375 y=90 width=42 height=68 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=84 x=417 y=90 width=56 height=68 xoffset=1 yoffset=15 xadvance=52 page=0 chnl=0
-char id=82 x=473 y=90 width=42 height=68 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=80 x=515 y=90 width=42 height=68 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=76 x=557 y=90 width=43 height=68 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0
-char id=74 x=600 y=90 width=42 height=68 xoffset=1 yoffset=14 xadvance=38 page=0 chnl=0
-char id=70 x=642 y=90 width=41 height=68 xoffset=1 yoffset=15 xadvance=37 page=0 chnl=0
-char id=65 x=683 y=90 width=41 height=68 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=38 x=724 y=90 width=45 height=67 xoffset=1 yoffset=15 xadvance=41 page=0 chnl=0
-char id=36 x=769 y=90 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=63 x=811 y=90 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=48 x=853 y=90 width=45 height=67 xoffset=1 yoffset=15 xadvance=43 page=0 chnl=0
-char id=57 x=898 y=90 width=40 height=67 xoffset=2 yoffset=15 xadvance=37 page=0 chnl=0
-char id=56 x=938 y=90 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=54 x=980 y=90 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=53 x=0 y=159 width=43 height=67 xoffset=1 yoffset=15 xadvance=39 page=0 chnl=0
-char id=51 x=43 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=50 x=85 y=159 width=43 height=67 xoffset=1 yoffset=15 xadvance=39 page=0 chnl=0
-char id=90 x=128 y=159 width=45 height=67 xoffset=1 yoffset=15 xadvance=43 page=0 chnl=0
-char id=83 x=173 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=79 x=215 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=73 x=257 y=159 width=30 height=67 xoffset=1 yoffset=15 xadvance=26 page=0 chnl=0
-char id=71 x=287 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=69 x=329 y=159 width=41 height=67 xoffset=1 yoffset=15 xadvance=37 page=0 chnl=0
-char id=68 x=370 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=67 x=412 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=66 x=454 y=159 width=42 height=67 xoffset=1 yoffset=15 xadvance=38 page=0 chnl=0
-char id=33 x=496 y=159 width=22 height=66 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0
-char id=64 x=518 y=159 width=68 height=62 xoffset=1 yoffset=19 xadvance=66 page=0 chnl=0
-char id=116 x=586 y=159 width=31 height=62 xoffset=1 yoffset=21 xadvance=27 page=0 chnl=0
-char id=105 x=617 y=159 width=22 height=62 xoffset=1 yoffset=21 xadvance=18 page=0 chnl=0
-char id=59 x=639 y=159 width=22 height=57 xoffset=1 yoffset=34 xadvance=18 page=0 chnl=0
-char id=117 x=661 y=159 width=40 height=52 xoffset=1 yoffset=31 xadvance=38 page=0 chnl=0
-char id=110 x=701 y=159 width=40 height=52 xoffset=1 yoffset=32 xadvance=38 page=0 chnl=0
-char id=109 x=741 y=159 width=60 height=52 xoffset=1 yoffset=32 xadvance=58 page=0 chnl=0
-char id=120 x=801 y=159 width=40 height=51 xoffset=1 yoffset=32 xadvance=38 page=0 chnl=0
-char id=114 x=841 y=159 width=41 height=51 xoffset=1 yoffset=32 xadvance=37 page=0 chnl=0
-char id=97 x=882 y=159 width=41 height=51 xoffset=1 yoffset=32 xadvance=37 page=0 chnl=0
-char id=35 x=923 y=159 width=56 height=50 xoffset=1 yoffset=24 xadvance=52 page=0 chnl=0
-char id=119 x=0 y=226 width=62 height=50 xoffset=1 yoffset=32 xadvance=58 page=0 chnl=0
-char id=118 x=62 y=226 width=40 height=50 xoffset=1 yoffset=32 xadvance=38 page=0 chnl=0
-char id=122 x=102 y=226 width=43 height=49 xoffset=1 yoffset=33 xadvance=39 page=0 chnl=0
-char id=115 x=145 y=226 width=40 height=49 xoffset=1 yoffset=33 xadvance=36 page=0 chnl=0
-char id=111 x=185 y=226 width=40 height=49 xoffset=1 yoffset=33 xadvance=38 page=0 chnl=0
-char id=101 x=225 y=226 width=40 height=49 xoffset=1 yoffset=33 xadvance=38 page=0 chnl=0
-char id=99 x=265 y=226 width=40 height=49 xoffset=1 yoffset=33 xadvance=38 page=0 chnl=0
-char id=58 x=305 y=226 width=22 height=48 xoffset=1 yoffset=34 xadvance=18 page=0 chnl=0
-char id=42 x=327 y=226 width=32 height=34 xoffset=1 yoffset=16 xadvance=30 page=0 chnl=0
-char id=62 x=359 y=226 width=39 height=34 xoffset=1 yoffset=40 xadvance=35 page=0 chnl=0
-char id=60 x=398 y=226 width=38 height=34 xoffset=1 yoffset=40 xadvance=34 page=0 chnl=0
-char id=43 x=436 y=226 width=43 height=32 xoffset=1 yoffset=41 xadvance=39 page=0 chnl=0
-char id=44 x=479 y=226 width=22 height=25 xoffset=1 yoffset=66 xadvance=18 page=0 chnl=0
-char id=39 x=501 y=226 width=17 height=24 xoffset=1 yoffset=15 xadvance=15 page=0 chnl=0
-char id=96 x=518 y=226 width=24 height=24 xoffset=1 yoffset=15 xadvance=22 page=0 chnl=0
-char id=34 x=542 y=226 width=33 height=24 xoffset=1 yoffset=15 xadvance=29 page=0 chnl=0
-char id=94 x=575 y=226 width=38 height=23 xoffset=1 yoffset=16 xadvance=34 page=0 chnl=0
-char id=126 x=613 y=226 width=47 height=22 xoffset=1 yoffset=25 xadvance=43 page=0 chnl=0
-char id=61 x=660 y=226 width=44 height=22 xoffset=1 yoffset=47 xadvance=40 page=0 chnl=0
-char id=46 x=704 y=226 width=22 height=16 xoffset=1 yoffset=66 xadvance=18 page=0 chnl=0
-char id=45 x=726 y=226 width=37 height=13 xoffset=1 yoffset=51 xadvance=33 page=0 chnl=0
-char id=95 x=763 y=226 width=46 height=12 xoffset=1 yoffset=85 xadvance=42 page=0 chnl=0
-kernings count=87
-kerning first=121 second=44 amount=-7
-kerning first=121 second=46 amount=-7
-kerning first=89 second=44 amount=-12
-kerning first=89 second=45 amount=-9
-kerning first=89 second=46 amount=-12
-kerning first=89 second=58 amount=-5
-kerning first=89 second=59 amount=-6
-kerning first=89 second=65 amount=-7
-kerning first=89 second=97 amount=-7
-kerning first=89 second=101 amount=-9
-kerning first=89 second=105 amount=-3
-kerning first=89 second=111 amount=-9
-kerning first=89 second=112 amount=-7
-kerning first=89 second=113 amount=-9
-kerning first=89 second=117 amount=-5
-kerning first=89 second=118 amount=-5
-kerning first=49 second=49 amount=-7
-kerning first=102 second=102 amount=-2
-kerning first=87 second=44 amount=-5
-kerning first=87 second=45 amount=-2
-kerning first=87 second=46 amount=-5
-kerning first=87 second=58 amount=-2
-kerning first=87 second=59 amount=-2
-kerning first=87 second=65 amount=-3
-kerning first=87 second=97 amount=-3
-kerning first=87 second=101 amount=-2
-kerning first=87 second=111 amount=-2
-kerning first=87 second=114 amount=-2
-kerning first=87 second=117 amount=-2
-kerning first=87 second=121 amount=-1
-kerning first=86 second=44 amount=-9
-kerning first=86 second=45 amount=-5
-kerning first=86 second=46 amount=-9
-kerning first=86 second=58 amount=-3
-kerning first=86 second=59 amount=-3
-kerning first=86 second=65 amount=-7
-kerning first=86 second=97 amount=-7
-kerning first=86 second=101 amount=-5
-kerning first=86 second=105 amount=-2
-kerning first=86 second=111 amount=-5
-kerning first=86 second=114 amount=-3
-kerning first=86 second=117 amount=-3
-kerning first=86 second=121 amount=-3
-kerning first=84 second=44 amount=-10
-kerning first=84 second=45 amount=-5
-kerning first=84 second=46 amount=-10
-kerning first=84 second=58 amount=-10
-kerning first=84 second=59 amount=-10
-kerning first=84 second=65 amount=-7
-kerning first=84 second=79 amount=-2
-kerning first=84 second=97 amount=-10
-kerning first=84 second=99 amount=-10
-kerning first=84 second=101 amount=-10
-kerning first=84 second=105 amount=-3
-kerning first=84 second=111 amount=-10
-kerning first=84 second=114 amount=-3
-kerning first=84 second=115 amount=-10
-kerning first=84 second=117 amount=-3
-kerning first=84 second=119 amount=-5
-kerning first=84 second=121 amount=-5
-kerning first=82 second=84 amount=-2
-kerning first=82 second=86 amount=-2
-kerning first=82 second=87 amount=-2
-kerning first=82 second=89 amount=-2
-kerning first=80 second=44 amount=-12
-kerning first=80 second=46 amount=-12
-kerning first=80 second=65 amount=-7
-kerning first=76 second=84 amount=-7
-kerning first=76 second=86 amount=-7
-kerning first=76 second=87 amount=-7
-kerning first=76 second=89 amount=-7
-kerning first=76 second=121 amount=-3
-kerning first=70 second=44 amount=-10
-kerning first=70 second=46 amount=-10
-kerning first=70 second=65 amount=-5
-kerning first=65 second=84 amount=-7
-kerning first=65 second=86 amount=-7
-kerning first=65 second=87 amount=-3
-kerning first=65 second=89 amount=-7
-kerning first=65 second=118 amount=-2
-kerning first=65 second=119 amount=-2
-kerning first=65 second=121 amount=-2
-kerning first=114 second=44 amount=-5
-kerning first=114 second=46 amount=-5
-kerning first=119 second=44 amount=-5
-kerning first=119 second=46 amount=-5
-kerning first=118 second=44 amount=-7
-kerning first=118 second=46 amount=-7
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.xnb
deleted file mode 100644
index bf673524..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.fnt
deleted file mode 100644
index 53c9bc13..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.fnt
+++ /dev/null
@@ -1,102 +0,0 @@
-info face="ActionJackson" size=28 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=30 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="bitmapFontTest3.png"
-chars count=94
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=24 xadvance=23 page=0 chnl=0
-char id=114 x=0 y=0 width=16 height=25 xoffset=0 yoffset=1 xadvance=14 page=0 chnl=0
-char id=82 x=16 y=0 width=16 height=25 xoffset=0 yoffset=1 xadvance=14 page=0 chnl=0
-char id=62 x=32 y=0 width=9 height=24 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
-char id=60 x=41 y=0 width=10 height=24 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=125 x=51 y=0 width=9 height=24 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
-char id=123 x=60 y=0 width=10 height=24 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=93 x=70 y=0 width=9 height=24 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
-char id=91 x=79 y=0 width=10 height=24 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=41 x=89 y=0 width=9 height=24 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
-char id=40 x=98 y=0 width=10 height=24 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
-char id=56 x=108 y=0 width=17 height=24 xoffset=0 yoffset=1 xadvance=15 page=0 chnl=0
-char id=105 x=125 y=0 width=19 height=24 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0
-char id=101 x=144 y=0 width=18 height=24 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=0
-char id=73 x=162 y=0 width=19 height=24 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0
-char id=69 x=181 y=0 width=18 height=24 xoffset=0 yoffset=1 xadvance=16 page=0 chnl=0
-char id=59 x=199 y=0 width=11 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
-char id=63 x=210 y=0 width=16 height=23 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0
-char id=33 x=226 y=0 width=8 height=23 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0
-char id=48 x=234 y=0 width=18 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=57 x=252 y=0 width=16 height=23 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0
-char id=54 x=268 y=0 width=17 height=23 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=53 x=285 y=0 width=19 height=23 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0
-char id=52 x=304 y=0 width=18 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=51 x=322 y=0 width=16 height=23 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0
-char id=49 x=338 y=0 width=16 height=23 xoffset=1 yoffset=2 xadvance=15 page=0 chnl=0
-char id=122 x=354 y=0 width=19 height=23 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0
-char id=121 x=373 y=0 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=118 x=393 y=0 width=21 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=116 x=414 y=0 width=21 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=113 x=435 y=0 width=17 height=23 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=112 x=452 y=0 width=17 height=23 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=110 x=469 y=0 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=109 x=0 y=25 width=25 height=23 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0
-char id=108 x=25 y=25 width=21 height=23 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0
-char id=107 x=46 y=25 width=19 height=23 xoffset=1 yoffset=2 xadvance=18 page=0 chnl=0
-char id=106 x=65 y=25 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=100 x=85 y=25 width=19 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=98 x=104 y=25 width=18 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=97 x=122 y=25 width=21 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=90 x=143 y=25 width=19 height=23 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0
-char id=89 x=162 y=25 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=86 x=182 y=25 width=21 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=84 x=203 y=25 width=21 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=81 x=224 y=25 width=17 height=23 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=80 x=241 y=25 width=17 height=23 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=78 x=258 y=25 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=77 x=278 y=25 width=25 height=23 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0
-char id=76 x=303 y=25 width=21 height=23 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0
-char id=75 x=324 y=25 width=19 height=23 xoffset=1 yoffset=2 xadvance=18 page=0 chnl=0
-char id=74 x=343 y=25 width=20 height=23 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0
-char id=68 x=363 y=25 width=19 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=66 x=382 y=25 width=18 height=23 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=65 x=400 y=25 width=20 height=23 xoffset=0 yoffset=2 xadvance=19 page=0 chnl=0
-char id=55 x=420 y=25 width=18 height=22 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0
-char id=50 x=438 y=25 width=18 height=22 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=0
-char id=120 x=456 y=25 width=23 height=22 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0
-char id=117 x=479 y=25 width=22 height=22 xoffset=0 yoffset=2 xadvance=20 page=0 chnl=0
-char id=115 x=0 y=48 width=16 height=22 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0
-char id=111 x=16 y=48 width=17 height=22 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=102 x=33 y=48 width=20 height=22 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0
-char id=88 x=53 y=48 width=23 height=22 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0
-char id=85 x=76 y=48 width=22 height=22 xoffset=0 yoffset=2 xadvance=20 page=0 chnl=0
-char id=83 x=98 y=48 width=16 height=22 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0
-char id=79 x=114 y=48 width=17 height=22 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=70 x=131 y=48 width=20 height=22 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0
-char id=92 x=151 y=48 width=12 height=21 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
-char id=119 x=163 y=48 width=24 height=21 xoffset=0 yoffset=2 xadvance=21 page=0 chnl=0
-char id=104 x=187 y=48 width=20 height=21 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0
-char id=103 x=207 y=48 width=22 height=21 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0
-char id=87 x=229 y=48 width=24 height=21 xoffset=0 yoffset=2 xadvance=21 page=0 chnl=0
-char id=72 x=253 y=48 width=20 height=21 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0
-char id=71 x=273 y=48 width=22 height=21 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0
-char id=47 x=295 y=48 width=11 height=20 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=124 x=306 y=48 width=11 height=20 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=99 x=317 y=48 width=18 height=20 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=67 x=335 y=48 width=18 height=20 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0
-char id=126 x=353 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=38 x=370 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=35 x=387 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=37 x=404 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=36 x=421 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=94 x=438 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=64 x=455 y=48 width=17 height=18 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0
-char id=43 x=472 y=48 width=17 height=17 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0
-char id=58 x=489 y=48 width=9 height=17 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0
-char id=61 x=0 y=70 width=17 height=14 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0
-char id=44 x=17 y=70 width=11 height=14 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0
-char id=39 x=28 y=70 width=11 height=14 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
-char id=96 x=39 y=70 width=10 height=13 xoffset=1 yoffset=0 xadvance=9 page=0 chnl=0
-char id=34 x=49 y=70 width=20 height=13 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0
-char id=95 x=69 y=70 width=16 height=8 xoffset=1 yoffset=17 xadvance=16 page=0 chnl=0
-char id=45 x=85 y=70 width=17 height=8 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0
-char id=42 x=102 y=70 width=8 height=7 xoffset=1 yoffset=3 xadvance=6 page=0 chnl=0
-char id=46 x=110 y=70 width=9 height=7 xoffset=0 yoffset=18 xadvance=7 page=0 chnl=0
-kernings count=1
-kerning first=79 second=66 amount=-1
-kerning first=79 second=89 amount=-3
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.xnb
deleted file mode 100644
index c634832a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.fnt
deleted file mode 100644
index b98b4699..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.fnt
+++ /dev/null
@@ -1,99 +0,0 @@
-info face="Cracked" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=37 base=26 scaleW=256 scaleH=256 pages=1 packed=0
-page id=0 file="bitmapFontTest4.png"
-chars count=94
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=27 xadvance=9 page=0 chnl=0
-char id=40 x=0 y=0 width=14 height=35 xoffset=-2 yoffset=-2 xadvance=11 page=0 chnl=0
-char id=123 x=14 y=0 width=19 height=34 xoffset=-3 yoffset=-1 xadvance=10 page=0 chnl=0
-char id=93 x=33 y=0 width=16 height=34 xoffset=-4 yoffset=-1 xadvance=10 page=0 chnl=0
-char id=41 x=49 y=0 width=13 height=34 xoffset=-2 yoffset=-2 xadvance=11 page=0 chnl=0
-char id=125 x=62 y=0 width=19 height=33 xoffset=-4 yoffset=0 xadvance=10 page=0 chnl=0
-char id=91 x=81 y=0 width=14 height=33 xoffset=-1 yoffset=0 xadvance=10 page=0 chnl=0
-char id=106 x=95 y=0 width=12 height=32 xoffset=-2 yoffset=4 xadvance=10 page=0 chnl=0
-char id=36 x=107 y=0 width=17 height=31 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=0
-char id=81 x=124 y=0 width=19 height=31 xoffset=-2 yoffset=3 xadvance=17 page=0 chnl=0
-char id=65 x=143 y=0 width=18 height=31 xoffset=-2 yoffset=3 xadvance=17 page=0 chnl=0
-char id=38 x=161 y=0 width=20 height=30 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=0
-char id=92 x=181 y=0 width=15 height=30 xoffset=-2 yoffset=2 xadvance=14 page=0 chnl=0
-char id=47 x=196 y=0 width=15 height=30 xoffset=-1 yoffset=2 xadvance=14 page=0 chnl=0
-char id=55 x=211 y=0 width=16 height=30 xoffset=-2 yoffset=2 xadvance=15 page=0 chnl=0
-char id=107 x=227 y=0 width=17 height=30 xoffset=-2 yoffset=2 xadvance=14 page=0 chnl=0
-char id=90 x=0 y=35 width=17 height=30 xoffset=-2 yoffset=2 xadvance=15 page=0 chnl=0
-char id=74 x=17 y=35 width=14 height=30 xoffset=-2 yoffset=1 xadvance=12 page=0 chnl=0
-char id=71 x=31 y=35 width=18 height=30 xoffset=-2 yoffset=3 xadvance=16 page=0 chnl=0
-char id=33 x=49 y=35 width=11 height=29 xoffset=-1 yoffset=2 xadvance=10 page=0 chnl=0
-char id=56 x=60 y=35 width=17 height=29 xoffset=-2 yoffset=3 xadvance=15 page=0 chnl=0
-char id=49 x=77 y=35 width=16 height=29 xoffset=-2 yoffset=2 xadvance=14 page=0 chnl=0
-char id=116 x=93 y=35 width=15 height=29 xoffset=-2 yoffset=4 xadvance=13 page=0 chnl=0
-char id=108 x=108 y=35 width=11 height=29 xoffset=-2 yoffset=2 xadvance=9 page=0 chnl=0
-char id=86 x=119 y=35 width=18 height=29 xoffset=-2 yoffset=3 xadvance=16 page=0 chnl=0
-char id=70 x=137 y=35 width=16 height=29 xoffset=-2 yoffset=3 xadvance=14 page=0 chnl=0
-char id=68 x=153 y=35 width=18 height=29 xoffset=-2 yoffset=2 xadvance=16 page=0 chnl=0
-char id=37 x=171 y=35 width=19 height=28 xoffset=-1 yoffset=3 xadvance=19 page=0 chnl=0
-char id=63 x=190 y=35 width=15 height=28 xoffset=-2 yoffset=3 xadvance=13 page=0 chnl=0
-char id=48 x=205 y=35 width=17 height=28 xoffset=-2 yoffset=3 xadvance=15 page=0 chnl=0
-char id=57 x=222 y=35 width=17 height=28 xoffset=-2 yoffset=3 xadvance=15 page=0 chnl=0
-char id=54 x=0 y=65 width=17 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=53 x=17 y=65 width=17 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=113 x=34 y=65 width=17 height=28 xoffset=-2 yoffset=7 xadvance=14 page=0 chnl=0
-char id=104 x=51 y=65 width=17 height=28 xoffset=-2 yoffset=3 xadvance=15 page=0 chnl=0
-char id=103 x=68 y=65 width=19 height=28 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0
-char id=100 x=87 y=65 width=17 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=88 x=104 y=65 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0
-char id=87 x=123 y=65 width=25 height=28 xoffset=-2 yoffset=4 xadvance=23 page=0 chnl=0
-char id=82 x=148 y=65 width=17 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=79 x=165 y=65 width=19 height=28 xoffset=-2 yoffset=4 xadvance=17 page=0 chnl=0
-char id=76 x=184 y=65 width=16 height=28 xoffset=-2 yoffset=3 xadvance=14 page=0 chnl=0
-char id=75 x=200 y=65 width=18 height=28 xoffset=-2 yoffset=3 xadvance=16 page=0 chnl=0
-char id=72 x=218 y=65 width=18 height=28 xoffset=-2 yoffset=3 xadvance=16 page=0 chnl=0
-char id=69 x=236 y=65 width=17 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=124 x=0 y=93 width=10 height=27 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0
-char id=59 x=10 y=93 width=13 height=27 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0
-char id=52 x=23 y=93 width=18 height=27 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=51 x=41 y=93 width=18 height=27 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=50 x=59 y=93 width=18 height=27 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=0
-char id=121 x=77 y=93 width=18 height=27 xoffset=-3 yoffset=8 xadvance=14 page=0 chnl=0
-char id=112 x=95 y=93 width=18 height=27 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0
-char id=105 x=113 y=93 width=11 height=27 xoffset=-2 yoffset=4 xadvance=9 page=0 chnl=0
-char id=102 x=124 y=93 width=15 height=27 xoffset=-2 yoffset=4 xadvance=13 page=0 chnl=0
-char id=98 x=139 y=93 width=18 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0
-char id=85 x=157 y=93 width=20 height=27 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=0
-char id=84 x=177 y=93 width=21 height=27 xoffset=-2 yoffset=5 xadvance=19 page=0 chnl=0
-char id=83 x=198 y=93 width=18 height=27 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=80 x=216 y=93 width=17 height=27 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0
-char id=78 x=233 y=93 width=18 height=27 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0
-char id=77 x=0 y=120 width=22 height=27 xoffset=-2 yoffset=5 xadvance=19 page=0 chnl=0
-char id=73 x=22 y=120 width=11 height=27 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0
-char id=66 x=33 y=120 width=19 height=27 xoffset=-2 yoffset=4 xadvance=17 page=0 chnl=0
-char id=35 x=52 y=120 width=18 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0
-char id=89 x=70 y=120 width=18 height=26 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0
-char id=67 x=88 y=120 width=19 height=26 xoffset=-2 yoffset=4 xadvance=17 page=0 chnl=0
-char id=58 x=107 y=120 width=11 height=24 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0
-char id=117 x=118 y=120 width=17 height=24 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0
-char id=111 x=135 y=120 width=17 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0
-char id=119 x=152 y=120 width=20 height=23 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0
-char id=114 x=172 y=120 width=15 height=23 xoffset=-2 yoffset=8 xadvance=12 page=0 chnl=0
-char id=99 x=187 y=120 width=17 height=23 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0
-char id=97 x=204 y=120 width=17 height=23 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0
-char id=122 x=221 y=120 width=17 height=22 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0
-char id=118 x=238 y=120 width=16 height=22 xoffset=-2 yoffset=8 xadvance=14 page=0 chnl=0
-char id=115 x=0 y=147 width=16 height=22 xoffset=-2 yoffset=9 xadvance=14 page=0 chnl=0
-char id=109 x=16 y=147 width=21 height=22 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0
-char id=101 x=37 y=147 width=17 height=22 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0
-char id=120 x=54 y=147 width=17 height=21 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0
-char id=110 x=71 y=147 width=16 height=21 xoffset=-2 yoffset=9 xadvance=14 page=0 chnl=0
-char id=64 x=87 y=147 width=20 height=19 xoffset=-1 yoffset=7 xadvance=20 page=0 chnl=0
-char id=44 x=107 y=147 width=12 height=17 xoffset=-2 yoffset=18 xadvance=9 page=0 chnl=0
-char id=43 x=119 y=147 width=17 height=16 xoffset=-2 yoffset=9 xadvance=16 page=0 chnl=0
-char id=60 x=136 y=147 width=17 height=16 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0
-char id=61 x=153 y=147 width=23 height=15 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=0
-char id=62 x=176 y=147 width=17 height=15 xoffset=-2 yoffset=10 xadvance=15 page=0 chnl=0
-char id=39 x=193 y=147 width=9 height=15 xoffset=-1 yoffset=0 xadvance=9 page=0 chnl=0
-char id=34 x=202 y=147 width=14 height=15 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=0
-char id=42 x=216 y=147 width=11 height=10 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
-char id=126 x=227 y=147 width=21 height=10 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0
-char id=94 x=0 y=169 width=13 height=10 xoffset=-1 yoffset=0 xadvance=13 page=0 chnl=0
-char id=46 x=13 y=169 width=10 height=10 xoffset=-2 yoffset=21 xadvance=7 page=0 chnl=0
-char id=96 x=23 y=169 width=13 height=10 xoffset=-4 yoffset=-1 xadvance=7 page=0 chnl=0
-char id=95 x=36 y=169 width=28 height=9 xoffset=-2 yoffset=25 xadvance=26 page=0 chnl=0
-char id=45 x=64 y=169 width=17 height=8 xoffset=-2 yoffset=12 xadvance=15 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.xnb
deleted file mode 100644
index cfc01648..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest4.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.fnt
deleted file mode 100644
index 0dacd6b1..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.fnt
+++ /dev/null
@@ -1,99 +0,0 @@
-info face="CygnetRound" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=43 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="bitmapFontTest5.png"
-chars count=94
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=32 xadvance=9 page=0 chnl=0
-char id=125 x=0 y=0 width=38 height=37 xoffset=2 yoffset=5 xadvance=15 page=0 chnl=0
-char id=123 x=38 y=0 width=43 height=37 xoffset=7 yoffset=5 xadvance=15 page=0 chnl=0
-char id=89 x=81 y=0 width=52 height=37 xoffset=5 yoffset=7 xadvance=28 page=0 chnl=0
-char id=41 x=133 y=0 width=35 height=36 xoffset=-1 yoffset=7 xadvance=12 page=0 chnl=0
-char id=40 x=168 y=0 width=41 height=36 xoffset=6 yoffset=7 xadvance=12 page=0 chnl=0
-char id=102 x=209 y=0 width=66 height=36 xoffset=-9 yoffset=8 xadvance=7 page=0 chnl=0
-char id=74 x=275 y=0 width=61 height=36 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0
-char id=76 x=336 y=0 width=55 height=32 xoffset=6 yoffset=7 xadvance=22 page=0 chnl=0
-char id=124 x=391 y=0 width=6 height=31 xoffset=4 yoffset=7 xadvance=11 page=0 chnl=0
-char id=93 x=397 y=0 width=43 height=31 xoffset=6 yoffset=6 xadvance=12 page=0 chnl=0
-char id=91 x=440 y=0 width=41 height=31 xoffset=4 yoffset=6 xadvance=12 page=0 chnl=0
-char id=112 x=0 y=37 width=45 height=31 xoffset=-3 yoffset=13 xadvance=14 page=0 chnl=0
-char id=92 x=45 y=37 width=13 height=30 xoffset=3 yoffset=8 xadvance=16 page=0 chnl=0
-char id=47 x=58 y=37 width=13 height=30 xoffset=3 yoffset=8 xadvance=16 page=0 chnl=0
-char id=106 x=71 y=37 width=51 height=30 xoffset=-9 yoffset=14 xadvance=10 page=0 chnl=0
-char id=64 x=122 y=37 width=33 height=29 xoffset=9 yoffset=9 xadvance=35 page=0 chnl=0
-char id=71 x=155 y=37 width=43 height=29 xoffset=6 yoffset=5 xadvance=20 page=0 chnl=0
-char id=57 x=198 y=37 width=41 height=28 xoffset=-6 yoffset=13 xadvance=16 page=0 chnl=0
-char id=81 x=239 y=37 width=43 height=28 xoffset=5 yoffset=7 xadvance=25 page=0 chnl=0
-char id=80 x=282 y=37 width=52 height=28 xoffset=5 yoffset=6 xadvance=26 page=0 chnl=0
-char id=68 x=334 y=37 width=43 height=28 xoffset=5 yoffset=6 xadvance=25 page=0 chnl=0
-char id=90 x=377 y=37 width=45 height=27 xoffset=6 yoffset=7 xadvance=22 page=0 chnl=0
-char id=88 x=422 y=37 width=56 height=27 xoffset=6 yoffset=7 xadvance=27 page=0 chnl=0
-char id=87 x=0 y=68 width=49 height=27 xoffset=7 yoffset=7 xadvance=29 page=0 chnl=0
-char id=86 x=49 y=68 width=45 height=27 xoffset=5 yoffset=7 xadvance=17 page=0 chnl=0
-char id=85 x=94 y=68 width=41 height=27 xoffset=6 yoffset=7 xadvance=22 page=0 chnl=0
-char id=83 x=135 y=68 width=46 height=27 xoffset=5 yoffset=7 xadvance=20 page=0 chnl=0
-char id=82 x=181 y=68 width=44 height=27 xoffset=6 yoffset=7 xadvance=27 page=0 chnl=0
-char id=79 x=225 y=68 width=36 height=27 xoffset=7 yoffset=7 xadvance=20 page=0 chnl=0
-char id=78 x=261 y=68 width=60 height=27 xoffset=6 yoffset=7 xadvance=27 page=0 chnl=0
-char id=77 x=321 y=68 width=60 height=27 xoffset=6 yoffset=7 xadvance=33 page=0 chnl=0
-char id=75 x=381 y=68 width=62 height=27 xoffset=4 yoffset=7 xadvance=27 page=0 chnl=0
-char id=73 x=443 y=68 width=54 height=27 xoffset=5 yoffset=7 xadvance=20 page=0 chnl=0
-char id=72 x=0 y=95 width=60 height=27 xoffset=6 yoffset=7 xadvance=27 page=0 chnl=0
-char id=69 x=60 y=95 width=34 height=27 xoffset=6 yoffset=7 xadvance=19 page=0 chnl=0
-char id=67 x=94 y=95 width=40 height=27 xoffset=7 yoffset=7 xadvance=18 page=0 chnl=0
-char id=66 x=134 y=95 width=41 height=27 xoffset=6 yoffset=7 xadvance=26 page=0 chnl=0
-char id=65 x=175 y=95 width=47 height=27 xoffset=6 yoffset=7 xadvance=29 page=0 chnl=0
-char id=54 x=222 y=95 width=41 height=26 xoffset=7 yoffset=8 xadvance=17 page=0 chnl=0
-char id=108 x=263 y=95 width=33 height=26 xoffset=5 yoffset=8 xadvance=7 page=0 chnl=0
-char id=107 x=296 y=95 width=35 height=26 xoffset=3 yoffset=8 xadvance=15 page=0 chnl=0
-char id=104 x=331 y=95 width=34 height=26 xoffset=4 yoffset=8 xadvance=15 page=0 chnl=0
-char id=100 x=365 y=95 width=40 height=26 xoffset=6 yoffset=8 xadvance=15 page=0 chnl=0
-char id=98 x=405 y=95 width=33 height=26 xoffset=7 yoffset=8 xadvance=15 page=0 chnl=0
-char id=84 x=438 y=95 width=57 height=26 xoffset=5 yoffset=8 xadvance=25 page=0 chnl=0
-char id=70 x=0 y=122 width=55 height=26 xoffset=5 yoffset=8 xadvance=25 page=0 chnl=0
-char id=36 x=55 y=122 width=30 height=25 xoffset=5 yoffset=11 xadvance=16 page=0 chnl=0
-char id=55 x=85 y=122 width=33 height=25 xoffset=2 yoffset=13 xadvance=14 page=0 chnl=0
-char id=56 x=118 y=122 width=30 height=24 xoffset=6 yoffset=10 xadvance=17 page=0 chnl=0
-char id=121 x=148 y=122 width=50 height=24 xoffset=-6 yoffset=20 xadvance=15 page=0 chnl=0
-char id=113 x=198 y=122 width=33 height=24 xoffset=5 yoffset=20 xadvance=15 page=0 chnl=0
-char id=103 x=231 y=122 width=48 height=24 xoffset=-5 yoffset=20 xadvance=15 page=0 chnl=0
-char id=52 x=279 y=122 width=28 height=23 xoffset=6 yoffset=10 xadvance=17 page=0 chnl=0
-char id=37 x=307 y=122 width=29 height=22 xoffset=8 yoffset=13 xadvance=26 page=0 chnl=0
-char id=38 x=336 y=122 width=32 height=21 xoffset=12 yoffset=13 xadvance=29 page=0 chnl=0
-char id=63 x=368 y=122 width=23 height=21 xoffset=11 yoffset=13 xadvance=19 page=0 chnl=0
-char id=33 x=391 y=122 width=23 height=21 xoffset=10 yoffset=13 xadvance=16 page=0 chnl=0
-char id=48 x=414 y=122 width=27 height=21 xoffset=6 yoffset=13 xadvance=16 page=0 chnl=0
-char id=53 x=441 y=122 width=31 height=21 xoffset=5 yoffset=13 xadvance=17 page=0 chnl=0
-char id=51 x=472 y=122 width=29 height=21 xoffset=5 yoffset=13 xadvance=17 page=0 chnl=0
-char id=50 x=0 y=148 width=27 height=21 xoffset=3 yoffset=13 xadvance=17 page=0 chnl=0
-char id=43 x=27 y=148 width=21 height=20 xoffset=3 yoffset=13 xadvance=25 page=0 chnl=0
-char id=49 x=48 y=148 width=25 height=20 xoffset=6 yoffset=13 xadvance=12 page=0 chnl=0
-char id=105 x=73 y=148 width=26 height=20 xoffset=6 yoffset=14 xadvance=7 page=0 chnl=0
-char id=94 x=99 y=148 width=20 height=19 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0
-char id=59 x=119 y=148 width=22 height=18 xoffset=6 yoffset=20 xadvance=11 page=0 chnl=0
-char id=116 x=141 y=148 width=28 height=18 xoffset=6 yoffset=16 xadvance=9 page=0 chnl=0
-char id=35 x=169 y=148 width=32 height=16 xoffset=8 yoffset=8 xadvance=17 page=0 chnl=0
-char id=122 x=201 y=148 width=32 height=15 xoffset=6 yoffset=19 xadvance=13 page=0 chnl=0
-char id=42 x=233 y=148 width=15 height=14 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0
-char id=58 x=248 y=148 width=18 height=14 xoffset=8 yoffset=20 xadvance=11 page=0 chnl=0
-char id=120 x=266 y=148 width=37 height=14 xoffset=4 yoffset=20 xadvance=16 page=0 chnl=0
-char id=119 x=303 y=148 width=40 height=14 xoffset=6 yoffset=20 xadvance=23 page=0 chnl=0
-char id=118 x=343 y=148 width=32 height=14 xoffset=6 yoffset=20 xadvance=15 page=0 chnl=0
-char id=117 x=375 y=148 width=33 height=14 xoffset=5 yoffset=20 xadvance=15 page=0 chnl=0
-char id=115 x=408 y=148 width=30 height=14 xoffset=4 yoffset=20 xadvance=11 page=0 chnl=0
-char id=111 x=438 y=148 width=32 height=14 xoffset=6 yoffset=20 xadvance=15 page=0 chnl=0
-char id=110 x=470 y=148 width=34 height=14 xoffset=4 yoffset=20 xadvance=15 page=0 chnl=0
-char id=109 x=0 y=169 width=41 height=14 xoffset=4 yoffset=20 xadvance=22 page=0 chnl=0
-char id=101 x=41 y=169 width=30 height=14 xoffset=6 yoffset=20 xadvance=11 page=0 chnl=0
-char id=99 x=71 y=169 width=28 height=14 xoffset=6 yoffset=20 xadvance=11 page=0 chnl=0
-char id=97 x=99 y=169 width=32 height=14 xoffset=6 yoffset=20 xadvance=15 page=0 chnl=0
-char id=114 x=131 y=169 width=31 height=13 xoffset=4 yoffset=20 xadvance=12 page=0 chnl=0
-char id=62 x=162 y=169 width=9 height=11 xoffset=7 yoffset=21 xadvance=9 page=0 chnl=0
-char id=60 x=171 y=169 width=10 height=11 xoffset=8 yoffset=21 xadvance=9 page=0 chnl=0
-char id=39 x=181 y=169 width=19 height=11 xoffset=17 yoffset=7 xadvance=13 page=0 chnl=0
-char id=34 x=200 y=169 width=25 height=11 xoffset=17 yoffset=7 xadvance=17 page=0 chnl=0
-char id=61 x=225 y=169 width=21 height=10 xoffset=3 yoffset=18 xadvance=25 page=0 chnl=0
-char id=44 x=246 y=169 width=11 height=9 xoffset=5 yoffset=29 xadvance=9 page=0 chnl=0
-char id=126 x=257 y=169 width=20 height=7 xoffset=1 yoffset=20 xadvance=20 page=0 chnl=0
-char id=96 x=277 y=169 width=10 height=6 xoffset=6 yoffset=7 xadvance=19 page=0 chnl=0
-char id=46 x=287 y=169 width=8 height=5 xoffset=8 yoffset=29 xadvance=9 page=0 chnl=0
-char id=95 x=295 y=169 width=18 height=4 xoffset=0 yoffset=35 xadvance=16 page=0 chnl=0
-char id=45 x=313 y=169 width=18 height=4 xoffset=12 yoffset=23 xadvance=15 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.xnb
deleted file mode 100644
index ee45ca12..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/bitmapFontTest5.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/debugfont.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/debugfont.xnb
deleted file mode 100644
index 0e6d5330..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/debugfont.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.fnt
deleted file mode 100644
index 27ba2e50..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.fnt
+++ /dev/null
@@ -1,75 +0,0 @@
-info face="TestFont-Bold" size=32 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=60 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="font-issue1343-hd.png"
-chars count=70
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=64 xadvance=36 page=0 chnl=0
-char id=36 x=0 y=0 width=48 height=74 xoffset=-2 yoffset=6 xadvance=48 page=0 chnl=0
-char id=106 x=48 y=0 width=34 height=74 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0
-char id=37 x=82 y=0 width=64 height=68 xoffset=-2 yoffset=8 xadvance=64 page=0 chnl=0
-char id=81 x=146 y=0 width=60 height=66 xoffset=-2 yoffset=12 xadvance=60 page=0 chnl=0
-char id=64 x=206 y=0 width=62 height=64 xoffset=-2 yoffset=12 xadvance=64 page=0 chnl=0
-char id=113 x=268 y=0 width=42 height=64 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=112 x=310 y=0 width=44 height=64 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=103 x=354 y=0 width=46 height=64 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=102 x=400 y=0 width=44 height=64 xoffset=-2 yoffset=10 xadvance=38 page=0 chnl=0
-char id=63 x=444 y=0 width=42 height=62 xoffset=-4 yoffset=14 xadvance=40 page=0 chnl=0
-char id=121 x=0 y=74 width=48 height=62 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=116 x=48 y=74 width=38 height=62 xoffset=0 yoffset=12 xadvance=40 page=0 chnl=0
-char id=108 x=86 y=74 width=24 height=62 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0
-char id=107 x=110 y=74 width=44 height=62 xoffset=-2 yoffset=12 xadvance=44 page=0 chnl=0
-char id=105 x=154 y=74 width=24 height=62 xoffset=-2 yoffset=12 xadvance=26 page=0 chnl=0
-char id=100 x=178 y=74 width=46 height=62 xoffset=-2 yoffset=12 xadvance=48 page=0 chnl=0
-char id=82 x=224 y=74 width=52 height=62 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0
-char id=80 x=276 y=74 width=50 height=62 xoffset=-4 yoffset=12 xadvance=48 page=0 chnl=0
-char id=33 x=326 y=74 width=24 height=60 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0
-char id=48 x=350 y=74 width=50 height=60 xoffset=-4 yoffset=14 xadvance=48 page=0 chnl=0
-char id=57 x=400 y=74 width=46 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=56 x=446 y=74 width=46 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=54 x=0 y=136 width=46 height=60 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0
-char id=53 x=46 y=136 width=46 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=51 x=92 y=136 width=44 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=104 x=136 y=136 width=44 height=60 xoffset=-2 yoffset=14 xadvance=46 page=0 chnl=0
-char id=98 x=180 y=136 width=46 height=60 xoffset=-2 yoffset=12 xadvance=46 page=0 chnl=0
-char id=89 x=226 y=136 width=54 height=60 xoffset=-6 yoffset=14 xadvance=48 page=0 chnl=0
-char id=88 x=280 y=136 width=54 height=60 xoffset=-2 yoffset=14 xadvance=52 page=0 chnl=0
-char id=87 x=334 y=136 width=76 height=60 xoffset=-4 yoffset=14 xadvance=74 page=0 chnl=0
-char id=86 x=410 y=136 width=54 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=85 x=0 y=196 width=50 height=60 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0
-char id=79 x=50 y=196 width=56 height=60 xoffset=-2 yoffset=14 xadvance=56 page=0 chnl=0
-char id=78 x=106 y=196 width=52 height=60 xoffset=-2 yoffset=14 xadvance=52 page=0 chnl=0
-char id=77 x=158 y=196 width=66 height=60 xoffset=-4 yoffset=14 xadvance=64 page=0 chnl=0
-char id=75 x=224 y=196 width=48 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=72 x=272 y=196 width=52 height=60 xoffset=-2 yoffset=14 xadvance=50 page=0 chnl=0
-char id=71 x=324 y=196 width=56 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=67 x=380 y=196 width=48 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=65 x=428 y=196 width=54 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=55 x=0 y=256 width=50 height=58 xoffset=-4 yoffset=16 xadvance=48 page=0 chnl=0
-char id=52 x=50 y=256 width=48 height=58 xoffset=-2 yoffset=16 xadvance=48 page=0 chnl=0
-char id=50 x=98 y=256 width=44 height=58 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=49 x=142 y=256 width=34 height=58 xoffset=-2 yoffset=14 xadvance=36 page=0 chnl=0
-char id=84 x=176 y=256 width=50 height=58 xoffset=-4 yoffset=16 xadvance=46 page=0 chnl=0
-char id=83 x=226 y=256 width=48 height=58 xoffset=-2 yoffset=16 xadvance=48 page=0 chnl=0
-char id=74 x=274 y=256 width=54 height=58 xoffset=-6 yoffset=16 xadvance=46 page=0 chnl=0
-char id=73 x=328 y=256 width=38 height=58 xoffset=-2 yoffset=14 xadvance=38 page=0 chnl=0
-char id=70 x=366 y=256 width=44 height=58 xoffset=-4 yoffset=16 xadvance=42 page=0 chnl=0
-char id=69 x=410 y=256 width=46 height=58 xoffset=-2 yoffset=14 xadvance=46 page=0 chnl=0
-char id=68 x=0 y=314 width=58 height=58 xoffset=-6 yoffset=16 xadvance=52 page=0 chnl=0
-char id=66 x=58 y=314 width=48 height=58 xoffset=-4 yoffset=14 xadvance=46 page=0 chnl=0
-char id=76 x=106 y=314 width=44 height=56 xoffset=-2 yoffset=16 xadvance=44 page=0 chnl=0
-char id=90 x=150 y=314 width=54 height=54 xoffset=-2 yoffset=18 xadvance=52 page=0 chnl=0
-char id=115 x=204 y=314 width=40 height=50 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0
-char id=111 x=244 y=314 width=46 height=50 xoffset=-4 yoffset=26 xadvance=42 page=0 chnl=0
-char id=122 x=290 y=314 width=48 height=48 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=120 x=338 y=314 width=46 height=48 xoffset=-2 yoffset=26 xadvance=46 page=0 chnl=0
-char id=119 x=384 y=314 width=60 height=48 xoffset=-4 yoffset=26 xadvance=56 page=0 chnl=0
-char id=118 x=444 y=314 width=42 height=48 xoffset=-4 yoffset=26 xadvance=40 page=0 chnl=0
-char id=114 x=0 y=372 width=44 height=48 xoffset=-2 yoffset=26 xadvance=38 page=0 chnl=0
-char id=110 x=44 y=372 width=42 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=109 x=86 y=372 width=58 height=48 xoffset=-2 yoffset=26 xadvance=58 page=0 chnl=0
-char id=101 x=144 y=372 width=46 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=99 x=190 y=372 width=42 height=48 xoffset=-2 yoffset=26 xadvance=42 page=0 chnl=0
-char id=97 x=232 y=372 width=46 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=117 x=278 y=372 width=46 height=46 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=44 x=324 y=372 width=28 height=32 xoffset=-2 yoffset=50 xadvance=28 page=0 chnl=0
-char id=39 x=352 y=372 width=22 height=30 xoffset=-2 yoffset=10 xadvance=24 page=0 chnl=0
-char id=46 x=374 y=372 width=26 height=22 xoffset=0 yoffset=100 xadvance=30 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.xnb
deleted file mode 100644
index 6719f44e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343-hd.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.fnt
deleted file mode 100644
index 2c6459a2..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.fnt
+++ /dev/null
@@ -1,75 +0,0 @@
-info face="TestFont-Bold" size=32 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=30 base=26 scaleW=256 scaleH=256 pages=1 packed=0
-page id=0 file="font-issue1343.png"
-chars count=70
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=32 xadvance=18 page=0 chnl=0
-char id=36 x=0 y=0 width=24 height=37 xoffset=-1 yoffset=3 xadvance=24 page=0 chnl=0
-char id=106 x=24 y=0 width=17 height=37 xoffset=-2 yoffset=5 xadvance=18 page=0 chnl=0
-char id=37 x=41 y=0 width=32 height=34 xoffset=-1 yoffset=4 xadvance=32 page=0 chnl=0
-char id=81 x=73 y=0 width=30 height=33 xoffset=-1 yoffset=6 xadvance=30 page=0 chnl=0
-char id=64 x=103 y=0 width=31 height=32 xoffset=-1 yoffset=6 xadvance=32 page=0 chnl=0
-char id=113 x=134 y=0 width=21 height=32 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=112 x=155 y=0 width=22 height=32 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=103 x=177 y=0 width=23 height=32 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0
-char id=102 x=200 y=0 width=22 height=32 xoffset=-1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=63 x=222 y=0 width=21 height=31 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0
-char id=121 x=0 y=37 width=24 height=31 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0
-char id=116 x=24 y=37 width=19 height=31 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0
-char id=108 x=43 y=37 width=12 height=31 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
-char id=107 x=55 y=37 width=22 height=31 xoffset=-1 yoffset=6 xadvance=22 page=0 chnl=0
-char id=105 x=77 y=37 width=12 height=31 xoffset=-1 yoffset=6 xadvance=13 page=0 chnl=0
-char id=100 x=89 y=37 width=23 height=31 xoffset=-1 yoffset=6 xadvance=24 page=0 chnl=0
-char id=82 x=112 y=37 width=26 height=31 xoffset=-2 yoffset=6 xadvance=25 page=0 chnl=0
-char id=80 x=138 y=37 width=25 height=31 xoffset=-2 yoffset=6 xadvance=24 page=0 chnl=0
-char id=33 x=163 y=37 width=12 height=30 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
-char id=48 x=175 y=37 width=25 height=30 xoffset=-2 yoffset=7 xadvance=24 page=0 chnl=0
-char id=57 x=200 y=37 width=23 height=30 xoffset=-1 yoffset=7 xadvance=24 page=0 chnl=0
-char id=56 x=223 y=37 width=23 height=30 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0
-char id=54 x=0 y=68 width=23 height=30 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0
-char id=53 x=23 y=68 width=23 height=30 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0
-char id=51 x=46 y=68 width=22 height=30 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0
-char id=104 x=68 y=68 width=22 height=30 xoffset=-1 yoffset=7 xadvance=23 page=0 chnl=0
-char id=98 x=90 y=68 width=23 height=30 xoffset=-1 yoffset=6 xadvance=23 page=0 chnl=0
-char id=89 x=113 y=68 width=27 height=30 xoffset=-3 yoffset=7 xadvance=24 page=0 chnl=0
-char id=88 x=140 y=68 width=27 height=30 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=0
-char id=87 x=167 y=68 width=38 height=30 xoffset=-2 yoffset=7 xadvance=37 page=0 chnl=0
-char id=86 x=205 y=68 width=27 height=30 xoffset=-2 yoffset=7 xadvance=26 page=0 chnl=0
-char id=85 x=0 y=98 width=25 height=30 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0
-char id=79 x=25 y=98 width=28 height=30 xoffset=-1 yoffset=7 xadvance=28 page=0 chnl=0
-char id=78 x=53 y=98 width=26 height=30 xoffset=-1 yoffset=7 xadvance=26 page=0 chnl=0
-char id=77 x=79 y=98 width=33 height=30 xoffset=-2 yoffset=7 xadvance=32 page=0 chnl=0
-char id=75 x=112 y=98 width=24 height=30 xoffset=-1 yoffset=7 xadvance=24 page=0 chnl=0
-char id=72 x=136 y=98 width=26 height=30 xoffset=-1 yoffset=7 xadvance=25 page=0 chnl=0
-char id=71 x=162 y=98 width=28 height=30 xoffset=-2 yoffset=7 xadvance=26 page=0 chnl=0
-char id=67 x=190 y=98 width=24 height=30 xoffset=-1 yoffset=7 xadvance=24 page=0 chnl=0
-char id=65 x=214 y=98 width=27 height=30 xoffset=-2 yoffset=7 xadvance=26 page=0 chnl=0
-char id=55 x=0 y=128 width=25 height=29 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0
-char id=52 x=25 y=128 width=24 height=29 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0
-char id=50 x=49 y=128 width=22 height=29 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0
-char id=49 x=71 y=128 width=17 height=29 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=0
-char id=84 x=88 y=128 width=25 height=29 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0
-char id=83 x=113 y=128 width=24 height=29 xoffset=-1 yoffset=8 xadvance=24 page=0 chnl=0
-char id=74 x=137 y=128 width=27 height=29 xoffset=-3 yoffset=8 xadvance=23 page=0 chnl=0
-char id=73 x=164 y=128 width=19 height=29 xoffset=-1 yoffset=7 xadvance=19 page=0 chnl=0
-char id=70 x=183 y=128 width=22 height=29 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0
-char id=69 x=205 y=128 width=23 height=29 xoffset=-1 yoffset=7 xadvance=23 page=0 chnl=0
-char id=68 x=0 y=157 width=29 height=29 xoffset=-3 yoffset=8 xadvance=26 page=0 chnl=0
-char id=66 x=29 y=157 width=24 height=29 xoffset=-2 yoffset=7 xadvance=23 page=0 chnl=0
-char id=76 x=53 y=157 width=22 height=28 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=0
-char id=90 x=75 y=157 width=27 height=27 xoffset=-1 yoffset=9 xadvance=26 page=0 chnl=0
-char id=115 x=102 y=157 width=20 height=25 xoffset=-2 yoffset=12 xadvance=19 page=0 chnl=0
-char id=111 x=122 y=157 width=23 height=25 xoffset=-2 yoffset=13 xadvance=21 page=0 chnl=0
-char id=122 x=145 y=157 width=24 height=24 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0
-char id=120 x=169 y=157 width=23 height=24 xoffset=-1 yoffset=13 xadvance=23 page=0 chnl=0
-char id=119 x=192 y=157 width=30 height=24 xoffset=-2 yoffset=13 xadvance=28 page=0 chnl=0
-char id=118 x=222 y=157 width=21 height=24 xoffset=-2 yoffset=13 xadvance=20 page=0 chnl=0
-char id=114 x=0 y=186 width=22 height=24 xoffset=-1 yoffset=13 xadvance=19 page=0 chnl=0
-char id=110 x=22 y=186 width=21 height=24 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=109 x=43 y=186 width=29 height=24 xoffset=-1 yoffset=13 xadvance=29 page=0 chnl=0
-char id=101 x=72 y=186 width=23 height=24 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=99 x=95 y=186 width=21 height=24 xoffset=-1 yoffset=13 xadvance=21 page=0 chnl=0
-char id=97 x=116 y=186 width=23 height=24 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=117 x=139 y=186 width=23 height=23 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0
-char id=44 x=162 y=186 width=14 height=16 xoffset=-1 yoffset=25 xadvance=14 page=0 chnl=0
-char id=39 x=176 y=186 width=11 height=15 xoffset=-1 yoffset=5 xadvance=12 page=0 chnl=0
-char id=46 x=187 y=186 width=13 height=11 xoffset=0 yoffset=50 xadvance=15 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.xnb
deleted file mode 100644
index eb41f796..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/font-issue1343.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.fnt
deleted file mode 100644
index 50d6e48b..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.fnt
+++ /dev/null
@@ -1,182 +0,0 @@
-info face="Futura-CondensedExtraBold" size=48 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2
-common lineHeight=62 base=48 scaleW=512 scaleH=256 pages=1 packed=0
-page id=0 file="futura-48.png"
-chars count=95
-char id=92 x=2 y=2 width=35 height=56 xoffset=0 yoffset=7 xadvance=32 page=0 chnl=0 letter="\"
-char id=47 x=39 y=2 width=35 height=56 xoffset=-1 yoffset=7 xadvance=32 page=0 chnl=0 letter="/"
-char id=125 x=76 y=2 width=22 height=56 xoffset=-1 yoffset=7 xadvance=19 page=0 chnl=0 letter="}"
-char id=123 x=100 y=2 width=21 height=56 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 letter="{"
-char id=40 x=123 y=2 width=19 height=56 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 letter="("
-char id=41 x=144 y=2 width=19 height=56 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter=")"
-char id=91 x=165 y=2 width=19 height=56 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 letter="["
-char id=93 x=186 y=2 width=19 height=56 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="]"
-char id=106 x=207 y=2 width=16 height=55 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="j"
-char id=36 x=225 y=2 width=24 height=52 xoffset=3 yoffset=5 xadvance=28 page=0 chnl=0 letter="$"
-char id=124 x=251 y=2 width=15 height=50 xoffset=7 yoffset=10 xadvance=27 page=0 chnl=0 letter="|"
-char id=81 x=268 y=2 width=33 height=46 xoffset=0 yoffset=10 xadvance=31 page=0 chnl=0 letter="Q"
-char id=100 x=303 y=2 width=28 height=45 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="d"
-char id=98 x=333 y=2 width=28 height=45 xoffset=1 yoffset=7 xadvance=26 page=0 chnl=0 letter="b"
-char id=107 x=363 y=2 width=29 height=44 xoffset=1 yoffset=7 xadvance=26 page=0 chnl=0 letter="k"
-char id=63 x=394 y=2 width=28 height=44 xoffset=1 yoffset=8 xadvance=27 page=0 chnl=0 letter="?"
-char id=104 x=424 y=2 width=27 height=44 xoffset=1 yoffset=7 xadvance=26 page=0 chnl=0 letter="h"
-char id=102 x=453 y=2 width=21 height=44 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=0 letter="f"
-char id=33 x=476 y=2 width=16 height=44 xoffset=2 yoffset=8 xadvance=17 page=0 chnl=0 letter="!"
-char id=108 x=494 y=2 width=14 height=44 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 letter="l"
-char id=37 x=2 y=60 width=39 height=43 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="%"
-char id=105 x=43 y=60 width=16 height=43 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="i"
-char id=64 x=61 y=60 width=38 height=42 xoffset=1 yoffset=10 xadvance=37 page=0 chnl=0 letter="@"
-char id=38 x=101 y=60 width=36 height=42 xoffset=1 yoffset=10 xadvance=34 page=0 chnl=0 letter="&"
-char id=79 x=139 y=60 width=33 height=42 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="O"
-char id=71 x=174 y=60 width=32 height=42 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="G"
-char id=48 x=208 y=60 width=31 height=42 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter="0"
-char id=85 x=241 y=60 width=30 height=42 xoffset=1 yoffset=10 xadvance=29 page=0 chnl=0 letter="U"
-char id=51 x=273 y=60 width=29 height=42 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="3"
-char id=54 x=304 y=60 width=29 height=42 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="6"
-char id=53 x=335 y=60 width=29 height=42 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="5"
-char id=56 x=366 y=60 width=29 height=42 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="8"
-char id=103 x=397 y=60 width=28 height=42 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="g"
-char id=112 x=427 y=60 width=28 height=42 xoffset=1 yoffset=21 xadvance=26 page=0 chnl=0 letter="p"
-char id=113 x=457 y=60 width=28 height=42 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="q"
-char id=67 x=2 y=105 width=26 height=42 xoffset=0 yoffset=10 xadvance=24 page=0 chnl=0 letter="C"
-char id=83 x=30 y=105 width=24 height=42 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="S"
-char id=74 x=56 y=105 width=21 height=42 xoffset=-1 yoffset=10 xadvance=19 page=0 chnl=0 letter="J"
-char id=87 x=79 y=105 width=45 height=41 xoffset=-1 yoffset=10 xadvance=40 page=0 chnl=0 letter="W"
-char id=77 x=126 y=105 width=43 height=41 xoffset=0 yoffset=10 xadvance=41 page=0 chnl=0 letter="M"
-char id=65 x=171 y=105 width=33 height=41 xoffset=-1 yoffset=10 xadvance=28 page=0 chnl=0 letter="A"
-char id=86 x=206 y=105 width=32 height=41 xoffset=-1 yoffset=10 xadvance=28 page=0 chnl=0 letter="V"
-char id=88 x=240 y=105 width=32 height=41 xoffset=-1 yoffset=10 xadvance=28 page=0 chnl=0 letter="X"
-char id=90 x=274 y=105 width=32 height=41 xoffset=-1 yoffset=10 xadvance=27 page=0 chnl=0 letter="Z"
-char id=89 x=308 y=105 width=31 height=41 xoffset=-1 yoffset=10 xadvance=27 page=0 chnl=0 letter="Y"
-char id=52 x=341 y=105 width=31 height=41 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter="4"
-char id=75 x=374 y=105 width=31 height=41 xoffset=1 yoffset=10 xadvance=29 page=0 chnl=0 letter="K"
-char id=82 x=407 y=105 width=31 height=41 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="R"
-char id=55 x=440 y=105 width=31 height=41 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="7"
-char id=68 x=473 y=105 width=30 height=41 xoffset=1 yoffset=10 xadvance=29 page=0 chnl=0 letter="D"
-char id=78 x=2 y=149 width=30 height=41 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0 letter="N"
-char id=50 x=34 y=149 width=30 height=41 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter="2"
-char id=66 x=66 y=149 width=30 height=41 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="B"
-char id=72 x=98 y=149 width=29 height=41 xoffset=1 yoffset=10 xadvance=29 page=0 chnl=0 letter="H"
-char id=80 x=129 y=149 width=29 height=41 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 letter="P"
-char id=57 x=160 y=149 width=29 height=41 xoffset=1 yoffset=10 xadvance=28 page=0 chnl=0 letter="9"
-char id=121 x=191 y=149 width=29 height=41 xoffset=-1 yoffset=21 xadvance=24 page=0 chnl=0 letter="y"
-char id=35 x=222 y=149 width=27 height=41 xoffset=2 yoffset=10 xadvance=28 page=0 chnl=0 letter="#"
-char id=84 x=251 y=149 width=25 height=41 xoffset=-1 yoffset=10 xadvance=20 page=0 chnl=0 letter="T"
-char id=69 x=278 y=149 width=23 height=41 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0 letter="E"
-char id=70 x=303 y=149 width=22 height=41 xoffset=1 yoffset=10 xadvance=21 page=0 chnl=0 letter="F"
-char id=76 x=327 y=149 width=22 height=41 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 letter="L"
-char id=49 x=351 y=149 width=18 height=41 xoffset=6 yoffset=10 xadvance=28 page=0 chnl=0 letter="1"
-char id=73 x=371 y=149 width=15 height=41 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 letter="I"
-char id=60 x=388 y=149 width=29 height=39 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 letter="<"
-char id=62 x=419 y=149 width=29 height=39 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 letter=">"
-char id=59 x=450 y=149 width=20 height=39 xoffset=-2 yoffset=21 xadvance=14 page=0 chnl=0 letter=";"
-char id=116 x=472 y=149 width=20 height=37 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=0 letter="t"
-char id=111 x=2 y=192 width=28 height=31 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="o"
-char id=97 x=32 y=192 width=28 height=31 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="a"
-char id=101 x=62 y=192 width=28 height=31 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="e"
-char id=117 x=92 y=192 width=27 height=31 xoffset=1 yoffset=21 xadvance=27 page=0 chnl=0 letter="u"
-char id=115 x=121 y=192 width=24 height=31 xoffset=0 yoffset=21 xadvance=21 page=0 chnl=0 letter="s"
-char id=99 x=147 y=192 width=19 height=31 xoffset=0 yoffset=21 xadvance=16 page=0 chnl=0 letter="c"
-char id=58 x=168 y=192 width=16 height=31 xoffset=0 yoffset=21 xadvance=14 page=0 chnl=0 letter=":"
-char id=119 x=186 y=192 width=41 height=30 xoffset=-1 yoffset=21 xadvance=37 page=0 chnl=0 letter="w"
-char id=109 x=229 y=192 width=40 height=30 xoffset=1 yoffset=21 xadvance=39 page=0 chnl=0 letter="m"
-char id=120 x=271 y=192 width=30 height=30 xoffset=-1 yoffset=21 xadvance=26 page=0 chnl=0 letter="x"
-char id=118 x=303 y=192 width=29 height=30 xoffset=-1 yoffset=21 xadvance=24 page=0 chnl=0 letter="v"
-char id=110 x=334 y=192 width=27 height=30 xoffset=1 yoffset=21 xadvance=26 page=0 chnl=0 letter="n"
-char id=122 x=363 y=192 width=26 height=30 xoffset=0 yoffset=21 xadvance=23 page=0 chnl=0 letter="z"
-char id=114 x=391 y=192 width=21 height=30 xoffset=1 yoffset=21 xadvance=18 page=0 chnl=0 letter="r"
-char id=43 x=414 y=192 width=29 height=29 xoffset=1 yoffset=16 xadvance=28 page=0 chnl=0 letter="+"
-char id=42 x=445 y=192 width=25 height=24 xoffset=3 yoffset=7 xadvance=28 page=0 chnl=0 letter="*"
-char id=94 x=472 y=192 width=31 height=23 xoffset=-1 yoffset=10 xadvance=27 page=0 chnl=0 letter="^"
-char id=44 x=2 y=225 width=19 height=22 xoffset=-2 yoffset=38 xadvance=14 page=0 chnl=0 letter=","
-char id=34 x=23 y=225 width=24 height=20 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="""
-char id=39 x=49 y=225 width=14 height=20 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="'"
-char id=61 x=65 y=225 width=29 height=19 xoffset=1 yoffset=21 xadvance=28 page=0 chnl=0 letter="="
-char id=46 x=96 y=225 width=16 height=16 xoffset=0 yoffset=36 xadvance=14 page=0 chnl=0 letter="."
-char id=126 x=114 y=225 width=31 height=15 xoffset=4 yoffset=6 xadvance=36 page=0 chnl=0 letter="~"
-char id=96 x=147 y=225 width=15 height=13 xoffset=5 yoffset=10 xadvance=27 page=0 chnl=0 letter="`"
-char id=45 x=164 y=225 width=16 height=12 xoffset=-1 yoffset=30 xadvance=11 page=0 chnl=0 letter="-"
-char id=95 x=182 y=225 width=32 height=11 xoffset=-1 yoffset=49 xadvance=27 page=0 chnl=0 letter="_"
-char id=32 x=216 y=225 width=0 height=0 xoffset=-106 yoffset=168 xadvance=14 page=0 chnl=0 letter="space"
-kernings count=82
-kerning first=81 second=81 amount=-1
-kerning first=63 second=93 amount=-2
-kerning first=63 second=100 amount=-3
-kerning first=63 second=98 amount=-3
-kerning first=63 second=37 amount=-5
-kerning first=63 second=38 amount=-5
-kerning first=63 second=90 amount=-5
-kerning first=63 second=78 amount=-5
-kerning first=63 second=80 amount=-5
-kerning first=63 second=84 amount=-2
-kerning first=63 second=76 amount=-5
-kerning first=63 second=58 amount=-1
-kerning first=63 second=94 amount=-5
-kerning first=63 second=44 amount=-4
-kerning first=63 second=96 amount=-2
-kerning first=63 second=32 amount=-1
-kerning first=65 second=93 amount=-2
-kerning first=65 second=100 amount=-2
-kerning first=65 second=37 amount=-2
-kerning first=65 second=38 amount=-2
-kerning first=65 second=90 amount=-3
-kerning first=65 second=80 amount=-3
-kerning first=65 second=84 amount=-1
-kerning first=65 second=76 amount=-4
-kerning first=65 second=44 amount=-4
-kerning first=65 second=96 amount=-2
-kerning first=55 second=100 amount=-2
-kerning first=55 second=63 amount=-4
-kerning first=55 second=65 amount=-4
-kerning first=55 second=68 amount=-4
-kerning first=55 second=66 amount=-4
-kerning first=55 second=32 amount=-2
-kerning first=68 second=92 amount=-4
-kerning first=68 second=91 amount=-4
-kerning first=68 second=37 amount=-3
-kerning first=68 second=38 amount=-3
-kerning first=68 second=90 amount=-4
-kerning first=68 second=80 amount=-4
-kerning first=68 second=84 amount=-2
-kerning first=68 second=76 amount=-4
-kerning first=68 second=97 amount=-3
-kerning first=68 second=44 amount=-4
-kerning first=68 second=96 amount=-3
-kerning first=68 second=32 amount=-1
-kerning first=66 second=93 amount=-1
-kerning first=66 second=37 amount=-1
-kerning first=66 second=38 amount=-1
-kerning first=66 second=90 amount=-1
-kerning first=66 second=80 amount=-1
-kerning first=66 second=76 amount=-2
-kerning first=66 second=44 amount=-2
-kerning first=66 second=96 amount=-1
-kerning first=70 second=125 amount=-5
-kerning first=70 second=123 amount=-5
-kerning first=49 second=44 amount=-3
-kerning first=60 second=125 amount=-5
-kerning first=60 second=123 amount=-5
-kerning first=60 second=81 amount=-1
-kerning first=59 second=41 amount=-3
-kerning first=59 second=101 amount=-1
-kerning first=59 second=44 amount=-4
-kerning first=59 second=32 amount=-1
-kerning first=58 second=81 amount=-3
-kerning first=58 second=61 amount=-3
-kerning first=43 second=35 amount=-1
-kerning first=42 second=105 amount=-3
-kerning first=44 second=100 amount=-1
-kerning first=44 second=98 amount=-1
-kerning first=44 second=63 amount=-4
-kerning first=44 second=65 amount=-4
-kerning first=44 second=68 amount=-4
-kerning first=44 second=66 amount=-2
-kerning first=44 second=97 amount=-1
-kerning first=44 second=32 amount=-3
-kerning first=61 second=63 amount=-1
-kerning first=61 second=65 amount=-1
-kerning first=61 second=68 amount=-1
-kerning first=61 second=66 amount=-1
-kerning first=32 second=63 amount=-1
-kerning first=32 second=71 amount=-3
-kerning first=32 second=68 amount=-1
-kerning first=32 second=44 amount=-3
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.xnb
deleted file mode 100644
index 92d07e2d..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/futura-48.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/geneva-32.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/geneva-32.fnt
deleted file mode 100644
index c4967c0e..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/geneva-32.fnt
+++ /dev/null
@@ -1,99 +0,0 @@
-info face="Geneva" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=42 base=32 scaleW=512 scaleH=128 pages=1 packed=0
-page id=0 file="helvetica-geneva-32.png"
-chars count=95
-char id=40 x=1 y=1 width=15 height=36 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="("
-char id=41 x=17 y=1 width=14 height=36 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter=")"
-char id=106 x=32 y=1 width=13 height=36 xoffset=-3 yoffset=6 xadvance=8 page=0 chnl=0 letter="j"
-char id=125 x=46 y=1 width=13 height=36 xoffset=2 yoffset=5 xadvance=14 page=0 chnl=0 letter="}"
-char id=91 x=60 y=1 width=13 height=36 xoffset=2 yoffset=5 xadvance=14 page=0 chnl=0 letter="["
-char id=93 x=74 y=1 width=13 height=36 xoffset=1 yoffset=5 xadvance=14 page=0 chnl=0 letter="]"
-char id=123 x=88 y=1 width=12 height=36 xoffset=2 yoffset=5 xadvance=14 page=0 chnl=0 letter="{"
-char id=81 x=101 y=1 width=28 height=35 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="Q"
-char id=36 x=130 y=1 width=21 height=34 xoffset=1 yoffset=4 xadvance=21 page=0 chnl=0 letter="$"
-char id=100 x=152 y=1 width=21 height=31 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="d"
-char id=98 x=174 y=1 width=21 height=31 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0 letter="b"
-char id=64 x=196 y=1 width=29 height=30 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="@"
-char id=79 x=226 y=1 width=26 height=30 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="O"
-char id=38 x=253 y=1 width=25 height=30 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="&"
-char id=71 x=279 y=1 width=23 height=30 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="G"
-char id=67 x=303 y=1 width=23 height=30 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="C"
-char id=85 x=327 y=1 width=23 height=30 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="U"
-char id=48 x=351 y=1 width=23 height=30 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="0"
-char id=83 x=375 y=1 width=22 height=30 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="S"
-char id=92 x=398 y=1 width=21 height=30 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="\"
-char id=47 x=420 y=1 width=21 height=30 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="/"
-char id=56 x=442 y=1 width=21 height=30 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="8"
-char id=57 x=464 y=1 width=21 height=30 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="9"
-char id=54 x=486 y=1 width=21 height=30 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="6"
-char id=103 x=1 y=38 width=21 height=30 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="g"
-char id=51 x=23 y=38 width=20 height=30 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="3"
-char id=53 x=44 y=38 width=20 height=30 xoffset=2 yoffset=6 xadvance=21 page=0 chnl=0 letter="5"
-char id=107 x=65 y=38 width=19 height=30 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 letter="k"
-char id=104 x=85 y=38 width=19 height=30 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0 letter="h"
-char id=74 x=105 y=38 width=18 height=30 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=0 letter="J"
-char id=102 x=124 y=38 width=16 height=30 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="f"
-char id=124 x=141 y=38 width=8 height=30 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 letter="|"
-char id=108 x=150 y=38 width=8 height=30 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 letter="l"
-char id=87 x=159 y=38 width=32 height=29 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="W"
-char id=37 x=192 y=38 width=31 height=29 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="%"
-char id=86 x=224 y=38 width=27 height=29 xoffset=-1 yoffset=6 xadvance=23 page=0 chnl=0 letter="V"
-char id=65 x=252 y=38 width=27 height=29 xoffset=-1 yoffset=6 xadvance=23 page=0 chnl=0 letter="A"
-char id=77 x=280 y=38 width=25 height=29 xoffset=1 yoffset=6 xadvance=25 page=0 chnl=0 letter="M"
-char id=35 x=306 y=38 width=25 height=29 xoffset=-1 yoffset=6 xadvance=21 page=0 chnl=0 letter="#"
-char id=84 x=332 y=38 width=24 height=29 xoffset=-1 yoffset=6 xadvance=20 page=0 chnl=0 letter="T"
-char id=78 x=357 y=38 width=23 height=29 xoffset=1 yoffset=6 xadvance=22 page=0 chnl=0 letter="N"
-char id=89 x=381 y=38 width=23 height=29 xoffset=-1 yoffset=6 xadvance=19 page=0 chnl=0 letter="Y"
-char id=88 x=405 y=38 width=23 height=29 xoffset=-1 yoffset=6 xadvance=19 page=0 chnl=0 letter="X"
-char id=68 x=429 y=38 width=23 height=29 xoffset=1 yoffset=6 xadvance=22 page=0 chnl=0 letter="D"
-char id=75 x=453 y=38 width=23 height=29 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="K"
-char id=52 x=477 y=38 width=23 height=29 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="4"
-char id=72 x=1 y=69 width=22 height=29 xoffset=1 yoffset=6 xadvance=22 page=0 chnl=0 letter="H"
-char id=121 x=24 y=69 width=22 height=29 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 letter="y"
-char id=50 x=47 y=69 width=21 height=29 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="2"
-char id=82 x=69 y=69 width=21 height=29 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 letter="R"
-char id=66 x=91 y=69 width=21 height=29 xoffset=1 yoffset=6 xadvance=20 page=0 chnl=0 letter="B"
-char id=76 x=113 y=69 width=21 height=29 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 letter="L"
-char id=55 x=135 y=69 width=21 height=29 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=0 letter="7"
-char id=113 x=157 y=69 width=21 height=29 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="q"
-char id=90 x=179 y=69 width=20 height=29 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="Z"
-char id=80 x=200 y=69 width=20 height=29 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 letter="P"
-char id=112 x=221 y=69 width=20 height=29 xoffset=1 yoffset=13 xadvance=19 page=0 chnl=0 letter="p"
-char id=63 x=242 y=69 width=19 height=29 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="?"
-char id=69 x=262 y=69 width=19 height=29 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 letter="E"
-char id=70 x=282 y=69 width=18 height=29 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 letter="F"
-char id=49 x=301 y=69 width=13 height=29 xoffset=3 yoffset=6 xadvance=21 page=0 chnl=0 letter="1"
-char id=33 x=315 y=69 width=9 height=29 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0 letter="!"
-char id=105 x=325 y=69 width=8 height=29 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 letter="i"
-char id=73 x=334 y=69 width=8 height=29 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 letter="I"
-char id=59 x=343 y=69 width=9 height=28 xoffset=1 yoffset=13 xadvance=9 page=0 chnl=0 letter=";"
-char id=116 x=353 y=69 width=16 height=27 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="t"
-char id=111 x=370 y=69 width=21 height=23 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="o"
-char id=101 x=392 y=69 width=20 height=23 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="e"
-char id=99 x=413 y=69 width=20 height=23 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="c"
-char id=97 x=434 y=69 width=20 height=23 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="a"
-char id=117 x=455 y=69 width=19 height=23 xoffset=1 yoffset=13 xadvance=18 page=0 chnl=0 letter="u"
-char id=115 x=475 y=69 width=18 height=23 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="s"
-char id=109 x=1 y=99 width=29 height=22 xoffset=1 yoffset=13 xadvance=28 page=0 chnl=0 letter="m"
-char id=119 x=31 y=99 width=29 height=22 xoffset=-1 yoffset=13 xadvance=24 page=0 chnl=0 letter="w"
-char id=62 x=61 y=99 width=23 height=22 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter=">"
-char id=43 x=85 y=99 width=23 height=22 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="+"
-char id=118 x=109 y=99 width=22 height=22 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=0 letter="v"
-char id=60 x=132 y=99 width=22 height=22 xoffset=1 yoffset=13 xadvance=21 page=0 chnl=0 letter="<"
-char id=94 x=155 y=99 width=22 height=22 xoffset=1 yoffset=7 xadvance=21 page=0 chnl=0 letter="^"
-char id=110 x=178 y=99 width=19 height=22 xoffset=1 yoffset=13 xadvance=18 page=0 chnl=0 letter="n"
-char id=120 x=198 y=99 width=19 height=22 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="x"
-char id=122 x=218 y=99 width=19 height=22 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="z"
-char id=114 x=238 y=99 width=15 height=22 xoffset=1 yoffset=13 xadvance=12 page=0 chnl=0 letter="r"
-char id=58 x=254 y=99 width=9 height=22 xoffset=1 yoffset=13 xadvance=9 page=0 chnl=0 letter=":"
-char id=42 x=264 y=99 width=18 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="*"
-char id=34 x=283 y=99 width=16 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 letter="""
-char id=39 x=300 y=99 width=9 height=15 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 letter="'"
-char id=44 x=310 y=99 width=9 height=15 xoffset=1 yoffset=26 xadvance=9 page=0 chnl=0 letter=","
-char id=61 x=320 y=99 width=23 height=13 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="="
-char id=126 x=344 y=99 width=23 height=11 xoffset=0 yoffset=19 xadvance=21 page=0 chnl=0 letter="~"
-char id=96 x=368 y=99 width=12 height=10 xoffset=4 yoffset=5 xadvance=18 page=0 chnl=0 letter="`"
-char id=46 x=381 y=99 width=9 height=9 xoffset=1 yoffset=26 xadvance=9 page=0 chnl=0 letter="."
-char id=45 x=391 y=99 width=14 height=8 xoffset=0 yoffset=19 xadvance=12 page=0 chnl=0 letter="-"
-char id=95 x=406 y=99 width=25 height=7 xoffset=-1 yoffset=31 xadvance=21 page=0 chnl=0 letter="_"
-char id=32 x=432 y=99 width=0 height=0 xoffset=-110 yoffset=152 xadvance=10 page=0 chnl=0 letter="space"
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-32.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-32.fnt
deleted file mode 100644
index c2c5b9d7..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-32.fnt
+++ /dev/null
@@ -1,99 +0,0 @@
-info face="Helvetica-Bold" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=32 base=25 scaleW=512 scaleH=128 pages=1 packed=0
-page id=0 file="helvetica-geneva-32.png"
-chars count=95
-char id=125 x=1 y=1 width=15 height=35 xoffset=-1 yoffset=-0 xadvance=12 page=0 chnl=0 letter="}"
-char id=41 x=17 y=1 width=14 height=35 xoffset=-1 yoffset=-0 xadvance=10 page=0 chnl=0 letter=")"
-char id=123 x=32 y=1 width=14 height=35 xoffset=-1 yoffset=-0 xadvance=12 page=0 chnl=0 letter="{"
-char id=93 x=47 y=1 width=13 height=35 xoffset=-1 yoffset=-0 xadvance=10 page=0 chnl=0 letter="]"
-char id=40 x=61 y=1 width=13 height=35 xoffset=0 yoffset=-0 xadvance=10 page=0 chnl=0 letter="("
-char id=91 x=75 y=1 width=12 height=35 xoffset=1 yoffset=-0 xadvance=10 page=0 chnl=0 letter="["
-char id=106 x=88 y=1 width=11 height=35 xoffset=-1 yoffset=-0 xadvance=8 page=0 chnl=0 letter="j"
-char id=36 x=100 y=1 width=21 height=33 xoffset=-1 yoffset=-1 xadvance=17 page=0 chnl=0 letter="$"
-char id=81 x=122 y=1 width=27 height=30 xoffset=0 yoffset=-0 xadvance=24 page=0 chnl=0 letter="Q"
-char id=64 x=150 y=1 width=30 height=29 xoffset=2 yoffset=-0 xadvance=31 page=0 chnl=0 letter="@"
-char id=79 x=181 y=1 width=27 height=29 xoffset=0 yoffset=-0 xadvance=24 page=0 chnl=0 letter="O"
-char id=71 x=209 y=1 width=26 height=29 xoffset=0 yoffset=-0 xadvance=24 page=0 chnl=0 letter="G"
-char id=67 x=236 y=1 width=25 height=29 xoffset=0 yoffset=-0 xadvance=23 page=0 chnl=0 letter="C"
-char id=83 x=262 y=1 width=24 height=29 xoffset=0 yoffset=-0 xadvance=21 page=0 chnl=0 letter="S"
-char id=85 x=287 y=1 width=23 height=29 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="U"
-char id=113 x=311 y=1 width=22 height=29 xoffset=-1 yoffset=6 xadvance=19 page=0 chnl=0 letter="q"
-char id=112 x=334 y=1 width=22 height=29 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="p"
-char id=121 x=357 y=1 width=22 height=29 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="y"
-char id=103 x=380 y=1 width=21 height=29 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="g"
-char id=74 x=402 y=1 width=20 height=29 xoffset=-1 yoffset=-0 xadvance=17 page=0 chnl=0 letter="J"
-char id=87 x=423 y=1 width=34 height=28 xoffset=-1 yoffset=-0 xadvance=30 page=0 chnl=0 letter="W"
-char id=37 x=458 y=1 width=32 height=28 xoffset=-1 yoffset=1 xadvance=28 page=0 chnl=0 letter="%"
-char id=77 x=1 y=37 width=27 height=28 xoffset=1 yoffset=-0 xadvance=26 page=0 chnl=0 letter="M"
-char id=65 x=29 y=37 width=27 height=28 xoffset=-1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="A"
-char id=38 x=57 y=37 width=26 height=28 xoffset=0 yoffset=1 xadvance=23 page=0 chnl=0 letter="&"
-char id=88 x=84 y=37 width=25 height=28 xoffset=-1 yoffset=-0 xadvance=21 page=0 chnl=0 letter="X"
-char id=75 x=110 y=37 width=25 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="K"
-char id=86 x=136 y=37 width=25 height=28 xoffset=-1 yoffset=-0 xadvance=21 page=0 chnl=0 letter="V"
-char id=89 x=162 y=37 width=25 height=28 xoffset=-1 yoffset=-0 xadvance=21 page=0 chnl=0 letter="Y"
-char id=68 x=188 y=37 width=24 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="D"
-char id=78 x=213 y=37 width=24 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="N"
-char id=66 x=238 y=37 width=24 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="B"
-char id=82 x=263 y=37 width=24 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="R"
-char id=84 x=288 y=37 width=24 height=28 xoffset=-1 yoffset=-0 xadvance=19 page=0 chnl=0 letter="T"
-char id=72 x=313 y=37 width=23 height=28 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="H"
-char id=80 x=337 y=37 width=23 height=28 xoffset=1 yoffset=-0 xadvance=21 page=0 chnl=0 letter="P"
-char id=90 x=361 y=37 width=23 height=28 xoffset=-1 yoffset=-0 xadvance=19 page=0 chnl=0 letter="Z"
-char id=69 x=385 y=37 width=23 height=28 xoffset=1 yoffset=-0 xadvance=21 page=0 chnl=0 letter="E"
-char id=98 x=409 y=37 width=22 height=28 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=0 letter="b"
-char id=51 x=432 y=37 width=21 height=28 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="3"
-char id=56 x=454 y=37 width=21 height=28 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="8"
-char id=53 x=476 y=37 width=21 height=28 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="5"
-char id=100 x=1 y=66 width=21 height=28 xoffset=0 yoffset=1 xadvance=19 page=0 chnl=0 letter="d"
-char id=76 x=23 y=66 width=21 height=28 xoffset=1 yoffset=-0 xadvance=19 page=0 chnl=0 letter="L"
-char id=48 x=45 y=66 width=20 height=28 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0 letter="0"
-char id=57 x=66 y=66 width=20 height=28 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0 letter="9"
-char id=54 x=87 y=66 width=20 height=28 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0 letter="6"
-char id=63 x=108 y=66 width=20 height=28 xoffset=1 yoffset=-0 xadvance=19 page=0 chnl=0 letter="?"
-char id=92 x=129 y=66 width=17 height=28 xoffset=-3 yoffset=-0 xadvance=8 page=0 chnl=0 letter="\"
-char id=47 x=147 y=66 width=17 height=28 xoffset=-3 yoffset=-0 xadvance=8 page=0 chnl=0 letter="/"
-char id=102 x=165 y=66 width=15 height=28 xoffset=-1 yoffset=-0 xadvance=10 page=0 chnl=0 letter="f"
-char id=124 x=181 y=66 width=9 height=28 xoffset=0 yoffset=-0 xadvance=8 page=0 chnl=0 letter="|"
-char id=105 x=191 y=66 width=9 height=28 xoffset=1 yoffset=-0 xadvance=8 page=0 chnl=0 letter="i"
-char id=73 x=201 y=66 width=9 height=28 xoffset=1 yoffset=-0 xadvance=8 page=0 chnl=0 letter="I"
-char id=108 x=211 y=66 width=9 height=28 xoffset=1 yoffset=-0 xadvance=8 page=0 chnl=0 letter="l"
-char id=35 x=221 y=66 width=22 height=27 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="#"
-char id=52 x=244 y=66 width=21 height=27 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="4"
-char id=55 x=266 y=66 width=21 height=27 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=0 letter="7"
-char id=70 x=288 y=66 width=21 height=27 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 letter="F"
-char id=104 x=310 y=66 width=20 height=27 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 letter="h"
-char id=50 x=331 y=66 width=20 height=27 xoffset=0 yoffset=1 xadvance=17 page=0 chnl=0 letter="2"
-char id=107 x=352 y=66 width=20 height=27 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=0 letter="k"
-char id=49 x=373 y=66 width=15 height=27 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=0 letter="1"
-char id=116 x=389 y=66 width=14 height=27 xoffset=-1 yoffset=2 xadvance=10 page=0 chnl=0 letter="t"
-char id=33 x=404 y=66 width=10 height=27 xoffset=2 yoffset=1 xadvance=10 page=0 chnl=0 letter="!"
-char id=59 x=415 y=66 width=10 height=27 xoffset=2 yoffset=7 xadvance=10 page=0 chnl=0 letter=";"
-char id=60 x=426 y=66 width=23 height=23 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=0 letter="<"
-char id=62 x=450 y=66 width=23 height=23 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=0 letter=">"
-char id=111 x=474 y=66 width=22 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="o"
-char id=97 x=1 y=95 width=21 height=23 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="a"
-char id=101 x=23 y=95 width=21 height=23 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="e"
-char id=117 x=45 y=95 width=21 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="u"
-char id=115 x=67 y=95 width=20 height=23 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="s"
-char id=99 x=88 y=95 width=20 height=23 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="c"
-char id=119 x=109 y=95 width=29 height=22 xoffset=-1 yoffset=6 xadvance=24 page=0 chnl=0 letter="w"
-char id=109 x=139 y=95 width=29 height=22 xoffset=1 yoffset=6 xadvance=28 page=0 chnl=0 letter="m"
-char id=118 x=169 y=95 width=22 height=22 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=0 letter="v"
-char id=110 x=192 y=95 width=20 height=22 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 letter="n"
-char id=122 x=213 y=95 width=20 height=22 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=0 letter="z"
-char id=114 x=234 y=95 width=14 height=22 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 letter="r"
-char id=120 x=249 y=95 width=22 height=21 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=0 letter="x"
-char id=43 x=272 y=95 width=22 height=21 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="+"
-char id=58 x=295 y=95 width=10 height=21 xoffset=2 yoffset=7 xadvance=10 page=0 chnl=0 letter=":"
-char id=94 x=306 y=95 width=20 height=19 xoffset=1 yoffset=-0 xadvance=18 page=0 chnl=0 letter="^"
-char id=61 x=327 y=95 width=22 height=17 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="="
-char id=42 x=350 y=95 width=16 height=16 xoffset=-1 yoffset=-0 xadvance=12 page=0 chnl=0 letter="*"
-char id=34 x=367 y=95 width=15 height=15 xoffset=-1 yoffset=-0 xadvance=15 page=0 chnl=0 letter="""
-char id=44 x=383 y=95 width=10 height=15 xoffset=0 yoffset=19 xadvance=8 page=0 chnl=0 letter=","
-char id=39 x=394 y=95 width=9 height=15 xoffset=0 yoffset=-0 xadvance=7 page=0 chnl=0 letter="'"
-char id=126 x=404 y=95 width=23 height=13 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=0 letter="~"
-char id=45 x=428 y=95 width=14 height=10 xoffset=-1 yoffset=12 xadvance=10 page=0 chnl=0 letter="-"
-char id=96 x=443 y=95 width=12 height=9 xoffset=-2 yoffset=-0 xadvance=10 page=0 chnl=0 letter="`"
-char id=46 x=456 y=95 width=9 height=9 xoffset=1 yoffset=19 xadvance=8 page=0 chnl=0 letter="."
-char id=95 x=466 y=95 width=22 height=6 xoffset=-1 yoffset=26 xadvance=17 page=0 chnl=0 letter="_"
-char id=32 x=489 y=95 width=0 height=0 xoffset=-112 yoffset=145 xadvance=8 page=0 chnl=0 letter="space"
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-geneva-32.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-geneva-32.xnb
deleted file mode 100644
index 5504ed22..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/helvetica-geneva-32.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.fnt
deleted file mode 100644
index 4a055fdd..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.fnt
+++ /dev/null
@@ -1,96 +0,0 @@
-info face="KonQaBlack" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=40 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="konqa32.png"
-chars count=91
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=32 xadvance=16 page=0 chnl=0
-char id=36 x=0 y=0 width=18 height=37 xoffset=1 yoffset=0 xadvance=18 page=0 chnl=0
-char id=81 x=18 y=0 width=20 height=30 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=64 x=38 y=0 width=20 height=29 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=124 x=58 y=0 width=8 height=28 xoffset=2 yoffset=6 xadvance=10 page=0 chnl=0
-char id=63 x=66 y=0 width=19 height=28 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0
-char id=56 x=85 y=0 width=20 height=28 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0
-char id=90 x=105 y=0 width=20 height=28 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=89 x=125 y=0 width=19 height=28 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0
-char id=87 x=144 y=0 width=28 height=28 xoffset=1 yoffset=5 xadvance=27 page=0 chnl=0
-char id=86 x=172 y=0 width=19 height=28 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0
-char id=85 x=191 y=0 width=20 height=28 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=84 x=211 y=0 width=19 height=28 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0
-char id=82 x=230 y=0 width=20 height=28 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=79 x=250 y=0 width=20 height=28 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0
-char id=92 x=270 y=0 width=18 height=27 xoffset=2 yoffset=6 xadvance=19 page=0 chnl=0
-char id=47 x=288 y=0 width=18 height=27 xoffset=2 yoffset=6 xadvance=19 page=0 chnl=0
-char id=33 x=306 y=0 width=10 height=27 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
-char id=48 x=316 y=0 width=21 height=27 xoffset=1 yoffset=6 xadvance=20 page=0 chnl=0
-char id=57 x=337 y=0 width=19 height=27 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0
-char id=55 x=356 y=0 width=19 height=27 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0
-char id=54 x=375 y=0 width=20 height=27 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0
-char id=53 x=395 y=0 width=19 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0
-char id=52 x=414 y=0 width=19 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0
-char id=51 x=433 y=0 width=18 height=27 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0
-char id=50 x=451 y=0 width=19 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0
-char id=49 x=470 y=0 width=13 height=27 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0
-char id=88 x=483 y=0 width=20 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=83 x=0 y=37 width=20 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=80 x=20 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=78 x=39 y=37 width=21 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=77 x=60 y=37 width=28 height=27 xoffset=1 yoffset=6 xadvance=26 page=0 chnl=0
-char id=76 x=88 y=37 width=19 height=27 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0
-char id=75 x=107 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0
-char id=74 x=126 y=37 width=16 height=27 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
-char id=73 x=142 y=37 width=12 height=27 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
-char id=72 x=154 y=37 width=20 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=71 x=174 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=70 x=193 y=37 width=20 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=69 x=213 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=68 x=232 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0
-char id=67 x=251 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=66 x=270 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=65 x=289 y=37 width=19 height=27 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0
-char id=38 x=308 y=37 width=24 height=26 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0
-char id=37 x=332 y=37 width=27 height=26 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0
-char id=106 x=359 y=37 width=11 height=22 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=0
-char id=125 x=370 y=37 width=11 height=21 xoffset=2 yoffset=12 xadvance=10 page=0 chnl=0
-char id=123 x=381 y=37 width=11 height=21 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0
-char id=93 x=392 y=37 width=11 height=21 xoffset=2 yoffset=12 xadvance=10 page=0 chnl=0
-char id=91 x=403 y=37 width=11 height=21 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0
-char id=41 x=414 y=37 width=12 height=21 xoffset=1 yoffset=12 xadvance=10 page=0 chnl=0
-char id=40 x=426 y=37 width=13 height=21 xoffset=-1 yoffset=12 xadvance=10 page=0 chnl=0
-char id=122 x=439 y=37 width=16 height=21 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0
-char id=121 x=455 y=37 width=15 height=21 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0
-char id=120 x=470 y=37 width=14 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=119 x=484 y=37 width=21 height=21 xoffset=1 yoffset=12 xadvance=20 page=0 chnl=0
-char id=118 x=0 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=13 page=0 chnl=0
-char id=117 x=14 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=116 x=29 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=13 page=0 chnl=0
-char id=115 x=43 y=64 width=16 height=21 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0
-char id=114 x=59 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=113 x=73 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=112 x=88 y=64 width=16 height=21 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0
-char id=111 x=104 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=110 x=119 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=109 x=134 y=64 width=22 height=21 xoffset=1 yoffset=12 xadvance=21 page=0 chnl=0
-char id=108 x=156 y=64 width=11 height=21 xoffset=1 yoffset=12 xadvance=10 page=0 chnl=0
-char id=107 x=167 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0
-char id=105 x=182 y=64 width=8 height=21 xoffset=1 yoffset=12 xadvance=7 page=0 chnl=0
-char id=104 x=190 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=103 x=204 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=102 x=219 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=101 x=234 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=100 x=248 y=64 width=14 height=21 xoffset=1 yoffset=12 xadvance=13 page=0 chnl=0
-char id=99 x=262 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=98 x=277 y=64 width=15 height=21 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
-char id=97 x=292 y=64 width=16 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0
-char id=94 x=308 y=64 width=21 height=20 xoffset=1 yoffset=7 xadvance=21 page=0 chnl=0
-char id=43 x=329 y=64 width=16 height=17 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0
-char id=61 x=345 y=64 width=17 height=14 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0
-char id=59 x=362 y=64 width=10 height=14 xoffset=0 yoffset=27 xadvance=8 page=0 chnl=0
-char id=58 x=372 y=64 width=8 height=13 xoffset=1 yoffset=20 xadvance=8 page=0 chnl=0
-char id=42 x=380 y=64 width=12 height=12 xoffset=5 yoffset=6 xadvance=19 page=0 chnl=0
-char id=34 x=392 y=64 width=15 height=11 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
-char id=126 x=407 y=64 width=21 height=8 xoffset=3 yoffset=19 xadvance=25 page=0 chnl=0
-char id=44 x=428 y=64 width=9 height=8 xoffset=1 yoffset=29 xadvance=8 page=0 chnl=0
-char id=39 x=437 y=64 width=9 height=8 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
-char id=96 x=446 y=64 width=9 height=8 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
-char id=45 x=455 y=64 width=17 height=7 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0
-char id=95 x=472 y=64 width=16 height=6 xoffset=1 yoffset=28 xadvance=17 page=0 chnl=0
-char id=46 x=488 y=64 width=8 height=6 xoffset=0 yoffset=27 xadvance=7 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.xnb
deleted file mode 100644
index e396b587..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/konqa32.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/labelatlas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/labelatlas.xnb
deleted file mode 100644
index 20e9b2fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/labelatlas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/larabie-16.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/larabie-16.xnb
deleted file mode 100644
index 4e9ca116..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/larabie-16.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.fnt
deleted file mode 100644
index b62acc9f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.fnt
+++ /dev/null
@@ -1,3769 +0,0 @@
-info face="MarkerFelt-Thin" size=25 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2
-common lineHeight=27 base=22 scaleW=256 scaleH=256 pages=1 packed=0
-page id=0 file="markerFelt.png"
-chars count=95
-char id=106 x=2 y=2 width=6 height=26 xoffset=-2 yoffset=1 xadvance=5 page=0 chnl=0 letter="j"
-char id=87 x=10 y=2 width=25 height=25 xoffset=0 yoffset=-1 xadvance=24 page=0 chnl=0 letter="W"
-char id=81 x=37 y=2 width=16 height=25 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="Q"
-char id=77 x=55 y=2 width=23 height=24 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="M"
-char id=90 x=80 y=2 width=17 height=24 xoffset=0 yoffset=-1 xadvance=15 page=0 chnl=0 letter="Z"
-char id=88 x=99 y=2 width=16 height=24 xoffset=0 yoffset=-0 xadvance=15 page=0 chnl=0 letter="X"
-char id=89 x=117 y=2 width=16 height=24 xoffset=1 yoffset=-0 xadvance=15 page=0 chnl=0 letter="Y"
-char id=65 x=135 y=2 width=15 height=24 xoffset=1 yoffset=-0 xadvance=16 page=0 chnl=0 letter="A"
-char id=75 x=152 y=2 width=15 height=24 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="K"
-char id=86 x=169 y=2 width=15 height=24 xoffset=0 yoffset=-0 xadvance=14 page=0 chnl=0 letter="V"
-char id=52 x=186 y=2 width=15 height=24 xoffset=0 yoffset=-0 xadvance=14 page=0 chnl=0 letter="4"
-char id=78 x=203 y=2 width=14 height=24 xoffset=1 yoffset=-0 xadvance=15 page=0 chnl=0 letter="N"
-char id=53 x=219 y=2 width=14 height=24 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="5"
-char id=85 x=235 y=2 width=14 height=24 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="U"
-char id=55 x=2 y=30 width=14 height=24 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="7"
-char id=84 x=18 y=30 width=13 height=24 xoffset=0 yoffset=-0 xadvance=12 page=0 chnl=0 letter="T"
-char id=83 x=33 y=30 width=13 height=24 xoffset=0 yoffset=-0 xadvance=12 page=0 chnl=0 letter="S"
-char id=48 x=48 y=30 width=12 height=24 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="0"
-char id=68 x=62 y=30 width=12 height=24 xoffset=1 yoffset=-0 xadvance=12 page=0 chnl=0 letter="D"
-char id=76 x=76 y=30 width=12 height=24 xoffset=1 yoffset=-0 xadvance=10 page=0 chnl=0 letter="L"
-char id=74 x=90 y=30 width=12 height=24 xoffset=0 yoffset=-0 xadvance=11 page=0 chnl=0 letter="J"
-char id=56 x=104 y=30 width=12 height=24 xoffset=2 yoffset=-0 xadvance=14 page=0 chnl=0 letter="8"
-char id=80 x=118 y=30 width=12 height=24 xoffset=1 yoffset=-0 xadvance=11 page=0 chnl=0 letter="P"
-char id=63 x=132 y=30 width=11 height=24 xoffset=0 yoffset=-0 xadvance=10 page=0 chnl=0 letter="?"
-char id=69 x=145 y=30 width=11 height=24 xoffset=1 yoffset=-0 xadvance=11 page=0 chnl=0 letter="E"
-char id=108 x=158 y=30 width=5 height=24 xoffset=1 yoffset=-0 xadvance=5 page=0 chnl=0 letter="l"
-char id=124 x=165 y=30 width=5 height=24 xoffset=1 yoffset=-0 xadvance=5 page=0 chnl=0 letter="|"
-char id=64 x=172 y=30 width=23 height=23 xoffset=1 yoffset=-0 xadvance=23 page=0 chnl=0 letter="@"
-char id=82 x=197 y=30 width=16 height=23 xoffset=1 yoffset=1 xadvance=14 page=0 chnl=0 letter="R"
-char id=38 x=215 y=30 width=16 height=23 xoffset=1 yoffset=1 xadvance=14 page=0 chnl=0 letter="&"
-char id=50 x=233 y=30 width=15 height=23 xoffset=1 yoffset=-0 xadvance=14 page=0 chnl=0 letter="2"
-char id=92 x=2 y=56 width=14 height=23 xoffset=0 yoffset=-0 xadvance=13 page=0 chnl=0 letter="\"
-char id=47 x=18 y=56 width=13 height=23 xoffset=0 yoffset=-0 xadvance=13 page=0 chnl=0 letter="/"
-char id=71 x=33 y=56 width=13 height=23 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 letter="G"
-char id=107 x=48 y=56 width=13 height=23 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 letter="k"
-char id=66 x=63 y=56 width=13 height=23 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 letter="B"
-char id=36 x=78 y=56 width=13 height=23 xoffset=1 yoffset=1 xadvance=13 page=0 chnl=0 letter="$"
-char id=104 x=93 y=56 width=12 height=23 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 letter="h"
-char id=72 x=107 y=56 width=12 height=23 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 letter="H"
-char id=102 x=121 y=56 width=11 height=23 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="f"
-char id=91 x=134 y=56 width=11 height=23 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="["
-char id=93 x=147 y=56 width=10 height=23 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="]"
-char id=49 x=159 y=56 width=8 height=23 xoffset=3 yoffset=1 xadvance=14 page=0 chnl=0 letter="1"
-char id=73 x=169 y=56 width=6 height=23 xoffset=1 yoffset=-0 xadvance=6 page=0 chnl=0 letter="I"
-char id=33 x=177 y=56 width=5 height=23 xoffset=1 yoffset=1 xadvance=5 page=0 chnl=0 letter="!"
-char id=37 x=184 y=56 width=18 height=22 xoffset=1 yoffset=2 xadvance=18 page=0 chnl=0 letter="%"
-char id=79 x=204 y=56 width=13 height=22 xoffset=1 yoffset=2 xadvance=14 page=0 chnl=0 letter="O"
-char id=51 x=219 y=56 width=12 height=22 xoffset=1 yoffset=1 xadvance=14 page=0 chnl=0 letter="3"
-char id=54 x=233 y=56 width=12 height=22 xoffset=2 yoffset=2 xadvance=14 page=0 chnl=0 letter="6"
-char id=57 x=2 y=81 width=12 height=22 xoffset=1 yoffset=2 xadvance=14 page=0 chnl=0 letter="9"
-char id=67 x=16 y=81 width=12 height=22 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="C"
-char id=123 x=30 y=81 width=11 height=22 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="{"
-char id=125 x=43 y=81 width=11 height=22 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="}"
-char id=70 x=56 y=81 width=11 height=22 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 letter="F"
-char id=100 x=69 y=81 width=11 height=22 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="d"
-char id=113 x=82 y=81 width=11 height=22 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 letter="q"
-char id=112 x=95 y=81 width=10 height=22 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 letter="p"
-char id=98 x=107 y=81 width=10 height=22 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 letter="b"
-char id=40 x=119 y=81 width=6 height=22 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=0 letter="("
-char id=41 x=127 y=81 width=6 height=22 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=0 letter=")"
-char id=105 x=135 y=81 width=5 height=22 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 letter="i"
-char id=116 x=142 y=81 width=12 height=21 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0 letter="t"
-char id=121 x=156 y=81 width=12 height=20 xoffset=-0 yoffset=8 xadvance=12 page=0 chnl=0 letter="y"
-char id=103 x=170 y=81 width=10 height=20 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 letter="g"
-char id=59 x=182 y=81 width=7 height=19 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0 letter=";"
-char id=119 x=191 y=81 width=20 height=18 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=0 letter="w"
-char id=109 x=213 y=81 width=18 height=18 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 letter="m"
-char id=122 x=233 y=81 width=13 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="z"
-char id=110 x=2 y=105 width=13 height=18 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 letter="n"
-char id=120 x=17 y=105 width=12 height=18 xoffset=-0 yoffset=6 xadvance=10 page=0 chnl=0 letter="x"
-char id=114 x=31 y=105 width=11 height=18 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 letter="r"
-char id=117 x=44 y=105 width=11 height=18 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 letter="u"
-char id=118 x=57 y=105 width=14 height=17 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 letter="v"
-char id=111 x=73 y=105 width=10 height=17 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="o"
-char id=101 x=85 y=105 width=10 height=17 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 letter="e"
-char id=62 x=97 y=105 width=10 height=17 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 letter=">"
-char id=99 x=109 y=105 width=9 height=17 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 letter="c"
-char id=60 x=120 y=105 width=8 height=17 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 letter="<"
-char id=35 x=130 y=105 width=14 height=16 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="#"
-char id=97 x=146 y=105 width=12 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="a"
-char id=115 x=160 y=105 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="s"
-char id=58 x=172 y=105 width=6 height=15 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 letter=":"
-char id=43 x=180 y=105 width=12 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="+"
-char id=42 x=194 y=105 width=12 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="*"
-char id=61 x=208 y=105 width=9 height=11 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 letter="="
-char id=34 x=219 y=105 width=8 height=9 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 letter="""
-char id=39 x=229 y=105 width=4 height=9 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="'"
-char id=94 x=235 y=105 width=9 height=8 xoffset=0 yoffset=-0 xadvance=8 page=0 chnl=0 letter="^"
-char id=96 x=246 y=105 width=6 height=8 xoffset=0 yoffset=-0 xadvance=5 page=0 chnl=0 letter="`"
-char id=44 x=2 y=125 width=6 height=8 xoffset=-1 yoffset=18 xadvance=5 page=0 chnl=0 letter=","
-char id=45 x=10 y=125 width=9 height=7 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 letter="-"
-char id=46 x=21 y=125 width=5 height=7 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 letter="."
-char id=95 x=28 y=125 width=12 height=6 xoffset=0 yoffset=22 xadvance=12 page=0 chnl=0 letter="_"
-char id=126 x=42 y=125 width=9 height=6 xoffset=0 yoffset=-0 xadvance=8 page=0 chnl=0 letter="~"
-char id=32 x=53 y=125 width=0 height=0 xoffset=6 yoffset=42 xadvance=6 page=0 chnl=0 letter="space"
-kernings count=3669
-kerning first=106 second=106 amount=2
-kerning first=106 second=56 amount=-1
-kerning first=106 second=63 amount=1
-kerning first=106 second=108 amount=1
-kerning first=106 second=107 amount=1
-kerning first=106 second=102 amount=1
-kerning first=106 second=49 amount=-2
-kerning first=106 second=33 amount=1
-kerning first=106 second=100 amount=1
-kerning first=106 second=112 amount=1
-kerning first=106 second=98 amount=1
-kerning first=106 second=40 amount=1
-kerning first=106 second=105 amount=1
-kerning first=106 second=116 amount=1
-kerning first=106 second=121 amount=1
-kerning first=106 second=103 amount=1
-kerning first=106 second=59 amount=2
-kerning first=106 second=119 amount=2
-kerning first=106 second=122 amount=1
-kerning first=106 second=110 amount=1
-kerning first=106 second=120 amount=1
-kerning first=106 second=114 amount=1
-kerning first=106 second=117 amount=1
-kerning first=106 second=118 amount=2
-kerning first=106 second=111 amount=1
-kerning first=106 second=101 amount=1
-kerning first=106 second=99 amount=1
-kerning first=106 second=97 amount=1
-kerning first=106 second=115 amount=1
-kerning first=106 second=34 amount=1
-kerning first=106 second=39 amount=1
-kerning first=106 second=44 amount=1
-kerning first=106 second=46 amount=1
-kerning first=87 second=87 amount=1
-kerning first=87 second=81 amount=-1
-kerning first=87 second=90 amount=-1
-kerning first=87 second=88 amount=1
-kerning first=87 second=89 amount=1
-kerning first=87 second=65 amount=-3
-kerning first=87 second=75 amount=1
-kerning first=87 second=86 amount=1
-kerning first=87 second=52 amount=-2
-kerning first=87 second=53 amount=-1
-kerning first=87 second=85 amount=1
-kerning first=87 second=55 amount=-1
-kerning first=87 second=83 amount=-1
-kerning first=87 second=48 amount=-2
-kerning first=87 second=76 amount=1
-kerning first=87 second=74 amount=-3
-kerning first=87 second=56 amount=-2
-kerning first=87 second=80 amount=1
-kerning first=87 second=108 amount=1
-kerning first=87 second=64 amount=-3
-kerning first=87 second=82 amount=1
-kerning first=87 second=50 amount=-2
-kerning first=87 second=92 amount=1
-kerning first=87 second=47 amount=-3
-kerning first=87 second=71 amount=-1
-kerning first=87 second=107 amount=1
-kerning first=87 second=66 amount=1
-kerning first=87 second=102 amount=-1
-kerning first=87 second=93 amount=1
-kerning first=87 second=49 amount=-2
-kerning first=87 second=73 amount=1
-kerning first=87 second=33 amount=1
-kerning first=87 second=79 amount=-1
-kerning first=87 second=51 amount=-2
-kerning first=87 second=54 amount=-2
-kerning first=87 second=57 amount=-2
-kerning first=87 second=67 amount=-1
-kerning first=87 second=100 amount=-2
-kerning first=87 second=113 amount=-2
-kerning first=87 second=112 amount=-1
-kerning first=87 second=41 amount=1
-kerning first=87 second=116 amount=-1
-kerning first=87 second=103 amount=-2
-kerning first=87 second=59 amount=-2
-kerning first=87 second=109 amount=-1
-kerning first=87 second=122 amount=-2
-kerning first=87 second=110 amount=-1
-kerning first=87 second=120 amount=-1
-kerning first=87 second=114 amount=-1
-kerning first=87 second=117 amount=-1
-kerning first=87 second=111 amount=-2
-kerning first=87 second=101 amount=-2
-kerning first=87 second=99 amount=-2
-kerning first=87 second=35 amount=-1
-kerning first=87 second=97 amount=-2
-kerning first=87 second=115 amount=-2
-kerning first=87 second=58 amount=-2
-kerning first=87 second=34 amount=1
-kerning first=87 second=39 amount=2
-kerning first=87 second=44 amount=-4
-kerning first=87 second=45 amount=-2
-kerning first=87 second=46 amount=-3
-kerning first=81 second=106 amount=3
-kerning first=81 second=77 amount=1
-kerning first=81 second=90 amount=1
-kerning first=81 second=88 amount=2
-kerning first=81 second=89 amount=-1
-kerning first=81 second=65 amount=1
-kerning first=81 second=75 amount=1
-kerning first=81 second=86 amount=-1
-kerning first=81 second=78 amount=1
-kerning first=81 second=55 amount=1
-kerning first=81 second=68 amount=1
-kerning first=81 second=76 amount=1
-kerning first=81 second=56 amount=-1
-kerning first=81 second=80 amount=2
-kerning first=81 second=69 amount=1
-kerning first=81 second=108 amount=2
-kerning first=81 second=82 amount=1
-kerning first=81 second=50 amount=1
-kerning first=81 second=92 amount=-1
-kerning first=81 second=47 amount=1
-kerning first=81 second=107 amount=2
-kerning first=81 second=66 amount=1
-kerning first=81 second=104 amount=1
-kerning first=81 second=72 amount=1
-kerning first=81 second=102 amount=1
-kerning first=81 second=93 amount=1
-kerning first=81 second=49 amount=-2
-kerning first=81 second=73 amount=1
-kerning first=81 second=33 amount=2
-kerning first=81 second=51 amount=-1
-kerning first=81 second=54 amount=-1
-kerning first=81 second=57 amount=-1
-kerning first=81 second=67 amount=1
-kerning first=81 second=70 amount=1
-kerning first=81 second=112 amount=2
-kerning first=81 second=98 amount=2
-kerning first=81 second=40 amount=1
-kerning first=81 second=41 amount=1
-kerning first=81 second=105 amount=2
-kerning first=81 second=116 amount=1
-kerning first=81 second=121 amount=1
-kerning first=81 second=103 amount=1
-kerning first=81 second=59 amount=3
-kerning first=81 second=119 amount=2
-kerning first=81 second=122 amount=2
-kerning first=81 second=110 amount=2
-kerning first=81 second=120 amount=2
-kerning first=81 second=114 amount=2
-kerning first=81 second=117 amount=1
-kerning first=81 second=118 amount=1
-kerning first=81 second=111 amount=1
-kerning first=81 second=99 amount=1
-kerning first=81 second=97 amount=2
-kerning first=81 second=115 amount=1
-kerning first=81 second=58 amount=2
-kerning first=81 second=44 amount=3
-kerning first=81 second=46 amount=2
-kerning first=77 second=106 amount=1
-kerning first=77 second=90 amount=1
-kerning first=77 second=88 amount=1
-kerning first=77 second=65 amount=1
-kerning first=77 second=75 amount=1
-kerning first=77 second=48 amount=-1
-kerning first=77 second=56 amount=-1
-kerning first=77 second=80 amount=1
-kerning first=77 second=69 amount=1
-kerning first=77 second=108 amount=1
-kerning first=77 second=50 amount=1
-kerning first=77 second=47 amount=1
-kerning first=77 second=107 amount=1
-kerning first=77 second=66 amount=1
-kerning first=77 second=104 amount=1
-kerning first=77 second=49 amount=-3
-kerning first=77 second=73 amount=1
-kerning first=77 second=33 amount=1
-kerning first=77 second=51 amount=-1
-kerning first=77 second=54 amount=-1
-kerning first=77 second=57 amount=-1
-kerning first=77 second=70 amount=1
-kerning first=77 second=112 amount=1
-kerning first=77 second=98 amount=1
-kerning first=77 second=41 amount=1
-kerning first=77 second=105 amount=1
-kerning first=77 second=116 amount=1
-kerning first=77 second=59 amount=1
-kerning first=77 second=119 amount=1
-kerning first=77 second=122 amount=1
-kerning first=77 second=110 amount=1
-kerning first=77 second=120 amount=2
-kerning first=77 second=114 amount=1
-kerning first=77 second=118 amount=1
-kerning first=77 second=97 amount=1
-kerning first=77 second=115 amount=1
-kerning first=77 second=58 amount=1
-kerning first=77 second=44 amount=1
-kerning first=77 second=46 amount=1
-kerning first=90 second=87 amount=1
-kerning first=90 second=81 amount=-1
-kerning first=90 second=88 amount=1
-kerning first=90 second=89 amount=1
-kerning first=90 second=65 amount=-1
-kerning first=90 second=75 amount=1
-kerning first=90 second=86 amount=1
-kerning first=90 second=52 amount=-4
-kerning first=90 second=78 amount=1
-kerning first=90 second=53 amount=-1
-kerning first=90 second=85 amount=1
-kerning first=90 second=83 amount=-1
-kerning first=90 second=48 amount=-1
-kerning first=90 second=68 amount=1
-kerning first=90 second=76 amount=1
-kerning first=90 second=74 amount=-3
-kerning first=90 second=56 amount=-1
-kerning first=90 second=80 amount=1
-kerning first=90 second=63 amount=-1
-kerning first=90 second=69 amount=1
-kerning first=90 second=108 amount=1
-kerning first=90 second=64 amount=-2
-kerning first=90 second=82 amount=1
-kerning first=90 second=50 amount=-1
-kerning first=90 second=92 amount=1
-kerning first=90 second=107 amount=1
-kerning first=90 second=66 amount=1
-kerning first=90 second=104 amount=1
-kerning first=90 second=102 amount=-1
-kerning first=90 second=93 amount=1
-kerning first=90 second=49 amount=-2
-kerning first=90 second=73 amount=1
-kerning first=90 second=33 amount=1
-kerning first=90 second=51 amount=-2
-kerning first=90 second=54 amount=-2
-kerning first=90 second=57 amount=-1
-kerning first=90 second=100 amount=-1
-kerning first=90 second=113 amount=-1
-kerning first=90 second=112 amount=-1
-kerning first=90 second=98 amount=1
-kerning first=90 second=41 amount=1
-kerning first=90 second=105 amount=1
-kerning first=90 second=116 amount=-2
-kerning first=90 second=121 amount=-2
-kerning first=90 second=103 amount=-1
-kerning first=90 second=59 amount=-1
-kerning first=90 second=119 amount=-1
-kerning first=90 second=109 amount=-1
-kerning first=90 second=122 amount=-1
-kerning first=90 second=110 amount=-1
-kerning first=90 second=114 amount=-1
-kerning first=90 second=117 amount=-1
-kerning first=90 second=118 amount=-2
-kerning first=90 second=111 amount=-1
-kerning first=90 second=101 amount=-1
-kerning first=90 second=99 amount=-1
-kerning first=90 second=35 amount=-3
-kerning first=90 second=115 amount=-1
-kerning first=90 second=58 amount=-1
-kerning first=90 second=34 amount=2
-kerning first=90 second=39 amount=2
-kerning first=90 second=45 amount=-5
-kerning first=88 second=106 amount=1
-kerning first=88 second=81 amount=-1
-kerning first=88 second=90 amount=1
-kerning first=88 second=88 amount=1
-kerning first=88 second=65 amount=1
-kerning first=88 second=52 amount=-2
-kerning first=88 second=84 amount=-1
-kerning first=88 second=83 amount=-1
-kerning first=88 second=48 amount=-1
-kerning first=88 second=74 amount=-2
-kerning first=88 second=56 amount=-1
-kerning first=88 second=80 amount=1
-kerning first=88 second=63 amount=-2
-kerning first=88 second=69 amount=1
-kerning first=88 second=108 amount=1
-kerning first=88 second=64 amount=-1
-kerning first=88 second=47 amount=1
-kerning first=88 second=71 amount=-1
-kerning first=88 second=107 amount=1
-kerning first=88 second=102 amount=-1
-kerning first=88 second=49 amount=-3
-kerning first=88 second=73 amount=1
-kerning first=88 second=33 amount=1
-kerning first=88 second=79 amount=-1
-kerning first=88 second=51 amount=-1
-kerning first=88 second=54 amount=-2
-kerning first=88 second=57 amount=-1
-kerning first=88 second=112 amount=1
-kerning first=88 second=98 amount=1
-kerning first=88 second=41 amount=1
-kerning first=88 second=105 amount=1
-kerning first=88 second=116 amount=-1
-kerning first=88 second=121 amount=-2
-kerning first=88 second=59 amount=1
-kerning first=88 second=122 amount=1
-kerning first=88 second=110 amount=1
-kerning first=88 second=120 amount=1
-kerning first=88 second=114 amount=1
-kerning first=88 second=118 amount=-1
-kerning first=88 second=35 amount=-3
-kerning first=88 second=97 amount=1
-kerning first=88 second=115 amount=1
-kerning first=88 second=58 amount=1
-kerning first=88 second=44 amount=1
-kerning first=88 second=45 amount=-3
-kerning first=88 second=46 amount=2
-kerning first=89 second=106 amount=1
-kerning first=89 second=87 amount=1
-kerning first=89 second=81 amount=-1
-kerning first=89 second=77 amount=1
-kerning first=89 second=88 amount=1
-kerning first=89 second=89 amount=1
-kerning first=89 second=65 amount=-3
-kerning first=89 second=75 amount=1
-kerning first=89 second=86 amount=2
-kerning first=89 second=52 amount=-3
-kerning first=89 second=78 amount=1
-kerning first=89 second=85 amount=1
-kerning first=89 second=84 amount=1
-kerning first=89 second=48 amount=-1
-kerning first=89 second=68 amount=1
-kerning first=89 second=76 amount=1
-kerning first=89 second=74 amount=-3
-kerning first=89 second=56 amount=-1
-kerning first=89 second=80 amount=1
-kerning first=89 second=69 amount=1
-kerning first=89 second=108 amount=1
-kerning first=89 second=64 amount=-3
-kerning first=89 second=82 amount=1
-kerning first=89 second=50 amount=-2
-kerning first=89 second=92 amount=1
-kerning first=89 second=47 amount=-1
-kerning first=89 second=107 amount=1
-kerning first=89 second=66 amount=1
-kerning first=89 second=104 amount=1
-kerning first=89 second=72 amount=1
-kerning first=89 second=102 amount=-1
-kerning first=89 second=93 amount=1
-kerning first=89 second=49 amount=-2
-kerning first=89 second=73 amount=1
-kerning first=89 second=33 amount=1
-kerning first=89 second=51 amount=-2
-kerning first=89 second=54 amount=-1
-kerning first=89 second=57 amount=-1
-kerning first=89 second=70 amount=1
-kerning first=89 second=100 amount=-2
-kerning first=89 second=113 amount=-2
-kerning first=89 second=112 amount=-1
-kerning first=89 second=98 amount=1
-kerning first=89 second=41 amount=1
-kerning first=89 second=105 amount=1
-kerning first=89 second=116 amount=-1
-kerning first=89 second=121 amount=-1
-kerning first=89 second=103 amount=-2
-kerning first=89 second=59 amount=-2
-kerning first=89 second=109 amount=-1
-kerning first=89 second=122 amount=-2
-kerning first=89 second=110 amount=-1
-kerning first=89 second=120 amount=-1
-kerning first=89 second=114 amount=-1
-kerning first=89 second=117 amount=-1
-kerning first=89 second=111 amount=-2
-kerning first=89 second=101 amount=-3
-kerning first=89 second=99 amount=-2
-kerning first=89 second=35 amount=-1
-kerning first=89 second=97 amount=-2
-kerning first=89 second=115 amount=-2
-kerning first=89 second=58 amount=-2
-kerning first=89 second=34 amount=2
-kerning first=89 second=39 amount=2
-kerning first=89 second=44 amount=-4
-kerning first=89 second=45 amount=-3
-kerning first=89 second=46 amount=-4
-kerning first=65 second=87 amount=-2
-kerning first=65 second=88 amount=1
-kerning first=65 second=89 amount=-3
-kerning first=65 second=86 amount=-2
-kerning first=65 second=53 amount=-1
-kerning first=65 second=84 amount=-2
-kerning first=65 second=83 amount=1
-kerning first=65 second=56 amount=-1
-kerning first=65 second=63 amount=-1
-kerning first=65 second=108 amount=1
-kerning first=65 second=92 amount=-3
-kerning first=65 second=71 amount=1
-kerning first=65 second=102 amount=-1
-kerning first=65 second=93 amount=-1
-kerning first=65 second=49 amount=-4
-kerning first=65 second=51 amount=-2
-kerning first=65 second=54 amount=-1
-kerning first=65 second=57 amount=-1
-kerning first=65 second=67 amount=1
-kerning first=65 second=100 amount=1
-kerning first=65 second=113 amount=1
-kerning first=65 second=105 amount=1
-kerning first=65 second=116 amount=-1
-kerning first=65 second=103 amount=1
-kerning first=65 second=59 amount=1
-kerning first=65 second=122 amount=1
-kerning first=65 second=110 amount=1
-kerning first=65 second=120 amount=1
-kerning first=65 second=114 amount=1
-kerning first=65 second=117 amount=1
-kerning first=65 second=111 amount=1
-kerning first=65 second=101 amount=1
-kerning first=65 second=99 amount=1
-kerning first=65 second=97 amount=1
-kerning first=65 second=34 amount=-4
-kerning first=65 second=39 amount=-3
-kerning first=65 second=44 amount=1
-kerning first=65 second=46 amount=1
-kerning first=75 second=106 amount=1
-kerning first=75 second=77 amount=1
-kerning first=75 second=90 amount=1
-kerning first=75 second=88 amount=2
-kerning first=75 second=65 amount=1
-kerning first=75 second=75 amount=1
-kerning first=75 second=52 amount=-3
-kerning first=75 second=78 amount=1
-kerning first=75 second=53 amount=1
-kerning first=75 second=55 amount=1
-kerning first=75 second=84 amount=-1
-kerning first=75 second=76 amount=1
-kerning first=75 second=74 amount=-1
-kerning first=75 second=80 amount=1
-kerning first=75 second=63 amount=-1
-kerning first=75 second=69 amount=1
-kerning first=75 second=108 amount=1
-kerning first=75 second=82 amount=1
-kerning first=75 second=50 amount=1
-kerning first=75 second=47 amount=1
-kerning first=75 second=107 amount=1
-kerning first=75 second=66 amount=1
-kerning first=75 second=104 amount=1
-kerning first=75 second=72 amount=1
-kerning first=75 second=102 amount=-1
-kerning first=75 second=49 amount=-3
-kerning first=75 second=73 amount=1
-kerning first=75 second=33 amount=1
-kerning first=75 second=54 amount=-1
-kerning first=75 second=67 amount=1
-kerning first=75 second=70 amount=1
-kerning first=75 second=100 amount=1
-kerning first=75 second=113 amount=1
-kerning first=75 second=112 amount=1
-kerning first=75 second=98 amount=1
-kerning first=75 second=40 amount=1
-kerning first=75 second=41 amount=1
-kerning first=75 second=105 amount=1
-kerning first=75 second=116 amount=-1
-kerning first=75 second=121 amount=-1
-kerning first=75 second=103 amount=1
-kerning first=75 second=59 amount=1
-kerning first=75 second=122 amount=1
-kerning first=75 second=110 amount=1
-kerning first=75 second=120 amount=2
-kerning first=75 second=114 amount=1
-kerning first=75 second=117 amount=1
-kerning first=75 second=111 amount=1
-kerning first=75 second=101 amount=1
-kerning first=75 second=99 amount=1
-kerning first=75 second=35 amount=-4
-kerning first=75 second=97 amount=2
-kerning first=75 second=115 amount=1
-kerning first=75 second=58 amount=1
-kerning first=75 second=44 amount=1
-kerning first=75 second=45 amount=-4
-kerning first=75 second=46 amount=2
-kerning first=86 second=87 amount=1
-kerning first=86 second=81 amount=-1
-kerning first=86 second=90 amount=-1
-kerning first=86 second=88 amount=1
-kerning first=86 second=89 amount=1
-kerning first=86 second=65 amount=-3
-kerning first=86 second=75 amount=1
-kerning first=86 second=86 amount=1
-kerning first=86 second=52 amount=-2
-kerning first=86 second=78 amount=1
-kerning first=86 second=53 amount=-1
-kerning first=86 second=85 amount=1
-kerning first=86 second=83 amount=-1
-kerning first=86 second=48 amount=-2
-kerning first=86 second=68 amount=1
-kerning first=86 second=76 amount=1
-kerning first=86 second=74 amount=-2
-kerning first=86 second=56 amount=-1
-kerning first=86 second=80 amount=1
-kerning first=86 second=69 amount=1
-kerning first=86 second=108 amount=1
-kerning first=86 second=64 amount=-3
-kerning first=86 second=82 amount=1
-kerning first=86 second=50 amount=-2
-kerning first=86 second=92 amount=1
-kerning first=86 second=47 amount=-3
-kerning first=86 second=107 amount=1
-kerning first=86 second=66 amount=1
-kerning first=86 second=104 amount=1
-kerning first=86 second=102 amount=-1
-kerning first=86 second=93 amount=1
-kerning first=86 second=49 amount=-2
-kerning first=86 second=73 amount=1
-kerning first=86 second=33 amount=1
-kerning first=86 second=51 amount=-2
-kerning first=86 second=54 amount=-2
-kerning first=86 second=57 amount=-1
-kerning first=86 second=100 amount=-2
-kerning first=86 second=113 amount=-2
-kerning first=86 second=112 amount=-1
-kerning first=86 second=98 amount=1
-kerning first=86 second=41 amount=1
-kerning first=86 second=105 amount=1
-kerning first=86 second=103 amount=-2
-kerning first=86 second=59 amount=-1
-kerning first=86 second=109 amount=-1
-kerning first=86 second=122 amount=-2
-kerning first=86 second=110 amount=-1
-kerning first=86 second=120 amount=-1
-kerning first=86 second=114 amount=-1
-kerning first=86 second=117 amount=-1
-kerning first=86 second=111 amount=-2
-kerning first=86 second=101 amount=-2
-kerning first=86 second=99 amount=-2
-kerning first=86 second=35 amount=-1
-kerning first=86 second=97 amount=-1
-kerning first=86 second=115 amount=-2
-kerning first=86 second=58 amount=-2
-kerning first=86 second=34 amount=2
-kerning first=86 second=39 amount=2
-kerning first=86 second=44 amount=-3
-kerning first=86 second=45 amount=-2
-kerning first=86 second=46 amount=-3
-kerning first=52 second=106 amount=1
-kerning first=52 second=87 amount=-1
-kerning first=52 second=81 amount=1
-kerning first=52 second=90 amount=-2
-kerning first=52 second=88 amount=-2
-kerning first=52 second=89 amount=-2
-kerning first=52 second=65 amount=-1
-kerning first=52 second=86 amount=-1
-kerning first=52 second=85 amount=1
-kerning first=52 second=84 amount=-2
-kerning first=52 second=83 amount=-1
-kerning first=52 second=80 amount=1
-kerning first=52 second=63 amount=-1
-kerning first=52 second=69 amount=1
-kerning first=52 second=108 amount=1
-kerning first=52 second=92 amount=-2
-kerning first=52 second=47 amount=-2
-kerning first=52 second=71 amount=1
-kerning first=52 second=107 amount=1
-kerning first=52 second=66 amount=1
-kerning first=52 second=104 amount=1
-kerning first=52 second=72 amount=1
-kerning first=52 second=102 amount=1
-kerning first=52 second=93 amount=-2
-kerning first=52 second=73 amount=1
-kerning first=52 second=33 amount=1
-kerning first=52 second=79 amount=1
-kerning first=52 second=67 amount=1
-kerning first=52 second=100 amount=1
-kerning first=52 second=113 amount=1
-kerning first=52 second=112 amount=1
-kerning first=52 second=98 amount=1
-kerning first=52 second=40 amount=1
-kerning first=52 second=41 amount=-1
-kerning first=52 second=105 amount=1
-kerning first=52 second=116 amount=1
-kerning first=52 second=121 amount=1
-kerning first=52 second=103 amount=1
-kerning first=52 second=119 amount=1
-kerning first=52 second=122 amount=-1
-kerning first=52 second=110 amount=1
-kerning first=52 second=114 amount=1
-kerning first=52 second=117 amount=1
-kerning first=52 second=118 amount=1
-kerning first=52 second=111 amount=1
-kerning first=52 second=101 amount=1
-kerning first=52 second=99 amount=1
-kerning first=52 second=35 amount=1
-kerning first=52 second=97 amount=1
-kerning first=52 second=115 amount=1
-kerning first=52 second=34 amount=-2
-kerning first=52 second=39 amount=-1
-kerning first=52 second=44 amount=-2
-kerning first=52 second=45 amount=1
-kerning first=52 second=46 amount=-2
-kerning first=78 second=106 amount=1
-kerning first=78 second=87 amount=1
-kerning first=78 second=90 amount=1
-kerning first=78 second=88 amount=1
-kerning first=78 second=65 amount=1
-kerning first=78 second=75 amount=1
-kerning first=78 second=86 amount=1
-kerning first=78 second=85 amount=1
-kerning first=78 second=83 amount=1
-kerning first=78 second=48 amount=-1
-kerning first=78 second=76 amount=1
-kerning first=78 second=80 amount=1
-kerning first=78 second=69 amount=1
-kerning first=78 second=108 amount=1
-kerning first=78 second=82 amount=1
-kerning first=78 second=92 amount=1
-kerning first=78 second=47 amount=1
-kerning first=78 second=107 amount=1
-kerning first=78 second=66 amount=1
-kerning first=78 second=104 amount=1
-kerning first=78 second=102 amount=1
-kerning first=78 second=93 amount=1
-kerning first=78 second=49 amount=-2
-kerning first=78 second=73 amount=1
-kerning first=78 second=33 amount=1
-kerning first=78 second=54 amount=-1
-kerning first=78 second=57 amount=-1
-kerning first=78 second=112 amount=1
-kerning first=78 second=98 amount=1
-kerning first=78 second=41 amount=1
-kerning first=78 second=105 amount=1
-kerning first=78 second=116 amount=1
-kerning first=78 second=121 amount=1
-kerning first=78 second=103 amount=1
-kerning first=78 second=59 amount=1
-kerning first=78 second=119 amount=1
-kerning first=78 second=122 amount=1
-kerning first=78 second=110 amount=1
-kerning first=78 second=120 amount=2
-kerning first=78 second=114 amount=1
-kerning first=78 second=117 amount=1
-kerning first=78 second=118 amount=1
-kerning first=78 second=111 amount=1
-kerning first=78 second=99 amount=1
-kerning first=78 second=97 amount=1
-kerning first=78 second=115 amount=1
-kerning first=78 second=58 amount=1
-kerning first=78 second=34 amount=1
-kerning first=78 second=39 amount=1
-kerning first=78 second=46 amount=1
-kerning first=53 second=81 amount=-1
-kerning first=53 second=90 amount=-1
-kerning first=53 second=65 amount=-3
-kerning first=53 second=86 amount=1
-kerning first=53 second=83 amount=-1
-kerning first=53 second=74 amount=-1
-kerning first=53 second=63 amount=-1
-kerning first=53 second=64 amount=-2
-kerning first=53 second=47 amount=-3
-kerning first=53 second=71 amount=-1
-kerning first=53 second=79 amount=-1
-kerning first=53 second=100 amount=-1
-kerning first=53 second=113 amount=-1
-kerning first=53 second=112 amount=-1
-kerning first=53 second=103 amount=-1
-kerning first=53 second=59 amount=-1
-kerning first=53 second=109 amount=-1
-kerning first=53 second=122 amount=-2
-kerning first=53 second=110 amount=-1
-kerning first=53 second=120 amount=-1
-kerning first=53 second=114 amount=-1
-kerning first=53 second=117 amount=-1
-kerning first=53 second=111 amount=-1
-kerning first=53 second=101 amount=-1
-kerning first=53 second=99 amount=-1
-kerning first=53 second=35 amount=-1
-kerning first=53 second=97 amount=-1
-kerning first=53 second=115 amount=-1
-kerning first=53 second=58 amount=-1
-kerning first=53 second=34 amount=1
-kerning first=53 second=39 amount=1
-kerning first=53 second=44 amount=-4
-kerning first=53 second=45 amount=-1
-kerning first=53 second=46 amount=-3
-kerning first=85 second=106 amount=1
-kerning first=85 second=87 amount=1
-kerning first=85 second=88 amount=1
-kerning first=85 second=89 amount=1
-kerning first=85 second=65 amount=-1
-kerning first=85 second=75 amount=1
-kerning first=85 second=86 amount=1
-kerning first=85 second=85 amount=1
-kerning first=85 second=84 amount=1
-kerning first=85 second=68 amount=1
-kerning first=85 second=76 amount=1
-kerning first=85 second=56 amount=-1
-kerning first=85 second=80 amount=1
-kerning first=85 second=63 amount=1
-kerning first=85 second=108 amount=1
-kerning first=85 second=82 amount=1
-kerning first=85 second=50 amount=-1
-kerning first=85 second=92 amount=1
-kerning first=85 second=47 amount=-1
-kerning first=85 second=71 amount=1
-kerning first=85 second=107 amount=1
-kerning first=85 second=66 amount=1
-kerning first=85 second=102 amount=1
-kerning first=85 second=93 amount=1
-kerning first=85 second=49 amount=-2
-kerning first=85 second=73 amount=1
-kerning first=85 second=33 amount=1
-kerning first=85 second=51 amount=-1
-kerning first=85 second=54 amount=-1
-kerning first=85 second=57 amount=-1
-kerning first=85 second=67 amount=1
-kerning first=85 second=112 amount=1
-kerning first=85 second=98 amount=1
-kerning first=85 second=40 amount=1
-kerning first=85 second=41 amount=1
-kerning first=85 second=105 amount=1
-kerning first=85 second=116 amount=1
-kerning first=85 second=121 amount=1
-kerning first=85 second=119 amount=2
-kerning first=85 second=110 amount=1
-kerning first=85 second=120 amount=1
-kerning first=85 second=114 amount=1
-kerning first=85 second=117 amount=1
-kerning first=85 second=118 amount=2
-kerning first=85 second=97 amount=1
-kerning first=85 second=34 amount=1
-kerning first=85 second=39 amount=1
-kerning first=85 second=44 amount=-2
-kerning first=85 second=46 amount=-1
-kerning first=55 second=106 amount=-1
-kerning first=55 second=81 amount=-2
-kerning first=55 second=77 amount=-1
-kerning first=55 second=90 amount=-2
-kerning first=55 second=89 amount=-1
-kerning first=55 second=65 amount=-4
-kerning first=55 second=78 amount=-1
-kerning first=55 second=83 amount=-2
-kerning first=55 second=68 amount=-1
-kerning first=55 second=74 amount=-3
-kerning first=55 second=63 amount=-1
-kerning first=55 second=69 amount=-1
-kerning first=55 second=64 amount=-5
-kerning first=55 second=47 amount=-5
-kerning first=55 second=71 amount=-1
-kerning first=55 second=104 amount=-1
-kerning first=55 second=72 amount=-1
-kerning first=55 second=102 amount=-3
-kerning first=55 second=79 amount=-1
-kerning first=55 second=67 amount=-1
-kerning first=55 second=70 amount=-1
-kerning first=55 second=100 amount=-4
-kerning first=55 second=113 amount=-4
-kerning first=55 second=112 amount=-3
-kerning first=55 second=40 amount=-1
-kerning first=55 second=105 amount=-1
-kerning first=55 second=116 amount=-3
-kerning first=55 second=121 amount=-2
-kerning first=55 second=103 amount=-4
-kerning first=55 second=59 amount=-3
-kerning first=55 second=119 amount=-2
-kerning first=55 second=109 amount=-3
-kerning first=55 second=122 amount=-4
-kerning first=55 second=110 amount=-3
-kerning first=55 second=120 amount=-3
-kerning first=55 second=114 amount=-3
-kerning first=55 second=117 amount=-3
-kerning first=55 second=118 amount=-2
-kerning first=55 second=111 amount=-4
-kerning first=55 second=101 amount=-4
-kerning first=55 second=99 amount=-4
-kerning first=55 second=35 amount=-3
-kerning first=55 second=97 amount=-4
-kerning first=55 second=115 amount=-4
-kerning first=55 second=58 amount=-4
-kerning first=55 second=39 amount=1
-kerning first=55 second=44 amount=-5
-kerning first=55 second=45 amount=-4
-kerning first=55 second=46 amount=-6
-kerning first=84 second=87 amount=1
-kerning first=84 second=81 amount=-1
-kerning first=84 second=90 amount=-1
-kerning first=84 second=88 amount=1
-kerning first=84 second=65 amount=-3
-kerning first=84 second=75 amount=1
-kerning first=84 second=86 amount=1
-kerning first=84 second=52 amount=-3
-kerning first=84 second=53 amount=-1
-kerning first=84 second=85 amount=1
-kerning first=84 second=83 amount=-1
-kerning first=84 second=48 amount=-1
-kerning first=84 second=76 amount=1
-kerning first=84 second=74 amount=-3
-kerning first=84 second=56 amount=-1
-kerning first=84 second=80 amount=1
-kerning first=84 second=108 amount=1
-kerning first=84 second=64 amount=-4
-kerning first=84 second=82 amount=1
-kerning first=84 second=50 amount=-3
-kerning first=84 second=92 amount=1
-kerning first=84 second=47 amount=-3
-kerning first=84 second=107 amount=1
-kerning first=84 second=66 amount=1
-kerning first=84 second=102 amount=-2
-kerning first=84 second=93 amount=1
-kerning first=84 second=49 amount=-2
-kerning first=84 second=73 amount=1
-kerning first=84 second=33 amount=1
-kerning first=84 second=51 amount=-2
-kerning first=84 second=54 amount=-2
-kerning first=84 second=57 amount=-1
-kerning first=84 second=100 amount=-3
-kerning first=84 second=113 amount=-3
-kerning first=84 second=112 amount=-3
-kerning first=84 second=98 amount=1
-kerning first=84 second=41 amount=1
-kerning first=84 second=116 amount=-2
-kerning first=84 second=121 amount=-3
-kerning first=84 second=103 amount=-3
-kerning first=84 second=59 amount=-2
-kerning first=84 second=119 amount=-2
-kerning first=84 second=109 amount=-4
-kerning first=84 second=122 amount=-3
-kerning first=84 second=110 amount=-3
-kerning first=84 second=120 amount=-2
-kerning first=84 second=114 amount=-3
-kerning first=84 second=117 amount=-3
-kerning first=84 second=118 amount=-2
-kerning first=84 second=111 amount=-3
-kerning first=84 second=101 amount=-3
-kerning first=84 second=99 amount=-3
-kerning first=84 second=35 amount=-2
-kerning first=84 second=97 amount=-3
-kerning first=84 second=115 amount=-3
-kerning first=84 second=58 amount=-3
-kerning first=84 second=34 amount=1
-kerning first=84 second=39 amount=1
-kerning first=84 second=44 amount=-2
-kerning first=84 second=45 amount=-4
-kerning first=84 second=46 amount=-3
-kerning first=83 second=106 amount=1
-kerning first=83 second=90 amount=1
-kerning first=83 second=88 amount=1
-kerning first=83 second=89 amount=-1
-kerning first=83 second=53 amount=1
-kerning first=83 second=83 amount=1
-kerning first=83 second=74 amount=1
-kerning first=83 second=108 amount=1
-kerning first=83 second=71 amount=1
-kerning first=83 second=107 amount=1
-kerning first=83 second=104 amount=1
-kerning first=83 second=49 amount=-3
-kerning first=83 second=33 amount=1
-kerning first=83 second=67 amount=1
-kerning first=83 second=100 amount=1
-kerning first=83 second=113 amount=1
-kerning first=83 second=112 amount=1
-kerning first=83 second=98 amount=1
-kerning first=83 second=40 amount=1
-kerning first=83 second=41 amount=1
-kerning first=83 second=105 amount=1
-kerning first=83 second=116 amount=-1
-kerning first=83 second=121 amount=1
-kerning first=83 second=103 amount=1
-kerning first=83 second=119 amount=1
-kerning first=83 second=122 amount=1
-kerning first=83 second=110 amount=1
-kerning first=83 second=120 amount=1
-kerning first=83 second=114 amount=1
-kerning first=83 second=117 amount=1
-kerning first=83 second=118 amount=1
-kerning first=83 second=111 amount=1
-kerning first=83 second=101 amount=1
-kerning first=83 second=99 amount=1
-kerning first=83 second=97 amount=1
-kerning first=83 second=115 amount=1
-kerning first=83 second=46 amount=1
-kerning first=48 second=87 amount=-1
-kerning first=48 second=77 amount=-1
-kerning first=48 second=90 amount=-1
-kerning first=48 second=88 amount=-1
-kerning first=48 second=89 amount=-2
-kerning first=48 second=65 amount=-2
-kerning first=48 second=75 amount=-1
-kerning first=48 second=86 amount=-2
-kerning first=48 second=78 amount=-1
-kerning first=48 second=85 amount=-1
-kerning first=48 second=84 amount=-1
-kerning first=48 second=68 amount=-1
-kerning first=48 second=76 amount=-1
-kerning first=48 second=74 amount=-1
-kerning first=48 second=80 amount=-1
-kerning first=48 second=63 amount=-1
-kerning first=48 second=69 amount=-1
-kerning first=48 second=64 amount=-1
-kerning first=48 second=82 amount=-1
-kerning first=48 second=92 amount=-2
-kerning first=48 second=47 amount=-2
-kerning first=48 second=66 amount=-1
-kerning first=48 second=104 amount=-1
-kerning first=48 second=93 amount=-2
-kerning first=48 second=73 amount=-1
-kerning first=48 second=70 amount=-1
-kerning first=48 second=98 amount=-1
-kerning first=48 second=41 amount=-1
-kerning first=48 second=116 amount=1
-kerning first=48 second=119 amount=1
-kerning first=48 second=109 amount=-1
-kerning first=48 second=122 amount=-1
-kerning first=48 second=118 amount=1
-kerning first=48 second=115 amount=-1
-kerning first=48 second=58 amount=-1
-kerning first=48 second=34 amount=-1
-kerning first=48 second=39 amount=-1
-kerning first=48 second=44 amount=-2
-kerning first=48 second=46 amount=-1
-kerning first=68 second=106 amount=1
-kerning first=68 second=87 amount=1
-kerning first=68 second=90 amount=-1
-kerning first=68 second=65 amount=-2
-kerning first=68 second=75 amount=1
-kerning first=68 second=86 amount=1
-kerning first=68 second=52 amount=-1
-kerning first=68 second=53 amount=-1
-kerning first=68 second=85 amount=1
-kerning first=68 second=84 amount=1
-kerning first=68 second=76 amount=1
-kerning first=68 second=74 amount=-1
-kerning first=68 second=80 amount=1
-kerning first=68 second=63 amount=1
-kerning first=68 second=108 amount=1
-kerning first=68 second=64 amount=-1
-kerning first=68 second=82 amount=1
-kerning first=68 second=50 amount=-1
-kerning first=68 second=47 amount=-3
-kerning first=68 second=107 amount=1
-kerning first=68 second=66 amount=1
-kerning first=68 second=104 amount=1
-kerning first=68 second=102 amount=1
-kerning first=68 second=49 amount=-2
-kerning first=68 second=73 amount=1
-kerning first=68 second=33 amount=1
-kerning first=68 second=54 amount=-1
-kerning first=68 second=67 amount=1
-kerning first=68 second=112 amount=1
-kerning first=68 second=98 amount=1
-kerning first=68 second=40 amount=1
-kerning first=68 second=105 amount=1
-kerning first=68 second=116 amount=1
-kerning first=68 second=121 amount=1
-kerning first=68 second=119 amount=2
-kerning first=68 second=110 amount=1
-kerning first=68 second=120 amount=1
-kerning first=68 second=114 amount=1
-kerning first=68 second=117 amount=1
-kerning first=68 second=118 amount=2
-kerning first=68 second=101 amount=-1
-kerning first=68 second=34 amount=1
-kerning first=68 second=39 amount=1
-kerning first=68 second=44 amount=-4
-kerning first=68 second=46 amount=-3
-kerning first=76 second=106 amount=1
-kerning first=76 second=87 amount=-2
-kerning first=76 second=90 amount=1
-kerning first=76 second=88 amount=1
-kerning first=76 second=89 amount=-3
-kerning first=76 second=86 amount=-2
-kerning first=76 second=52 amount=-1
-kerning first=76 second=53 amount=1
-kerning first=76 second=84 amount=-2
-kerning first=76 second=83 amount=1
-kerning first=76 second=63 amount=-2
-kerning first=76 second=108 amount=1
-kerning first=76 second=92 amount=-4
-kerning first=76 second=47 amount=1
-kerning first=76 second=107 amount=1
-kerning first=76 second=104 amount=1
-kerning first=76 second=102 amount=-1
-kerning first=76 second=49 amount=-3
-kerning first=76 second=33 amount=1
-kerning first=76 second=54 amount=-1
-kerning first=76 second=67 amount=1
-kerning first=76 second=100 amount=1
-kerning first=76 second=113 amount=1
-kerning first=76 second=112 amount=1
-kerning first=76 second=98 amount=1
-kerning first=76 second=41 amount=1
-kerning first=76 second=105 amount=1
-kerning first=76 second=116 amount=-1
-kerning first=76 second=121 amount=-1
-kerning first=76 second=103 amount=1
-kerning first=76 second=59 amount=1
-kerning first=76 second=122 amount=1
-kerning first=76 second=110 amount=1
-kerning first=76 second=120 amount=1
-kerning first=76 second=114 amount=1
-kerning first=76 second=117 amount=1
-kerning first=76 second=111 amount=1
-kerning first=76 second=101 amount=1
-kerning first=76 second=99 amount=1
-kerning first=76 second=35 amount=-4
-kerning first=76 second=97 amount=2
-kerning first=76 second=115 amount=1
-kerning first=76 second=58 amount=1
-kerning first=76 second=34 amount=-4
-kerning first=76 second=39 amount=-4
-kerning first=76 second=44 amount=1
-kerning first=76 second=45 amount=-4
-kerning first=76 second=46 amount=1
-kerning first=74 second=106 amount=1
-kerning first=74 second=87 amount=1
-kerning first=74 second=77 amount=1
-kerning first=74 second=88 amount=1
-kerning first=74 second=89 amount=1
-kerning first=74 second=75 amount=1
-kerning first=74 second=86 amount=1
-kerning first=74 second=78 amount=1
-kerning first=74 second=85 amount=1
-kerning first=74 second=84 amount=1
-kerning first=74 second=68 amount=1
-kerning first=74 second=76 amount=1
-kerning first=74 second=56 amount=-1
-kerning first=74 second=80 amount=1
-kerning first=74 second=63 amount=1
-kerning first=74 second=69 amount=1
-kerning first=74 second=108 amount=1
-kerning first=74 second=82 amount=1
-kerning first=74 second=92 amount=1
-kerning first=74 second=71 amount=1
-kerning first=74 second=107 amount=1
-kerning first=74 second=66 amount=1
-kerning first=74 second=104 amount=1
-kerning first=74 second=72 amount=1
-kerning first=74 second=102 amount=1
-kerning first=74 second=93 amount=1
-kerning first=74 second=49 amount=-2
-kerning first=74 second=73 amount=1
-kerning first=74 second=33 amount=1
-kerning first=74 second=51 amount=-1
-kerning first=74 second=54 amount=-1
-kerning first=74 second=57 amount=-1
-kerning first=74 second=67 amount=1
-kerning first=74 second=98 amount=1
-kerning first=74 second=41 amount=1
-kerning first=74 second=105 amount=1
-kerning first=74 second=116 amount=1
-kerning first=74 second=121 amount=1
-kerning first=74 second=119 amount=1
-kerning first=74 second=120 amount=1
-kerning first=74 second=114 amount=1
-kerning first=74 second=118 amount=1
-kerning first=74 second=111 amount=1
-kerning first=74 second=97 amount=1
-kerning first=74 second=115 amount=1
-kerning first=74 second=34 amount=1
-kerning first=74 second=39 amount=1
-kerning first=56 second=106 amount=-1
-kerning first=56 second=87 amount=-1
-kerning first=56 second=81 amount=-1
-kerning first=56 second=77 amount=-2
-kerning first=56 second=90 amount=-1
-kerning first=56 second=88 amount=-1
-kerning first=56 second=89 amount=-2
-kerning first=56 second=65 amount=-2
-kerning first=56 second=75 amount=-2
-kerning first=56 second=86 amount=-1
-kerning first=56 second=78 amount=-2
-kerning first=56 second=85 amount=-1
-kerning first=56 second=84 amount=-1
-kerning first=56 second=83 amount=-1
-kerning first=56 second=68 amount=-2
-kerning first=56 second=76 amount=-2
-kerning first=56 second=74 amount=-1
-kerning first=56 second=80 amount=-1
-kerning first=56 second=63 amount=-1
-kerning first=56 second=69 amount=-1
-kerning first=56 second=108 amount=-1
-kerning first=56 second=64 amount=-2
-kerning first=56 second=82 amount=-1
-kerning first=56 second=92 amount=-2
-kerning first=56 second=47 amount=-2
-kerning first=56 second=71 amount=-1
-kerning first=56 second=107 amount=-1
-kerning first=56 second=66 amount=-1
-kerning first=56 second=104 amount=-1
-kerning first=56 second=72 amount=-2
-kerning first=56 second=102 amount=-2
-kerning first=56 second=93 amount=-2
-kerning first=56 second=73 amount=-1
-kerning first=56 second=33 amount=-1
-kerning first=56 second=79 amount=-2
-kerning first=56 second=67 amount=-1
-kerning first=56 second=70 amount=-2
-kerning first=56 second=100 amount=-1
-kerning first=56 second=113 amount=-1
-kerning first=56 second=112 amount=-1
-kerning first=56 second=98 amount=-1
-kerning first=56 second=40 amount=-1
-kerning first=56 second=41 amount=-2
-kerning first=56 second=105 amount=-1
-kerning first=56 second=116 amount=-2
-kerning first=56 second=121 amount=-1
-kerning first=56 second=103 amount=-1
-kerning first=56 second=59 amount=-2
-kerning first=56 second=119 amount=-1
-kerning first=56 second=109 amount=-2
-kerning first=56 second=122 amount=-2
-kerning first=56 second=110 amount=-1
-kerning first=56 second=120 amount=-2
-kerning first=56 second=114 amount=-1
-kerning first=56 second=117 amount=-1
-kerning first=56 second=118 amount=-1
-kerning first=56 second=111 amount=-1
-kerning first=56 second=101 amount=-1
-kerning first=56 second=99 amount=-1
-kerning first=56 second=35 amount=-2
-kerning first=56 second=97 amount=-1
-kerning first=56 second=115 amount=-1
-kerning first=56 second=58 amount=-2
-kerning first=56 second=34 amount=-1
-kerning first=56 second=39 amount=-1
-kerning first=56 second=44 amount=-3
-kerning first=56 second=45 amount=-1
-kerning first=56 second=46 amount=-2
-kerning first=80 second=106 amount=1
-kerning first=80 second=87 amount=1
-kerning first=80 second=77 amount=1
-kerning first=80 second=88 amount=1
-kerning first=80 second=89 amount=1
-kerning first=80 second=65 amount=-2
-kerning first=80 second=75 amount=1
-kerning first=80 second=86 amount=2
-kerning first=80 second=52 amount=-2
-kerning first=80 second=78 amount=1
-kerning first=80 second=85 amount=1
-kerning first=80 second=84 amount=1
-kerning first=80 second=68 amount=1
-kerning first=80 second=76 amount=1
-kerning first=80 second=74 amount=-3
-kerning first=80 second=80 amount=1
-kerning first=80 second=63 amount=1
-kerning first=80 second=69 amount=1
-kerning first=80 second=108 amount=1
-kerning first=80 second=64 amount=-2
-kerning first=80 second=82 amount=1
-kerning first=80 second=50 amount=-1
-kerning first=80 second=92 amount=1
-kerning first=80 second=47 amount=-4
-kerning first=80 second=71 amount=1
-kerning first=80 second=107 amount=1
-kerning first=80 second=66 amount=1
-kerning first=80 second=104 amount=1
-kerning first=80 second=72 amount=1
-kerning first=80 second=93 amount=1
-kerning first=80 second=49 amount=-1
-kerning first=80 second=73 amount=1
-kerning first=80 second=33 amount=1
-kerning first=80 second=79 amount=1
-kerning first=80 second=54 amount=-1
-kerning first=80 second=67 amount=1
-kerning first=80 second=70 amount=1
-kerning first=80 second=100 amount=-1
-kerning first=80 second=113 amount=-1
-kerning first=80 second=98 amount=1
-kerning first=80 second=40 amount=1
-kerning first=80 second=41 amount=1
-kerning first=80 second=105 amount=1
-kerning first=80 second=116 amount=1
-kerning first=80 second=121 amount=1
-kerning first=80 second=103 amount=-1
-kerning first=80 second=119 amount=1
-kerning first=80 second=122 amount=-1
-kerning first=80 second=118 amount=1
-kerning first=80 second=111 amount=-1
-kerning first=80 second=101 amount=-1
-kerning first=80 second=99 amount=-1
-kerning first=80 second=115 amount=-1
-kerning first=80 second=58 amount=-1
-kerning first=80 second=34 amount=2
-kerning first=80 second=39 amount=2
-kerning first=80 second=44 amount=-4
-kerning first=80 second=45 amount=-2
-kerning first=80 second=46 amount=-5
-kerning first=63 second=87 amount=1
-kerning first=63 second=90 amount=-1
-kerning first=63 second=88 amount=1
-kerning first=63 second=65 amount=-2
-kerning first=63 second=75 amount=1
-kerning first=63 second=86 amount=1
-kerning first=63 second=52 amount=-2
-kerning first=63 second=53 amount=-1
-kerning first=63 second=85 amount=1
-kerning first=63 second=84 amount=1
-kerning first=63 second=48 amount=-1
-kerning first=63 second=74 amount=-2
-kerning first=63 second=56 amount=-1
-kerning first=63 second=80 amount=1
-kerning first=63 second=63 amount=1
-kerning first=63 second=108 amount=1
-kerning first=63 second=64 amount=-3
-kerning first=63 second=82 amount=1
-kerning first=63 second=50 amount=-1
-kerning first=63 second=92 amount=1
-kerning first=63 second=47 amount=-2
-kerning first=63 second=107 amount=1
-kerning first=63 second=66 amount=1
-kerning first=63 second=102 amount=-1
-kerning first=63 second=93 amount=1
-kerning first=63 second=49 amount=-2
-kerning first=63 second=73 amount=1
-kerning first=63 second=33 amount=1
-kerning first=63 second=51 amount=-1
-kerning first=63 second=54 amount=-1
-kerning first=63 second=57 amount=-1
-kerning first=63 second=100 amount=-2
-kerning first=63 second=113 amount=-1
-kerning first=63 second=98 amount=1
-kerning first=63 second=105 amount=1
-kerning first=63 second=103 amount=-2
-kerning first=63 second=59 amount=-1
-kerning first=63 second=119 amount=1
-kerning first=63 second=122 amount=-1
-kerning first=63 second=118 amount=1
-kerning first=63 second=111 amount=-1
-kerning first=63 second=101 amount=-2
-kerning first=63 second=99 amount=-2
-kerning first=63 second=35 amount=-1
-kerning first=63 second=97 amount=-1
-kerning first=63 second=115 amount=-2
-kerning first=63 second=58 amount=-1
-kerning first=63 second=34 amount=1
-kerning first=63 second=39 amount=1
-kerning first=63 second=44 amount=-1
-kerning first=63 second=45 amount=-2
-kerning first=63 second=46 amount=-1
-kerning first=69 second=87 amount=1
-kerning first=69 second=81 amount=-1
-kerning first=69 second=90 amount=1
-kerning first=69 second=88 amount=1
-kerning first=69 second=75 amount=1
-kerning first=69 second=86 amount=1
-kerning first=69 second=52 amount=-1
-kerning first=69 second=85 amount=1
-kerning first=69 second=48 amount=-1
-kerning first=69 second=76 amount=1
-kerning first=69 second=74 amount=-1
-kerning first=69 second=56 amount=-1
-kerning first=69 second=80 amount=1
-kerning first=69 second=63 amount=-1
-kerning first=69 second=108 amount=1
-kerning first=69 second=64 amount=-1
-kerning first=69 second=82 amount=1
-kerning first=69 second=92 amount=1
-kerning first=69 second=107 amount=1
-kerning first=69 second=66 amount=1
-kerning first=69 second=102 amount=-1
-kerning first=69 second=93 amount=1
-kerning first=69 second=49 amount=-2
-kerning first=69 second=73 amount=1
-kerning first=69 second=33 amount=1
-kerning first=69 second=51 amount=-1
-kerning first=69 second=54 amount=-1
-kerning first=69 second=57 amount=-1
-kerning first=69 second=98 amount=1
-kerning first=69 second=41 amount=1
-kerning first=69 second=105 amount=1
-kerning first=69 second=121 amount=-1
-kerning first=69 second=120 amount=1
-kerning first=69 second=118 amount=-1
-kerning first=69 second=35 amount=-1
-kerning first=69 second=97 amount=1
-kerning first=69 second=34 amount=1
-kerning first=69 second=39 amount=1
-kerning first=69 second=46 amount=1
-kerning first=108 second=106 amount=1
-kerning first=108 second=63 amount=1
-kerning first=108 second=108 amount=1
-kerning first=108 second=50 amount=1
-kerning first=108 second=92 amount=1
-kerning first=108 second=47 amount=1
-kerning first=108 second=107 amount=1
-kerning first=108 second=104 amount=1
-kerning first=108 second=102 amount=1
-kerning first=108 second=93 amount=1
-kerning first=108 second=49 amount=-2
-kerning first=108 second=33 amount=1
-kerning first=108 second=100 amount=1
-kerning first=108 second=113 amount=1
-kerning first=108 second=112 amount=1
-kerning first=108 second=98 amount=1
-kerning first=108 second=40 amount=1
-kerning first=108 second=41 amount=1
-kerning first=108 second=105 amount=1
-kerning first=108 second=116 amount=2
-kerning first=108 second=121 amount=1
-kerning first=108 second=103 amount=1
-kerning first=108 second=59 amount=2
-kerning first=108 second=119 amount=2
-kerning first=108 second=122 amount=1
-kerning first=108 second=110 amount=1
-kerning first=108 second=120 amount=2
-kerning first=108 second=114 amount=1
-kerning first=108 second=117 amount=1
-kerning first=108 second=118 amount=2
-kerning first=108 second=111 amount=1
-kerning first=108 second=101 amount=1
-kerning first=108 second=99 amount=1
-kerning first=108 second=35 amount=1
-kerning first=108 second=97 amount=1
-kerning first=108 second=115 amount=1
-kerning first=108 second=58 amount=1
-kerning first=108 second=34 amount=1
-kerning first=108 second=39 amount=1
-kerning first=108 second=44 amount=1
-kerning first=108 second=45 amount=1
-kerning first=108 second=46 amount=1
-kerning first=64 second=106 amount=1
-kerning first=64 second=87 amount=-1
-kerning first=64 second=81 amount=1
-kerning first=64 second=90 amount=-1
-kerning first=64 second=88 amount=-2
-kerning first=64 second=89 amount=-2
-kerning first=64 second=65 amount=-1
-kerning first=64 second=86 amount=-1
-kerning first=64 second=52 amount=1
-kerning first=64 second=55 amount=-2
-kerning first=64 second=84 amount=-2
-kerning first=64 second=74 amount=1
-kerning first=64 second=56 amount=-1
-kerning first=64 second=63 amount=-1
-kerning first=64 second=108 amount=1
-kerning first=64 second=50 amount=-3
-kerning first=64 second=92 amount=-3
-kerning first=64 second=47 amount=-1
-kerning first=64 second=71 amount=1
-kerning first=64 second=107 amount=1
-kerning first=64 second=72 amount=1
-kerning first=64 second=102 amount=1
-kerning first=64 second=93 amount=-3
-kerning first=64 second=49 amount=-4
-kerning first=64 second=33 amount=1
-kerning first=64 second=79 amount=1
-kerning first=64 second=51 amount=-2
-kerning first=64 second=57 amount=-1
-kerning first=64 second=67 amount=1
-kerning first=64 second=100 amount=1
-kerning first=64 second=113 amount=1
-kerning first=64 second=40 amount=1
-kerning first=64 second=41 amount=-1
-kerning first=64 second=105 amount=1
-kerning first=64 second=116 amount=2
-kerning first=64 second=121 amount=1
-kerning first=64 second=103 amount=1
-kerning first=64 second=119 amount=1
-kerning first=64 second=122 amount=-1
-kerning first=64 second=110 amount=1
-kerning first=64 second=114 amount=1
-kerning first=64 second=117 amount=1
-kerning first=64 second=118 amount=1
-kerning first=64 second=111 amount=1
-kerning first=64 second=101 amount=1
-kerning first=64 second=99 amount=1
-kerning first=64 second=35 amount=1
-kerning first=64 second=97 amount=1
-kerning first=64 second=34 amount=-2
-kerning first=64 second=39 amount=-2
-kerning first=64 second=44 amount=-3
-kerning first=64 second=45 amount=1
-kerning first=64 second=46 amount=-2
-kerning first=82 second=106 amount=1
-kerning first=82 second=77 amount=1
-kerning first=82 second=90 amount=2
-kerning first=82 second=88 amount=2
-kerning first=82 second=89 amount=-1
-kerning first=82 second=65 amount=1
-kerning first=82 second=75 amount=1
-kerning first=82 second=52 amount=-3
-kerning first=82 second=78 amount=1
-kerning first=82 second=53 amount=1
-kerning first=82 second=55 amount=1
-kerning first=82 second=68 amount=1
-kerning first=82 second=76 amount=1
-kerning first=82 second=74 amount=-1
-kerning first=82 second=80 amount=1
-kerning first=82 second=63 amount=-1
-kerning first=82 second=69 amount=1
-kerning first=82 second=108 amount=2
-kerning first=82 second=82 amount=1
-kerning first=82 second=50 amount=1
-kerning first=82 second=92 amount=-1
-kerning first=82 second=47 amount=1
-kerning first=82 second=107 amount=1
-kerning first=82 second=66 amount=1
-kerning first=82 second=104 amount=1
-kerning first=82 second=72 amount=1
-kerning first=82 second=93 amount=1
-kerning first=82 second=49 amount=-2
-kerning first=82 second=73 amount=1
-kerning first=82 second=33 amount=1
-kerning first=82 second=54 amount=-1
-kerning first=82 second=57 amount=-1
-kerning first=82 second=67 amount=1
-kerning first=82 second=70 amount=1
-kerning first=82 second=100 amount=1
-kerning first=82 second=113 amount=1
-kerning first=82 second=112 amount=1
-kerning first=82 second=98 amount=2
-kerning first=82 second=40 amount=1
-kerning first=82 second=41 amount=2
-kerning first=82 second=105 amount=1
-kerning first=82 second=121 amount=-1
-kerning first=82 second=103 amount=1
-kerning first=82 second=59 amount=1
-kerning first=82 second=122 amount=2
-kerning first=82 second=110 amount=1
-kerning first=82 second=120 amount=2
-kerning first=82 second=114 amount=1
-kerning first=82 second=117 amount=1
-kerning first=82 second=111 amount=1
-kerning first=82 second=101 amount=1
-kerning first=82 second=99 amount=1
-kerning first=82 second=35 amount=-3
-kerning first=82 second=97 amount=2
-kerning first=82 second=115 amount=1
-kerning first=82 second=58 amount=1
-kerning first=82 second=44 amount=2
-kerning first=82 second=45 amount=-4
-kerning first=82 second=46 amount=2
-kerning first=50 second=106 amount=1
-kerning first=50 second=81 amount=-1
-kerning first=50 second=90 amount=1
-kerning first=50 second=88 amount=1
-kerning first=50 second=74 amount=-1
-kerning first=50 second=108 amount=1
-kerning first=50 second=47 amount=1
-kerning first=50 second=107 amount=1
-kerning first=50 second=98 amount=1
-kerning first=50 second=41 amount=1
-kerning first=50 second=105 amount=1
-kerning first=50 second=119 amount=1
-kerning first=50 second=122 amount=1
-kerning first=50 second=110 amount=1
-kerning first=50 second=120 amount=1
-kerning first=50 second=118 amount=1
-kerning first=50 second=35 amount=-1
-kerning first=50 second=97 amount=1
-kerning first=50 second=115 amount=1
-kerning first=50 second=34 amount=1
-kerning first=50 second=39 amount=1
-kerning first=50 second=45 amount=-2
-kerning first=50 second=46 amount=1
-kerning first=92 second=87 amount=-3
-kerning first=92 second=81 amount=-1
-kerning first=92 second=88 amount=1
-kerning first=92 second=89 amount=-3
-kerning first=92 second=86 amount=-2
-kerning first=92 second=52 amount=-2
-kerning first=92 second=85 amount=-1
-kerning first=92 second=84 amount=-2
-kerning first=92 second=83 amount=-1
-kerning first=92 second=48 amount=-1
-kerning first=92 second=74 amount=-2
-kerning first=92 second=56 amount=-1
-kerning first=92 second=63 amount=-2
-kerning first=92 second=108 amount=1
-kerning first=92 second=64 amount=-1
-kerning first=92 second=92 amount=-5
-kerning first=92 second=71 amount=-1
-kerning first=92 second=102 amount=-2
-kerning first=92 second=93 amount=-1
-kerning first=92 second=49 amount=-3
-kerning first=92 second=79 amount=-1
-kerning first=92 second=51 amount=-1
-kerning first=92 second=54 amount=-2
-kerning first=92 second=57 amount=-1
-kerning first=92 second=116 amount=-1
-kerning first=92 second=121 amount=-2
-kerning first=92 second=59 amount=1
-kerning first=92 second=119 amount=-1
-kerning first=92 second=122 amount=1
-kerning first=92 second=110 amount=1
-kerning first=92 second=120 amount=1
-kerning first=92 second=114 amount=1
-kerning first=92 second=118 amount=-1
-kerning first=92 second=35 amount=-3
-kerning first=92 second=97 amount=1
-kerning first=92 second=115 amount=1
-kerning first=92 second=58 amount=1
-kerning first=92 second=34 amount=-6
-kerning first=92 second=39 amount=-4
-kerning first=92 second=44 amount=1
-kerning first=92 second=45 amount=-2
-kerning first=92 second=46 amount=1
-kerning first=47 second=87 amount=1
-kerning first=47 second=81 amount=-2
-kerning first=47 second=90 amount=-1
-kerning first=47 second=88 amount=1
-kerning first=47 second=65 amount=-4
-kerning first=47 second=75 amount=1
-kerning first=47 second=86 amount=1
-kerning first=47 second=52 amount=-4
-kerning first=47 second=53 amount=-1
-kerning first=47 second=55 amount=-1
-kerning first=47 second=83 amount=-1
-kerning first=47 second=48 amount=-2
-kerning first=47 second=76 amount=1
-kerning first=47 second=74 amount=-5
-kerning first=47 second=56 amount=-2
-kerning first=47 second=63 amount=-1
-kerning first=47 second=64 amount=-5
-kerning first=47 second=50 amount=-3
-kerning first=47 second=47 amount=-6
-kerning first=47 second=71 amount=-1
-kerning first=47 second=66 amount=1
-kerning first=47 second=102 amount=-2
-kerning first=47 second=49 amount=-3
-kerning first=47 second=79 amount=-1
-kerning first=47 second=51 amount=-2
-kerning first=47 second=54 amount=-2
-kerning first=47 second=57 amount=-2
-kerning first=47 second=67 amount=-1
-kerning first=47 second=100 amount=-4
-kerning first=47 second=113 amount=-3
-kerning first=47 second=112 amount=-2
-kerning first=47 second=40 amount=-1
-kerning first=47 second=116 amount=-2
-kerning first=47 second=121 amount=-2
-kerning first=47 second=103 amount=-4
-kerning first=47 second=59 amount=-3
-kerning first=47 second=119 amount=-1
-kerning first=47 second=109 amount=-2
-kerning first=47 second=122 amount=-4
-kerning first=47 second=110 amount=-2
-kerning first=47 second=120 amount=-2
-kerning first=47 second=114 amount=-2
-kerning first=47 second=117 amount=-2
-kerning first=47 second=118 amount=-1
-kerning first=47 second=111 amount=-3
-kerning first=47 second=101 amount=-4
-kerning first=47 second=99 amount=-4
-kerning first=47 second=35 amount=-3
-kerning first=47 second=97 amount=-3
-kerning first=47 second=115 amount=-4
-kerning first=47 second=58 amount=-3
-kerning first=47 second=34 amount=1
-kerning first=47 second=39 amount=1
-kerning first=47 second=44 amount=-4
-kerning first=47 second=45 amount=-4
-kerning first=47 second=46 amount=-5
-kerning first=71 second=106 amount=1
-kerning first=71 second=81 amount=1
-kerning first=71 second=90 amount=-1
-kerning first=71 second=88 amount=-1
-kerning first=71 second=89 amount=-2
-kerning first=71 second=75 amount=1
-kerning first=71 second=86 amount=-1
-kerning first=71 second=52 amount=1
-kerning first=71 second=78 amount=1
-kerning first=71 second=53 amount=-1
-kerning first=71 second=85 amount=1
-kerning first=71 second=55 amount=-2
-kerning first=71 second=84 amount=-1
-kerning first=71 second=83 amount=-1
-kerning first=71 second=48 amount=1
-kerning first=71 second=68 amount=1
-kerning first=71 second=76 amount=1
-kerning first=71 second=74 amount=1
-kerning first=71 second=56 amount=-1
-kerning first=71 second=80 amount=1
-kerning first=71 second=63 amount=-1
-kerning first=71 second=69 amount=1
-kerning first=71 second=108 amount=1
-kerning first=71 second=64 amount=1
-kerning first=71 second=82 amount=1
-kerning first=71 second=50 amount=-3
-kerning first=71 second=92 amount=-2
-kerning first=71 second=47 amount=-1
-kerning first=71 second=71 amount=1
-kerning first=71 second=107 amount=1
-kerning first=71 second=66 amount=1
-kerning first=71 second=104 amount=1
-kerning first=71 second=72 amount=1
-kerning first=71 second=102 amount=1
-kerning first=71 second=93 amount=-2
-kerning first=71 second=49 amount=-3
-kerning first=71 second=73 amount=1
-kerning first=71 second=33 amount=1
-kerning first=71 second=79 amount=1
-kerning first=71 second=51 amount=-1
-kerning first=71 second=57 amount=-1
-kerning first=71 second=67 amount=2
-kerning first=71 second=70 amount=1
-kerning first=71 second=100 amount=1
-kerning first=71 second=113 amount=1
-kerning first=71 second=112 amount=1
-kerning first=71 second=98 amount=1
-kerning first=71 second=40 amount=1
-kerning first=71 second=105 amount=1
-kerning first=71 second=116 amount=1
-kerning first=71 second=121 amount=1
-kerning first=71 second=103 amount=2
-kerning first=71 second=119 amount=2
-kerning first=71 second=109 amount=1
-kerning first=71 second=122 amount=-1
-kerning first=71 second=110 amount=1
-kerning first=71 second=114 amount=1
-kerning first=71 second=117 amount=2
-kerning first=71 second=118 amount=1
-kerning first=71 second=111 amount=2
-kerning first=71 second=101 amount=1
-kerning first=71 second=99 amount=1
-kerning first=71 second=35 amount=1
-kerning first=71 second=97 amount=1
-kerning first=71 second=115 amount=1
-kerning first=71 second=34 amount=-1
-kerning first=71 second=39 amount=-1
-kerning first=71 second=44 amount=-3
-kerning first=71 second=45 amount=2
-kerning first=71 second=46 amount=-2
-kerning first=107 second=106 amount=1
-kerning first=107 second=52 amount=-1
-kerning first=107 second=53 amount=1
-kerning first=107 second=55 amount=1
-kerning first=107 second=108 amount=1
-kerning first=107 second=50 amount=1
-kerning first=107 second=92 amount=-2
-kerning first=107 second=47 amount=1
-kerning first=107 second=107 amount=1
-kerning first=107 second=104 amount=1
-kerning first=107 second=102 amount=1
-kerning first=107 second=49 amount=-3
-kerning first=107 second=33 amount=1
-kerning first=107 second=100 amount=1
-kerning first=107 second=113 amount=1
-kerning first=107 second=112 amount=1
-kerning first=107 second=98 amount=1
-kerning first=107 second=40 amount=1
-kerning first=107 second=41 amount=1
-kerning first=107 second=105 amount=1
-kerning first=107 second=116 amount=1
-kerning first=107 second=121 amount=2
-kerning first=107 second=103 amount=1
-kerning first=107 second=59 amount=2
-kerning first=107 second=119 amount=2
-kerning first=107 second=109 amount=1
-kerning first=107 second=122 amount=2
-kerning first=107 second=110 amount=2
-kerning first=107 second=120 amount=2
-kerning first=107 second=114 amount=2
-kerning first=107 second=117 amount=1
-kerning first=107 second=118 amount=2
-kerning first=107 second=111 amount=1
-kerning first=107 second=101 amount=1
-kerning first=107 second=99 amount=1
-kerning first=107 second=35 amount=1
-kerning first=107 second=97 amount=2
-kerning first=107 second=115 amount=2
-kerning first=107 second=58 amount=2
-kerning first=107 second=34 amount=-1
-kerning first=107 second=39 amount=-1
-kerning first=107 second=44 amount=2
-kerning first=107 second=45 amount=-2
-kerning first=107 second=46 amount=2
-kerning first=66 second=90 amount=-1
-kerning first=66 second=89 amount=-1
-kerning first=66 second=65 amount=-1
-kerning first=66 second=53 amount=-1
-kerning first=66 second=55 amount=-1
-kerning first=66 second=56 amount=-1
-kerning first=66 second=108 amount=1
-kerning first=66 second=50 amount=-2
-kerning first=66 second=47 amount=-2
-kerning first=66 second=71 amount=1
-kerning first=66 second=107 amount=1
-kerning first=66 second=72 amount=1
-kerning first=66 second=49 amount=-3
-kerning first=66 second=33 amount=1
-kerning first=66 second=51 amount=-2
-kerning first=66 second=57 amount=-1
-kerning first=66 second=67 amount=1
-kerning first=66 second=100 amount=1
-kerning first=66 second=113 amount=1
-kerning first=66 second=40 amount=1
-kerning first=66 second=41 amount=-1
-kerning first=66 second=105 amount=1
-kerning first=66 second=116 amount=1
-kerning first=66 second=103 amount=1
-kerning first=66 second=119 amount=1
-kerning first=66 second=122 amount=-1
-kerning first=66 second=110 amount=1
-kerning first=66 second=114 amount=1
-kerning first=66 second=117 amount=1
-kerning first=66 second=111 amount=1
-kerning first=66 second=101 amount=1
-kerning first=66 second=99 amount=1
-kerning first=66 second=35 amount=1
-kerning first=66 second=44 amount=-4
-kerning first=66 second=45 amount=1
-kerning first=66 second=46 amount=-2
-kerning first=104 second=106 amount=1
-kerning first=104 second=52 amount=1
-kerning first=104 second=63 amount=-1
-kerning first=104 second=108 amount=1
-kerning first=104 second=64 amount=1
-kerning first=104 second=92 amount=-3
-kerning first=104 second=107 amount=1
-kerning first=104 second=102 amount=1
-kerning first=104 second=49 amount=-3
-kerning first=104 second=33 amount=1
-kerning first=104 second=100 amount=1
-kerning first=104 second=113 amount=1
-kerning first=104 second=112 amount=1
-kerning first=104 second=98 amount=1
-kerning first=104 second=40 amount=1
-kerning first=104 second=41 amount=1
-kerning first=104 second=105 amount=1
-kerning first=104 second=116 amount=1
-kerning first=104 second=121 amount=1
-kerning first=104 second=103 amount=1
-kerning first=104 second=59 amount=1
-kerning first=104 second=119 amount=2
-kerning first=104 second=109 amount=1
-kerning first=104 second=122 amount=1
-kerning first=104 second=110 amount=1
-kerning first=104 second=120 amount=1
-kerning first=104 second=114 amount=1
-kerning first=104 second=117 amount=1
-kerning first=104 second=118 amount=1
-kerning first=104 second=111 amount=1
-kerning first=104 second=101 amount=1
-kerning first=104 second=99 amount=1
-kerning first=104 second=35 amount=1
-kerning first=104 second=97 amount=1
-kerning first=104 second=115 amount=1
-kerning first=104 second=58 amount=1
-kerning first=104 second=34 amount=-2
-kerning first=104 second=39 amount=-2
-kerning first=104 second=45 amount=1
-kerning first=104 second=46 amount=1
-kerning first=72 second=106 amount=1
-kerning first=72 second=87 amount=1
-kerning first=72 second=81 amount=1
-kerning first=72 second=88 amount=1
-kerning first=72 second=75 amount=1
-kerning first=72 second=86 amount=1
-kerning first=72 second=52 amount=1
-kerning first=72 second=85 amount=1
-kerning first=72 second=76 amount=1
-kerning first=72 second=56 amount=-1
-kerning first=72 second=80 amount=1
-kerning first=72 second=69 amount=1
-kerning first=72 second=108 amount=1
-kerning first=72 second=82 amount=1
-kerning first=72 second=92 amount=1
-kerning first=72 second=71 amount=1
-kerning first=72 second=107 amount=1
-kerning first=72 second=66 amount=1
-kerning first=72 second=104 amount=1
-kerning first=72 second=72 amount=1
-kerning first=72 second=102 amount=1
-kerning first=72 second=93 amount=1
-kerning first=72 second=49 amount=-2
-kerning first=72 second=73 amount=1
-kerning first=72 second=33 amount=1
-kerning first=72 second=79 amount=1
-kerning first=72 second=51 amount=-1
-kerning first=72 second=57 amount=-1
-kerning first=72 second=67 amount=1
-kerning first=72 second=100 amount=1
-kerning first=72 second=113 amount=1
-kerning first=72 second=112 amount=1
-kerning first=72 second=98 amount=1
-kerning first=72 second=40 amount=1
-kerning first=72 second=41 amount=1
-kerning first=72 second=105 amount=1
-kerning first=72 second=116 amount=2
-kerning first=72 second=121 amount=1
-kerning first=72 second=103 amount=1
-kerning first=72 second=59 amount=1
-kerning first=72 second=119 amount=1
-kerning first=72 second=110 amount=1
-kerning first=72 second=120 amount=1
-kerning first=72 second=114 amount=1
-kerning first=72 second=117 amount=1
-kerning first=72 second=118 amount=1
-kerning first=72 second=111 amount=1
-kerning first=72 second=101 amount=1
-kerning first=72 second=99 amount=1
-kerning first=72 second=35 amount=1
-kerning first=72 second=97 amount=1
-kerning first=72 second=115 amount=1
-kerning first=72 second=34 amount=1
-kerning first=72 second=39 amount=1
-kerning first=72 second=45 amount=1
-kerning first=72 second=46 amount=1
-kerning first=102 second=106 amount=2
-kerning first=102 second=53 amount=1
-kerning first=102 second=55 amount=-1
-kerning first=102 second=48 amount=1
-kerning first=102 second=63 amount=1
-kerning first=102 second=108 amount=2
-kerning first=102 second=50 amount=-1
-kerning first=102 second=92 amount=1
-kerning first=102 second=47 amount=-1
-kerning first=102 second=107 amount=2
-kerning first=102 second=104 amount=2
-kerning first=102 second=102 amount=2
-kerning first=102 second=93 amount=1
-kerning first=102 second=49 amount=-2
-kerning first=102 second=33 amount=2
-kerning first=102 second=54 amount=1
-kerning first=102 second=57 amount=1
-kerning first=102 second=100 amount=1
-kerning first=102 second=113 amount=1
-kerning first=102 second=112 amount=2
-kerning first=102 second=98 amount=2
-kerning first=102 second=40 amount=2
-kerning first=102 second=41 amount=1
-kerning first=102 second=105 amount=2
-kerning first=102 second=116 amount=2
-kerning first=102 second=121 amount=2
-kerning first=102 second=103 amount=1
-kerning first=102 second=59 amount=1
-kerning first=102 second=119 amount=3
-kerning first=102 second=109 amount=1
-kerning first=102 second=122 amount=1
-kerning first=102 second=110 amount=2
-kerning first=102 second=120 amount=2
-kerning first=102 second=114 amount=2
-kerning first=102 second=117 amount=2
-kerning first=102 second=118 amount=3
-kerning first=102 second=111 amount=1
-kerning first=102 second=101 amount=1
-kerning first=102 second=99 amount=1
-kerning first=102 second=35 amount=2
-kerning first=102 second=97 amount=2
-kerning first=102 second=115 amount=1
-kerning first=102 second=58 amount=1
-kerning first=102 second=34 amount=2
-kerning first=102 second=39 amount=2
-kerning first=102 second=45 amount=-2
-kerning first=102 second=46 amount=-1
-kerning first=93 second=106 amount=1
-kerning first=93 second=90 amount=1
-kerning first=93 second=88 amount=1
-kerning first=93 second=65 amount=1
-kerning first=93 second=75 amount=1
-kerning first=93 second=86 amount=1
-kerning first=93 second=78 amount=1
-kerning first=93 second=55 amount=1
-kerning first=93 second=83 amount=1
-kerning first=93 second=48 amount=-1
-kerning first=93 second=56 amount=-1
-kerning first=93 second=80 amount=1
-kerning first=93 second=69 amount=1
-kerning first=93 second=108 amount=1
-kerning first=93 second=82 amount=1
-kerning first=93 second=50 amount=1
-kerning first=93 second=47 amount=1
-kerning first=93 second=107 amount=1
-kerning first=93 second=66 amount=1
-kerning first=93 second=104 amount=1
-kerning first=93 second=49 amount=-3
-kerning first=93 second=73 amount=1
-kerning first=93 second=33 amount=1
-kerning first=93 second=54 amount=-1
-kerning first=93 second=67 amount=1
-kerning first=93 second=70 amount=1
-kerning first=93 second=112 amount=1
-kerning first=93 second=98 amount=1
-kerning first=93 second=41 amount=1
-kerning first=93 second=105 amount=1
-kerning first=93 second=116 amount=1
-kerning first=93 second=121 amount=1
-kerning first=93 second=103 amount=1
-kerning first=93 second=59 amount=1
-kerning first=93 second=119 amount=1
-kerning first=93 second=122 amount=1
-kerning first=93 second=110 amount=1
-kerning first=93 second=120 amount=2
-kerning first=93 second=114 amount=1
-kerning first=93 second=117 amount=1
-kerning first=93 second=118 amount=1
-kerning first=93 second=111 amount=1
-kerning first=93 second=99 amount=1
-kerning first=93 second=97 amount=1
-kerning first=93 second=115 amount=1
-kerning first=93 second=58 amount=1
-kerning first=93 second=34 amount=1
-kerning first=93 second=39 amount=1
-kerning first=93 second=44 amount=1
-kerning first=93 second=46 amount=1
-kerning first=49 second=106 amount=-3
-kerning first=49 second=87 amount=-4
-kerning first=49 second=81 amount=-4
-kerning first=49 second=77 amount=-4
-kerning first=49 second=90 amount=-3
-kerning first=49 second=88 amount=-3
-kerning first=49 second=89 amount=-4
-kerning first=49 second=65 amount=-3
-kerning first=49 second=75 amount=-3
-kerning first=49 second=86 amount=-3
-kerning first=49 second=78 amount=-4
-kerning first=49 second=85 amount=-4
-kerning first=49 second=84 amount=-4
-kerning first=49 second=83 amount=-4
-kerning first=49 second=68 amount=-4
-kerning first=49 second=76 amount=-4
-kerning first=49 second=74 amount=-4
-kerning first=49 second=80 amount=-3
-kerning first=49 second=63 amount=-4
-kerning first=49 second=69 amount=-3
-kerning first=49 second=108 amount=-3
-kerning first=49 second=64 amount=-4
-kerning first=49 second=82 amount=-3
-kerning first=49 second=92 amount=-4
-kerning first=49 second=47 amount=-3
-kerning first=49 second=71 amount=-4
-kerning first=49 second=107 amount=-3
-kerning first=49 second=66 amount=-3
-kerning first=49 second=104 amount=-3
-kerning first=49 second=72 amount=-4
-kerning first=49 second=102 amount=-4
-kerning first=49 second=93 amount=-4
-kerning first=49 second=73 amount=-3
-kerning first=49 second=33 amount=-3
-kerning first=49 second=79 amount=-4
-kerning first=49 second=67 amount=-4
-kerning first=49 second=70 amount=-3
-kerning first=49 second=100 amount=-4
-kerning first=49 second=113 amount=-4
-kerning first=49 second=112 amount=-3
-kerning first=49 second=98 amount=-3
-kerning first=49 second=40 amount=-4
-kerning first=49 second=41 amount=-3
-kerning first=49 second=105 amount=-3
-kerning first=49 second=116 amount=-3
-kerning first=49 second=121 amount=-3
-kerning first=49 second=103 amount=-4
-kerning first=49 second=59 amount=-3
-kerning first=49 second=119 amount=-3
-kerning first=49 second=109 amount=-4
-kerning first=49 second=122 amount=-3
-kerning first=49 second=110 amount=-3
-kerning first=49 second=120 amount=-2
-kerning first=49 second=114 amount=-3
-kerning first=49 second=117 amount=-3
-kerning first=49 second=118 amount=-3
-kerning first=49 second=111 amount=-4
-kerning first=49 second=101 amount=-4
-kerning first=49 second=99 amount=-3
-kerning first=49 second=35 amount=-4
-kerning first=49 second=97 amount=-3
-kerning first=49 second=115 amount=-3
-kerning first=49 second=58 amount=-3
-kerning first=49 second=34 amount=-4
-kerning first=49 second=39 amount=-3
-kerning first=49 second=44 amount=-3
-kerning first=49 second=45 amount=-4
-kerning first=49 second=46 amount=-3
-kerning first=73 second=106 amount=1
-kerning first=73 second=87 amount=1
-kerning first=73 second=90 amount=1
-kerning first=73 second=88 amount=1
-kerning first=73 second=65 amount=1
-kerning first=73 second=75 amount=1
-kerning first=73 second=86 amount=1
-kerning first=73 second=85 amount=1
-kerning first=73 second=83 amount=1
-kerning first=73 second=76 amount=1
-kerning first=73 second=56 amount=-1
-kerning first=73 second=80 amount=1
-kerning first=73 second=63 amount=1
-kerning first=73 second=108 amount=1
-kerning first=73 second=82 amount=1
-kerning first=73 second=92 amount=1
-kerning first=73 second=47 amount=1
-kerning first=73 second=71 amount=1
-kerning first=73 second=107 amount=1
-kerning first=73 second=66 amount=1
-kerning first=73 second=104 amount=1
-kerning first=73 second=72 amount=1
-kerning first=73 second=102 amount=1
-kerning first=73 second=93 amount=1
-kerning first=73 second=49 amount=-2
-kerning first=73 second=73 amount=1
-kerning first=73 second=33 amount=1
-kerning first=73 second=54 amount=-1
-kerning first=73 second=67 amount=1
-kerning first=73 second=113 amount=1
-kerning first=73 second=112 amount=1
-kerning first=73 second=98 amount=1
-kerning first=73 second=41 amount=1
-kerning first=73 second=105 amount=1
-kerning first=73 second=116 amount=1
-kerning first=73 second=121 amount=1
-kerning first=73 second=103 amount=1
-kerning first=73 second=59 amount=1
-kerning first=73 second=119 amount=2
-kerning first=73 second=122 amount=1
-kerning first=73 second=110 amount=1
-kerning first=73 second=120 amount=1
-kerning first=73 second=114 amount=1
-kerning first=73 second=117 amount=1
-kerning first=73 second=118 amount=1
-kerning first=73 second=111 amount=1
-kerning first=73 second=99 amount=1
-kerning first=73 second=97 amount=1
-kerning first=73 second=115 amount=1
-kerning first=73 second=58 amount=1
-kerning first=73 second=34 amount=1
-kerning first=73 second=39 amount=1
-kerning first=73 second=44 amount=1
-kerning first=73 second=46 amount=1
-kerning first=33 second=106 amount=1
-kerning first=33 second=87 amount=1
-kerning first=33 second=81 amount=1
-kerning first=33 second=90 amount=1
-kerning first=33 second=88 amount=1
-kerning first=33 second=89 amount=1
-kerning first=33 second=65 amount=1
-kerning first=33 second=75 amount=1
-kerning first=33 second=86 amount=1
-kerning first=33 second=52 amount=1
-kerning first=33 second=78 amount=1
-kerning first=33 second=53 amount=2
-kerning first=33 second=85 amount=1
-kerning first=33 second=84 amount=1
-kerning first=33 second=83 amount=1
-kerning first=33 second=68 amount=1
-kerning first=33 second=76 amount=1
-kerning first=33 second=74 amount=1
-kerning first=33 second=80 amount=1
-kerning first=33 second=63 amount=1
-kerning first=33 second=69 amount=1
-kerning first=33 second=108 amount=1
-kerning first=33 second=82 amount=1
-kerning first=33 second=92 amount=1
-kerning first=33 second=47 amount=1
-kerning first=33 second=71 amount=1
-kerning first=33 second=107 amount=1
-kerning first=33 second=66 amount=1
-kerning first=33 second=104 amount=1
-kerning first=33 second=72 amount=1
-kerning first=33 second=102 amount=1
-kerning first=33 second=93 amount=1
-kerning first=33 second=49 amount=-2
-kerning first=33 second=73 amount=2
-kerning first=33 second=33 amount=1
-kerning first=33 second=79 amount=1
-kerning first=33 second=67 amount=1
-kerning first=33 second=100 amount=1
-kerning first=33 second=113 amount=1
-kerning first=33 second=112 amount=1
-kerning first=33 second=98 amount=1
-kerning first=33 second=40 amount=1
-kerning first=33 second=41 amount=1
-kerning first=33 second=105 amount=1
-kerning first=33 second=116 amount=2
-kerning first=33 second=121 amount=1
-kerning first=33 second=103 amount=1
-kerning first=33 second=59 amount=2
-kerning first=33 second=119 amount=2
-kerning first=33 second=122 amount=1
-kerning first=33 second=110 amount=1
-kerning first=33 second=120 amount=1
-kerning first=33 second=114 amount=1
-kerning first=33 second=117 amount=1
-kerning first=33 second=118 amount=2
-kerning first=33 second=111 amount=1
-kerning first=33 second=101 amount=1
-kerning first=33 second=99 amount=1
-kerning first=33 second=35 amount=1
-kerning first=33 second=97 amount=1
-kerning first=33 second=115 amount=1
-kerning first=33 second=58 amount=1
-kerning first=33 second=43 amount=1
-kerning first=33 second=34 amount=1
-kerning first=33 second=39 amount=1
-kerning first=33 second=44 amount=1
-kerning first=33 second=45 amount=1
-kerning first=33 second=46 amount=1
-kerning first=79 second=106 amount=1
-kerning first=79 second=81 amount=1
-kerning first=79 second=88 amount=-1
-kerning first=79 second=89 amount=-1
-kerning first=79 second=65 amount=-1
-kerning first=79 second=55 amount=-1
-kerning first=79 second=56 amount=-1
-kerning first=79 second=108 amount=1
-kerning first=79 second=50 amount=-1
-kerning first=79 second=92 amount=-1
-kerning first=79 second=47 amount=-1
-kerning first=79 second=71 amount=1
-kerning first=79 second=107 amount=1
-kerning first=79 second=72 amount=1
-kerning first=79 second=102 amount=1
-kerning first=79 second=93 amount=-1
-kerning first=79 second=49 amount=-3
-kerning first=79 second=33 amount=1
-kerning first=79 second=79 amount=1
-kerning first=79 second=51 amount=-1
-kerning first=79 second=57 amount=-1
-kerning first=79 second=67 amount=1
-kerning first=79 second=100 amount=1
-kerning first=79 second=113 amount=1
-kerning first=79 second=112 amount=1
-kerning first=79 second=98 amount=1
-kerning first=79 second=40 amount=1
-kerning first=79 second=41 amount=-1
-kerning first=79 second=105 amount=1
-kerning first=79 second=116 amount=2
-kerning first=79 second=121 amount=1
-kerning first=79 second=103 amount=1
-kerning first=79 second=59 amount=1
-kerning first=79 second=119 amount=2
-kerning first=79 second=110 amount=1
-kerning first=79 second=120 amount=1
-kerning first=79 second=114 amount=1
-kerning first=79 second=117 amount=1
-kerning first=79 second=118 amount=2
-kerning first=79 second=111 amount=1
-kerning first=79 second=101 amount=1
-kerning first=79 second=99 amount=1
-kerning first=79 second=35 amount=1
-kerning first=79 second=97 amount=1
-kerning first=79 second=44 amount=-1
-kerning first=79 second=45 amount=1
-kerning first=51 second=77 amount=-1
-kerning first=51 second=90 amount=-2
-kerning first=51 second=89 amount=-1
-kerning first=51 second=65 amount=-2
-kerning first=51 second=75 amount=-1
-kerning first=51 second=78 amount=-1
-kerning first=51 second=84 amount=-1
-kerning first=51 second=83 amount=-1
-kerning first=51 second=68 amount=-1
-kerning first=51 second=76 amount=-1
-kerning first=51 second=74 amount=-1
-kerning first=51 second=63 amount=-1
-kerning first=51 second=64 amount=-1
-kerning first=51 second=92 amount=-1
-kerning first=51 second=47 amount=-3
-kerning first=51 second=93 amount=-1
-kerning first=51 second=70 amount=-1
-kerning first=51 second=41 amount=-1
-kerning first=51 second=59 amount=-1
-kerning first=51 second=109 amount=-1
-kerning first=51 second=122 amount=-2
-kerning first=51 second=120 amount=-1
-kerning first=51 second=58 amount=-1
-kerning first=51 second=44 amount=-4
-kerning first=51 second=46 amount=-3
-kerning first=54 second=106 amount=-1
-kerning first=54 second=87 amount=-1
-kerning first=54 second=81 amount=-1
-kerning first=54 second=77 amount=-1
-kerning first=54 second=90 amount=-1
-kerning first=54 second=88 amount=-2
-kerning first=54 second=89 amount=-2
-kerning first=54 second=65 amount=-2
-kerning first=54 second=75 amount=-1
-kerning first=54 second=86 amount=-1
-kerning first=54 second=78 amount=-1
-kerning first=54 second=83 amount=-1
-kerning first=54 second=68 amount=-1
-kerning first=54 second=76 amount=-1
-kerning first=54 second=74 amount=-1
-kerning first=54 second=80 amount=-1
-kerning first=54 second=69 amount=-1
-kerning first=54 second=64 amount=-1
-kerning first=54 second=82 amount=-1
-kerning first=54 second=92 amount=-2
-kerning first=54 second=47 amount=-2
-kerning first=54 second=66 amount=-1
-kerning first=54 second=104 amount=-1
-kerning first=54 second=72 amount=-1
-kerning first=54 second=102 amount=-1
-kerning first=54 second=93 amount=-1
-kerning first=54 second=73 amount=-1
-kerning first=54 second=79 amount=-1
-kerning first=54 second=70 amount=-1
-kerning first=54 second=100 amount=-1
-kerning first=54 second=113 amount=-1
-kerning first=54 second=112 amount=-1
-kerning first=54 second=98 amount=-1
-kerning first=54 second=40 amount=-1
-kerning first=54 second=41 amount=-1
-kerning first=54 second=121 amount=-1
-kerning first=54 second=59 amount=-1
-kerning first=54 second=109 amount=-1
-kerning first=54 second=122 amount=-2
-kerning first=54 second=110 amount=-1
-kerning first=54 second=120 amount=-1
-kerning first=54 second=114 amount=-1
-kerning first=54 second=118 amount=-1
-kerning first=54 second=101 amount=-1
-kerning first=54 second=35 amount=-1
-kerning first=54 second=97 amount=-1
-kerning first=54 second=115 amount=-1
-kerning first=54 second=58 amount=-2
-kerning first=54 second=44 amount=-2
-kerning first=54 second=45 amount=-1
-kerning first=54 second=46 amount=-1
-kerning first=57 second=87 amount=-1
-kerning first=57 second=81 amount=-1
-kerning first=57 second=77 amount=-1
-kerning first=57 second=90 amount=-1
-kerning first=57 second=88 amount=-2
-kerning first=57 second=89 amount=-2
-kerning first=57 second=65 amount=-2
-kerning first=57 second=75 amount=-1
-kerning first=57 second=86 amount=-2
-kerning first=57 second=78 amount=-1
-kerning first=57 second=85 amount=-1
-kerning first=57 second=84 amount=-1
-kerning first=57 second=83 amount=-1
-kerning first=57 second=68 amount=-1
-kerning first=57 second=76 amount=-1
-kerning first=57 second=74 amount=-1
-kerning first=57 second=80 amount=-1
-kerning first=57 second=63 amount=-1
-kerning first=57 second=69 amount=-1
-kerning first=57 second=64 amount=-1
-kerning first=57 second=82 amount=-1
-kerning first=57 second=92 amount=-2
-kerning first=57 second=47 amount=-2
-kerning first=57 second=66 amount=-1
-kerning first=57 second=104 amount=-1
-kerning first=57 second=93 amount=-2
-kerning first=57 second=73 amount=-1
-kerning first=57 second=79 amount=-1
-kerning first=57 second=70 amount=-1
-kerning first=57 second=100 amount=-1
-kerning first=57 second=98 amount=-1
-kerning first=57 second=41 amount=-2
-kerning first=57 second=116 amount=1
-kerning first=57 second=59 amount=-1
-kerning first=57 second=119 amount=1
-kerning first=57 second=109 amount=-1
-kerning first=57 second=122 amount=-1
-kerning first=57 second=118 amount=1
-kerning first=57 second=101 amount=-1
-kerning first=57 second=115 amount=-1
-kerning first=57 second=58 amount=-1
-kerning first=57 second=34 amount=-1
-kerning first=57 second=44 amount=-3
-kerning first=57 second=46 amount=-2
-kerning first=67 second=106 amount=1
-kerning first=67 second=81 amount=1
-kerning first=67 second=88 amount=-1
-kerning first=67 second=89 amount=-1
-kerning first=67 second=52 amount=1
-kerning first=67 second=85 amount=1
-kerning first=67 second=55 amount=-1
-kerning first=67 second=83 amount=1
-kerning first=67 second=74 amount=1
-kerning first=67 second=56 amount=-1
-kerning first=67 second=80 amount=1
-kerning first=67 second=69 amount=1
-kerning first=67 second=108 amount=1
-kerning first=67 second=64 amount=1
-kerning first=67 second=50 amount=-1
-kerning first=67 second=92 amount=-1
-kerning first=67 second=47 amount=-1
-kerning first=67 second=71 amount=1
-kerning first=67 second=107 amount=1
-kerning first=67 second=66 amount=1
-kerning first=67 second=104 amount=1
-kerning first=67 second=102 amount=1
-kerning first=67 second=93 amount=-1
-kerning first=67 second=49 amount=-3
-kerning first=67 second=73 amount=1
-kerning first=67 second=33 amount=1
-kerning first=67 second=79 amount=1
-kerning first=67 second=51 amount=-1
-kerning first=67 second=67 amount=1
-kerning first=67 second=100 amount=1
-kerning first=67 second=113 amount=1
-kerning first=67 second=112 amount=1
-kerning first=67 second=98 amount=1
-kerning first=67 second=40 amount=1
-kerning first=67 second=105 amount=1
-kerning first=67 second=116 amount=1
-kerning first=67 second=121 amount=1
-kerning first=67 second=103 amount=1
-kerning first=67 second=119 amount=2
-kerning first=67 second=109 amount=1
-kerning first=67 second=110 amount=1
-kerning first=67 second=120 amount=1
-kerning first=67 second=114 amount=1
-kerning first=67 second=117 amount=1
-kerning first=67 second=118 amount=2
-kerning first=67 second=111 amount=1
-kerning first=67 second=101 amount=1
-kerning first=67 second=99 amount=1
-kerning first=67 second=35 amount=1
-kerning first=67 second=97 amount=1
-kerning first=67 second=34 amount=1
-kerning first=67 second=39 amount=1
-kerning first=67 second=44 amount=-1
-kerning first=123 second=32 amount=1
-kerning first=125 second=112 amount=1
-kerning first=125 second=109 amount=1
-kerning first=125 second=110 amount=1
-kerning first=125 second=111 amount=1
-kerning first=70 second=87 amount=1
-kerning first=70 second=90 amount=-1
-kerning first=70 second=88 amount=1
-kerning first=70 second=65 amount=-2
-kerning first=70 second=75 amount=1
-kerning first=70 second=86 amount=1
-kerning first=70 second=53 amount=-1
-kerning first=70 second=85 amount=1
-kerning first=70 second=83 amount=-1
-kerning first=70 second=48 amount=-1
-kerning first=70 second=76 amount=1
-kerning first=70 second=74 amount=-2
-kerning first=70 second=56 amount=-1
-kerning first=70 second=80 amount=1
-kerning first=70 second=63 amount=-1
-kerning first=70 second=108 amount=1
-kerning first=70 second=64 amount=-1
-kerning first=70 second=82 amount=1
-kerning first=70 second=50 amount=-3
-kerning first=70 second=92 amount=1
-kerning first=70 second=47 amount=-3
-kerning first=70 second=107 amount=1
-kerning first=70 second=66 amount=1
-kerning first=70 second=93 amount=1
-kerning first=70 second=49 amount=-2
-kerning first=70 second=73 amount=1
-kerning first=70 second=33 amount=1
-kerning first=70 second=51 amount=-2
-kerning first=70 second=54 amount=-1
-kerning first=70 second=57 amount=-1
-kerning first=70 second=98 amount=1
-kerning first=70 second=41 amount=1
-kerning first=70 second=105 amount=1
-kerning first=70 second=59 amount=-1
-kerning first=70 second=109 amount=-1
-kerning first=70 second=122 amount=-2
-kerning first=70 second=120 amount=-1
-kerning first=70 second=58 amount=-1
-kerning first=70 second=34 amount=1
-kerning first=70 second=39 amount=1
-kerning first=70 second=44 amount=-4
-kerning first=70 second=46 amount=-3
-kerning first=100 second=106 amount=1
-kerning first=100 second=56 amount=-1
-kerning first=100 second=63 amount=1
-kerning first=100 second=108 amount=1
-kerning first=100 second=92 amount=1
-kerning first=100 second=47 amount=1
-kerning first=100 second=107 amount=1
-kerning first=100 second=102 amount=1
-kerning first=100 second=93 amount=1
-kerning first=100 second=49 amount=-2
-kerning first=100 second=33 amount=1
-kerning first=100 second=113 amount=1
-kerning first=100 second=112 amount=1
-kerning first=100 second=98 amount=1
-kerning first=100 second=41 amount=1
-kerning first=100 second=105 amount=1
-kerning first=100 second=116 amount=1
-kerning first=100 second=121 amount=1
-kerning first=100 second=103 amount=1
-kerning first=100 second=59 amount=1
-kerning first=100 second=119 amount=2
-kerning first=100 second=122 amount=1
-kerning first=100 second=110 amount=1
-kerning first=100 second=120 amount=1
-kerning first=100 second=114 amount=1
-kerning first=100 second=117 amount=1
-kerning first=100 second=118 amount=2
-kerning first=100 second=111 amount=1
-kerning first=100 second=99 amount=1
-kerning first=100 second=97 amount=1
-kerning first=100 second=115 amount=1
-kerning first=100 second=58 amount=1
-kerning first=100 second=34 amount=1
-kerning first=100 second=39 amount=1
-kerning first=100 second=44 amount=1
-kerning first=100 second=46 amount=1
-kerning first=113 second=106 amount=3
-kerning first=113 second=52 amount=1
-kerning first=113 second=108 amount=1
-kerning first=113 second=92 amount=-2
-kerning first=113 second=47 amount=1
-kerning first=113 second=107 amount=1
-kerning first=113 second=104 amount=1
-kerning first=113 second=102 amount=1
-kerning first=113 second=49 amount=-3
-kerning first=113 second=33 amount=1
-kerning first=113 second=100 amount=1
-kerning first=113 second=112 amount=1
-kerning first=113 second=98 amount=1
-kerning first=113 second=40 amount=1
-kerning first=113 second=41 amount=1
-kerning first=113 second=105 amount=1
-kerning first=113 second=116 amount=2
-kerning first=113 second=121 amount=2
-kerning first=113 second=103 amount=1
-kerning first=113 second=59 amount=2
-kerning first=113 second=119 amount=2
-kerning first=113 second=109 amount=1
-kerning first=113 second=122 amount=1
-kerning first=113 second=110 amount=1
-kerning first=113 second=120 amount=1
-kerning first=113 second=114 amount=1
-kerning first=113 second=117 amount=1
-kerning first=113 second=118 amount=2
-kerning first=113 second=111 amount=1
-kerning first=113 second=101 amount=1
-kerning first=113 second=99 amount=1
-kerning first=113 second=35 amount=1
-kerning first=113 second=97 amount=1
-kerning first=113 second=115 amount=1
-kerning first=113 second=58 amount=1
-kerning first=113 second=44 amount=2
-kerning first=113 second=45 amount=1
-kerning first=113 second=46 amount=1
-kerning first=112 second=106 amount=1
-kerning first=112 second=52 amount=1
-kerning first=112 second=63 amount=-1
-kerning first=112 second=108 amount=1
-kerning first=112 second=64 amount=1
-kerning first=112 second=50 amount=-1
-kerning first=112 second=92 amount=-3
-kerning first=112 second=107 amount=1
-kerning first=112 second=104 amount=1
-kerning first=112 second=102 amount=1
-kerning first=112 second=93 amount=-1
-kerning first=112 second=49 amount=-4
-kerning first=112 second=33 amount=1
-kerning first=112 second=100 amount=1
-kerning first=112 second=113 amount=1
-kerning first=112 second=98 amount=1
-kerning first=112 second=40 amount=1
-kerning first=112 second=105 amount=1
-kerning first=112 second=116 amount=2
-kerning first=112 second=103 amount=1
-kerning first=112 second=59 amount=1
-kerning first=112 second=119 amount=1
-kerning first=112 second=110 amount=1
-kerning first=112 second=120 amount=1
-kerning first=112 second=114 amount=1
-kerning first=112 second=117 amount=1
-kerning first=112 second=118 amount=1
-kerning first=112 second=111 amount=1
-kerning first=112 second=101 amount=1
-kerning first=112 second=99 amount=1
-kerning first=112 second=35 amount=1
-kerning first=112 second=97 amount=1
-kerning first=112 second=115 amount=1
-kerning first=112 second=34 amount=-2
-kerning first=112 second=39 amount=-2
-kerning first=112 second=44 amount=-1
-kerning first=112 second=45 amount=1
-kerning first=98 second=52 amount=1
-kerning first=98 second=56 amount=-1
-kerning first=98 second=63 amount=-1
-kerning first=98 second=108 amount=1
-kerning first=98 second=92 amount=-3
-kerning first=98 second=107 amount=1
-kerning first=98 second=102 amount=1
-kerning first=98 second=93 amount=-1
-kerning first=98 second=49 amount=-4
-kerning first=98 second=33 amount=1
-kerning first=98 second=100 amount=1
-kerning first=98 second=113 amount=1
-kerning first=98 second=112 amount=1
-kerning first=98 second=40 amount=1
-kerning first=98 second=105 amount=1
-kerning first=98 second=116 amount=1
-kerning first=98 second=103 amount=1
-kerning first=98 second=119 amount=1
-kerning first=98 second=110 amount=1
-kerning first=98 second=120 amount=1
-kerning first=98 second=114 amount=1
-kerning first=98 second=117 amount=1
-kerning first=98 second=118 amount=1
-kerning first=98 second=111 amount=1
-kerning first=98 second=101 amount=1
-kerning first=98 second=99 amount=1
-kerning first=98 second=35 amount=1
-kerning first=98 second=97 amount=1
-kerning first=98 second=115 amount=1
-kerning first=98 second=34 amount=-3
-kerning first=98 second=39 amount=-3
-kerning first=98 second=45 amount=1
-kerning first=98 second=46 amount=1
-kerning first=40 second=106 amount=1
-kerning first=40 second=87 amount=1
-kerning first=40 second=81 amount=-1
-kerning first=40 second=90 amount=1
-kerning first=40 second=88 amount=1
-kerning first=40 second=89 amount=1
-kerning first=40 second=65 amount=1
-kerning first=40 second=75 amount=1
-kerning first=40 second=86 amount=1
-kerning first=40 second=52 amount=-1
-kerning first=40 second=78 amount=1
-kerning first=40 second=85 amount=1
-kerning first=40 second=48 amount=-1
-kerning first=40 second=68 amount=1
-kerning first=40 second=76 amount=1
-kerning first=40 second=74 amount=-1
-kerning first=40 second=56 amount=-1
-kerning first=40 second=80 amount=1
-kerning first=40 second=69 amount=1
-kerning first=40 second=108 amount=1
-kerning first=40 second=64 amount=-1
-kerning first=40 second=82 amount=1
-kerning first=40 second=92 amount=1
-kerning first=40 second=47 amount=1
-kerning first=40 second=107 amount=1
-kerning first=40 second=66 amount=1
-kerning first=40 second=104 amount=1
-kerning first=40 second=93 amount=1
-kerning first=40 second=49 amount=-2
-kerning first=40 second=73 amount=1
-kerning first=40 second=33 amount=1
-kerning first=40 second=51 amount=-1
-kerning first=40 second=54 amount=-2
-kerning first=40 second=57 amount=-1
-kerning first=40 second=112 amount=1
-kerning first=40 second=98 amount=1
-kerning first=40 second=41 amount=1
-kerning first=40 second=105 amount=1
-kerning first=40 second=59 amount=1
-kerning first=40 second=122 amount=1
-kerning first=40 second=110 amount=1
-kerning first=40 second=120 amount=1
-kerning first=40 second=114 amount=1
-kerning first=40 second=35 amount=-1
-kerning first=40 second=97 amount=1
-kerning first=40 second=58 amount=1
-kerning first=40 second=34 amount=1
-kerning first=40 second=39 amount=1
-kerning first=40 second=44 amount=1
-kerning first=40 second=45 amount=-1
-kerning first=40 second=46 amount=1
-kerning first=41 second=106 amount=1
-kerning first=41 second=81 amount=1
-kerning first=41 second=52 amount=1
-kerning first=41 second=85 amount=1
-kerning first=41 second=55 amount=-1
-kerning first=41 second=83 amount=1
-kerning first=41 second=74 amount=1
-kerning first=41 second=56 amount=-1
-kerning first=41 second=80 amount=1
-kerning first=41 second=63 amount=1
-kerning first=41 second=69 amount=1
-kerning first=41 second=108 amount=1
-kerning first=41 second=50 amount=-1
-kerning first=41 second=71 amount=1
-kerning first=41 second=107 amount=1
-kerning first=41 second=66 amount=1
-kerning first=41 second=104 amount=1
-kerning first=41 second=72 amount=1
-kerning first=41 second=102 amount=1
-kerning first=41 second=49 amount=-2
-kerning first=41 second=73 amount=1
-kerning first=41 second=33 amount=1
-kerning first=41 second=79 amount=1
-kerning first=41 second=67 amount=1
-kerning first=41 second=100 amount=1
-kerning first=41 second=113 amount=1
-kerning first=41 second=112 amount=1
-kerning first=41 second=98 amount=1
-kerning first=41 second=40 amount=1
-kerning first=41 second=105 amount=1
-kerning first=41 second=116 amount=2
-kerning first=41 second=121 amount=2
-kerning first=41 second=103 amount=1
-kerning first=41 second=59 amount=1
-kerning first=41 second=119 amount=2
-kerning first=41 second=109 amount=1
-kerning first=41 second=110 amount=1
-kerning first=41 second=120 amount=1
-kerning first=41 second=114 amount=1
-kerning first=41 second=117 amount=1
-kerning first=41 second=118 amount=2
-kerning first=41 second=111 amount=1
-kerning first=41 second=101 amount=1
-kerning first=41 second=99 amount=1
-kerning first=41 second=35 amount=1
-kerning first=41 second=97 amount=1
-kerning first=41 second=115 amount=1
-kerning first=41 second=34 amount=1
-kerning first=41 second=39 amount=1
-kerning first=41 second=44 amount=-1
-kerning first=41 second=45 amount=1
-kerning first=105 second=106 amount=1
-kerning first=105 second=63 amount=1
-kerning first=105 second=108 amount=1
-kerning first=105 second=50 amount=1
-kerning first=105 second=92 amount=1
-kerning first=105 second=47 amount=1
-kerning first=105 second=107 amount=1
-kerning first=105 second=104 amount=1
-kerning first=105 second=102 amount=1
-kerning first=105 second=93 amount=1
-kerning first=105 second=49 amount=-2
-kerning first=105 second=33 amount=1
-kerning first=105 second=100 amount=1
-kerning first=105 second=113 amount=1
-kerning first=105 second=112 amount=1
-kerning first=105 second=98 amount=1
-kerning first=105 second=40 amount=1
-kerning first=105 second=41 amount=1
-kerning first=105 second=105 amount=1
-kerning first=105 second=116 amount=2
-kerning first=105 second=121 amount=2
-kerning first=105 second=103 amount=1
-kerning first=105 second=59 amount=2
-kerning first=105 second=119 amount=2
-kerning first=105 second=109 amount=1
-kerning first=105 second=122 amount=1
-kerning first=105 second=110 amount=1
-kerning first=105 second=120 amount=1
-kerning first=105 second=114 amount=1
-kerning first=105 second=117 amount=1
-kerning first=105 second=118 amount=2
-kerning first=105 second=111 amount=1
-kerning first=105 second=101 amount=1
-kerning first=105 second=99 amount=1
-kerning first=105 second=35 amount=1
-kerning first=105 second=97 amount=1
-kerning first=105 second=115 amount=1
-kerning first=105 second=58 amount=1
-kerning first=105 second=34 amount=1
-kerning first=105 second=39 amount=1
-kerning first=105 second=44 amount=1
-kerning first=105 second=46 amount=1
-kerning first=116 second=106 amount=2
-kerning first=116 second=52 amount=-1
-kerning first=116 second=55 amount=-1
-kerning first=116 second=48 amount=1
-kerning first=116 second=63 amount=1
-kerning first=116 second=108 amount=2
-kerning first=116 second=50 amount=-1
-kerning first=116 second=92 amount=-1
-kerning first=116 second=107 amount=2
-kerning first=116 second=104 amount=1
-kerning first=116 second=102 amount=2
-kerning first=116 second=93 amount=-2
-kerning first=116 second=49 amount=-3
-kerning first=116 second=33 amount=2
-kerning first=116 second=54 amount=1
-kerning first=116 second=57 amount=1
-kerning first=116 second=100 amount=1
-kerning first=116 second=113 amount=1
-kerning first=116 second=112 amount=2
-kerning first=116 second=98 amount=1
-kerning first=116 second=40 amount=2
-kerning first=116 second=105 amount=2
-kerning first=116 second=116 amount=2
-kerning first=116 second=121 amount=2
-kerning first=116 second=103 amount=1
-kerning first=116 second=59 amount=1
-kerning first=116 second=119 amount=3
-kerning first=116 second=109 amount=1
-kerning first=116 second=122 amount=1
-kerning first=116 second=110 amount=2
-kerning first=116 second=120 amount=2
-kerning first=116 second=114 amount=2
-kerning first=116 second=117 amount=2
-kerning first=116 second=118 amount=3
-kerning first=116 second=111 amount=1
-kerning first=116 second=101 amount=1
-kerning first=116 second=99 amount=1
-kerning first=116 second=35 amount=1
-kerning first=116 second=97 amount=1
-kerning first=116 second=115 amount=1
-kerning first=116 second=58 amount=1
-kerning first=116 second=34 amount=1
-kerning first=116 second=39 amount=1
-kerning first=116 second=45 amount=-1
-kerning first=116 second=32 amount=1
-kerning first=121 second=106 amount=1
-kerning first=121 second=55 amount=-3
-kerning first=121 second=108 amount=1
-kerning first=121 second=64 amount=-1
-kerning first=121 second=50 amount=-2
-kerning first=121 second=92 amount=-2
-kerning first=121 second=47 amount=-2
-kerning first=121 second=107 amount=1
-kerning first=121 second=104 amount=1
-kerning first=121 second=102 amount=1
-kerning first=121 second=93 amount=-3
-kerning first=121 second=49 amount=-3
-kerning first=121 second=33 amount=1
-kerning first=121 second=51 amount=-1
-kerning first=121 second=112 amount=1
-kerning first=121 second=98 amount=1
-kerning first=121 second=40 amount=1
-kerning first=121 second=41 amount=-1
-kerning first=121 second=105 amount=1
-kerning first=121 second=116 amount=2
-kerning first=121 second=121 amount=2
-kerning first=121 second=59 amount=1
-kerning first=121 second=119 amount=2
-kerning first=121 second=109 amount=1
-kerning first=121 second=110 amount=1
-kerning first=121 second=120 amount=1
-kerning first=121 second=114 amount=1
-kerning first=121 second=117 amount=1
-kerning first=121 second=118 amount=2
-kerning first=121 second=111 amount=1
-kerning first=121 second=35 amount=1
-kerning first=121 second=97 amount=1
-kerning first=121 second=44 amount=-2
-kerning first=121 second=46 amount=-2
-kerning first=121 second=32 amount=1
-kerning first=103 second=106 amount=3
-kerning first=103 second=52 amount=1
-kerning first=103 second=53 amount=1
-kerning first=103 second=108 amount=1
-kerning first=103 second=92 amount=-2
-kerning first=103 second=47 amount=1
-kerning first=103 second=107 amount=1
-kerning first=103 second=104 amount=1
-kerning first=103 second=102 amount=1
-kerning first=103 second=49 amount=-3
-kerning first=103 second=33 amount=1
-kerning first=103 second=100 amount=1
-kerning first=103 second=113 amount=1
-kerning first=103 second=112 amount=1
-kerning first=103 second=98 amount=1
-kerning first=103 second=40 amount=1
-kerning first=103 second=41 amount=1
-kerning first=103 second=105 amount=1
-kerning first=103 second=116 amount=2
-kerning first=103 second=121 amount=1
-kerning first=103 second=103 amount=1
-kerning first=103 second=59 amount=2
-kerning first=103 second=119 amount=2
-kerning first=103 second=122 amount=1
-kerning first=103 second=110 amount=1
-kerning first=103 second=120 amount=1
-kerning first=103 second=114 amount=1
-kerning first=103 second=117 amount=1
-kerning first=103 second=118 amount=2
-kerning first=103 second=111 amount=1
-kerning first=103 second=101 amount=1
-kerning first=103 second=99 amount=1
-kerning first=103 second=35 amount=1
-kerning first=103 second=97 amount=1
-kerning first=103 second=115 amount=1
-kerning first=103 second=58 amount=1
-kerning first=103 second=34 amount=-1
-kerning first=103 second=44 amount=2
-kerning first=103 second=45 amount=1
-kerning first=103 second=46 amount=1
-kerning first=59 second=106 amount=1
-kerning first=59 second=87 amount=-1
-kerning first=59 second=89 amount=-2
-kerning first=59 second=86 amount=-1
-kerning first=59 second=52 amount=-1
-kerning first=59 second=53 amount=-1
-kerning first=59 second=84 amount=-2
-kerning first=59 second=74 amount=-3
-kerning first=59 second=56 amount=-1
-kerning first=59 second=63 amount=-1
-kerning first=59 second=64 amount=-1
-kerning first=59 second=92 amount=-3
-kerning first=59 second=71 amount=1
-kerning first=59 second=102 amount=1
-kerning first=59 second=93 amount=-1
-kerning first=59 second=49 amount=-4
-kerning first=59 second=33 amount=1
-kerning first=59 second=51 amount=-2
-kerning first=59 second=54 amount=-1
-kerning first=59 second=57 amount=-1
-kerning first=59 second=67 amount=1
-kerning first=59 second=112 amount=1
-kerning first=59 second=105 amount=1
-kerning first=59 second=116 amount=1
-kerning first=59 second=121 amount=1
-kerning first=59 second=59 amount=1
-kerning first=59 second=119 amount=2
-kerning first=59 second=110 amount=1
-kerning first=59 second=120 amount=1
-kerning first=59 second=114 amount=1
-kerning first=59 second=117 amount=1
-kerning first=59 second=118 amount=2
-kerning first=59 second=34 amount=-1
-kerning first=59 second=44 amount=1
-kerning first=59 second=45 amount=-1
-kerning first=119 second=106 amount=1
-kerning first=119 second=55 amount=-2
-kerning first=119 second=63 amount=1
-kerning first=119 second=108 amount=1
-kerning first=119 second=64 amount=-1
-kerning first=119 second=50 amount=-1
-kerning first=119 second=92 amount=-1
-kerning first=119 second=47 amount=-2
-kerning first=119 second=107 amount=1
-kerning first=119 second=104 amount=1
-kerning first=119 second=102 amount=1
-kerning first=119 second=93 amount=-3
-kerning first=119 second=49 amount=-3
-kerning first=119 second=33 amount=1
-kerning first=119 second=112 amount=1
-kerning first=119 second=98 amount=1
-kerning first=119 second=40 amount=1
-kerning first=119 second=105 amount=1
-kerning first=119 second=116 amount=1
-kerning first=119 second=121 amount=2
-kerning first=119 second=59 amount=1
-kerning first=119 second=119 amount=2
-kerning first=119 second=109 amount=1
-kerning first=119 second=110 amount=1
-kerning first=119 second=120 amount=2
-kerning first=119 second=114 amount=1
-kerning first=119 second=117 amount=1
-kerning first=119 second=118 amount=2
-kerning first=119 second=35 amount=1
-kerning first=119 second=34 amount=1
-kerning first=119 second=39 amount=1
-kerning first=119 second=44 amount=-2
-kerning first=119 second=46 amount=-2
-kerning first=109 second=106 amount=1
-kerning first=109 second=55 amount=1
-kerning first=109 second=56 amount=-1
-kerning first=109 second=63 amount=-2
-kerning first=109 second=108 amount=1
-kerning first=109 second=50 amount=1
-kerning first=109 second=92 amount=-3
-kerning first=109 second=47 amount=1
-kerning first=109 second=107 amount=1
-kerning first=109 second=104 amount=1
-kerning first=109 second=102 amount=1
-kerning first=109 second=49 amount=-3
-kerning first=109 second=33 amount=1
-kerning first=109 second=51 amount=-1
-kerning first=109 second=54 amount=-1
-kerning first=109 second=57 amount=-1
-kerning first=109 second=100 amount=1
-kerning first=109 second=112 amount=1
-kerning first=109 second=98 amount=1
-kerning first=109 second=41 amount=1
-kerning first=109 second=105 amount=1
-kerning first=109 second=116 amount=1
-kerning first=109 second=121 amount=1
-kerning first=109 second=59 amount=2
-kerning first=109 second=119 amount=1
-kerning first=109 second=122 amount=1
-kerning first=109 second=110 amount=1
-kerning first=109 second=120 amount=2
-kerning first=109 second=114 amount=1
-kerning first=109 second=118 amount=1
-kerning first=109 second=111 amount=1
-kerning first=109 second=97 amount=1
-kerning first=109 second=115 amount=1
-kerning first=109 second=58 amount=1
-kerning first=109 second=34 amount=-1
-kerning first=109 second=39 amount=-1
-kerning first=109 second=44 amount=2
-kerning first=109 second=46 amount=1
-kerning first=122 second=106 amount=1
-kerning first=122 second=52 amount=-1
-kerning first=122 second=108 amount=1
-kerning first=122 second=50 amount=1
-kerning first=122 second=92 amount=-2
-kerning first=122 second=47 amount=1
-kerning first=122 second=107 amount=1
-kerning first=122 second=104 amount=1
-kerning first=122 second=102 amount=1
-kerning first=122 second=49 amount=-3
-kerning first=122 second=33 amount=1
-kerning first=122 second=100 amount=1
-kerning first=122 second=113 amount=1
-kerning first=122 second=112 amount=1
-kerning first=122 second=98 amount=1
-kerning first=122 second=40 amount=1
-kerning first=122 second=41 amount=1
-kerning first=122 second=105 amount=1
-kerning first=122 second=116 amount=2
-kerning first=122 second=121 amount=2
-kerning first=122 second=103 amount=1
-kerning first=122 second=59 amount=1
-kerning first=122 second=119 amount=2
-kerning first=122 second=109 amount=1
-kerning first=122 second=122 amount=1
-kerning first=122 second=110 amount=1
-kerning first=122 second=120 amount=2
-kerning first=122 second=114 amount=1
-kerning first=122 second=117 amount=1
-kerning first=122 second=118 amount=2
-kerning first=122 second=111 amount=1
-kerning first=122 second=99 amount=1
-kerning first=122 second=35 amount=1
-kerning first=122 second=97 amount=1
-kerning first=122 second=115 amount=1
-kerning first=122 second=58 amount=1
-kerning first=122 second=44 amount=1
-kerning first=122 second=45 amount=-1
-kerning first=122 second=46 amount=1
-kerning first=122 second=32 amount=1
-kerning first=110 second=106 amount=1
-kerning first=110 second=52 amount=1
-kerning first=110 second=55 amount=1
-kerning first=110 second=63 amount=-1
-kerning first=110 second=108 amount=1
-kerning first=110 second=50 amount=1
-kerning first=110 second=92 amount=-3
-kerning first=110 second=47 amount=1
-kerning first=110 second=107 amount=1
-kerning first=110 second=104 amount=1
-kerning first=110 second=102 amount=1
-kerning first=110 second=49 amount=-3
-kerning first=110 second=33 amount=1
-kerning first=110 second=100 amount=1
-kerning first=110 second=113 amount=1
-kerning first=110 second=112 amount=1
-kerning first=110 second=98 amount=1
-kerning first=110 second=40 amount=1
-kerning first=110 second=41 amount=1
-kerning first=110 second=105 amount=1
-kerning first=110 second=116 amount=1
-kerning first=110 second=121 amount=1
-kerning first=110 second=103 amount=1
-kerning first=110 second=59 amount=1
-kerning first=110 second=119 amount=1
-kerning first=110 second=122 amount=1
-kerning first=110 second=110 amount=1
-kerning first=110 second=120 amount=2
-kerning first=110 second=114 amount=1
-kerning first=110 second=117 amount=1
-kerning first=110 second=118 amount=1
-kerning first=110 second=111 amount=1
-kerning first=110 second=101 amount=1
-kerning first=110 second=99 amount=1
-kerning first=110 second=35 amount=1
-kerning first=110 second=97 amount=1
-kerning first=110 second=115 amount=1
-kerning first=110 second=58 amount=1
-kerning first=110 second=34 amount=-1
-kerning first=110 second=39 amount=-1
-kerning first=110 second=45 amount=1
-kerning first=110 second=46 amount=1
-kerning first=120 second=106 amount=1
-kerning first=120 second=52 amount=-1
-kerning first=120 second=53 amount=-1
-kerning first=120 second=63 amount=1
-kerning first=120 second=108 amount=1
-kerning first=120 second=64 amount=-1
-kerning first=120 second=92 amount=-1
-kerning first=120 second=47 amount=1
-kerning first=120 second=107 amount=1
-kerning first=120 second=104 amount=1
-kerning first=120 second=102 amount=1
-kerning first=120 second=93 amount=-1
-kerning first=120 second=49 amount=-3
-kerning first=120 second=33 amount=1
-kerning first=120 second=112 amount=1
-kerning first=120 second=98 amount=1
-kerning first=120 second=40 amount=1
-kerning first=120 second=105 amount=1
-kerning first=120 second=116 amount=1
-kerning first=120 second=121 amount=2
-kerning first=120 second=59 amount=1
-kerning first=120 second=119 amount=2
-kerning first=120 second=109 amount=1
-kerning first=120 second=122 amount=1
-kerning first=120 second=110 amount=1
-kerning first=120 second=120 amount=2
-kerning first=120 second=114 amount=1
-kerning first=120 second=117 amount=1
-kerning first=120 second=118 amount=2
-kerning first=120 second=35 amount=1
-kerning first=120 second=97 amount=1
-kerning first=120 second=34 amount=1
-kerning first=120 second=39 amount=1
-kerning first=120 second=44 amount=1
-kerning first=120 second=45 amount=-1
-kerning first=120 second=46 amount=1
-kerning first=120 second=32 amount=1
-kerning first=114 second=106 amount=2
-kerning first=114 second=52 amount=-1
-kerning first=114 second=55 amount=-2
-kerning first=114 second=48 amount=1
-kerning first=114 second=63 amount=1
-kerning first=114 second=108 amount=1
-kerning first=114 second=64 amount=-1
-kerning first=114 second=50 amount=-1
-kerning first=114 second=92 amount=-1
-kerning first=114 second=47 amount=-3
-kerning first=114 second=107 amount=1
-kerning first=114 second=104 amount=1
-kerning first=114 second=102 amount=1
-kerning first=114 second=93 amount=-3
-kerning first=114 second=49 amount=-3
-kerning first=114 second=33 amount=2
-kerning first=114 second=113 amount=1
-kerning first=114 second=112 amount=2
-kerning first=114 second=98 amount=1
-kerning first=114 second=40 amount=1
-kerning first=114 second=105 amount=2
-kerning first=114 second=116 amount=1
-kerning first=114 second=121 amount=2
-kerning first=114 second=103 amount=1
-kerning first=114 second=59 amount=1
-kerning first=114 second=119 amount=3
-kerning first=114 second=109 amount=1
-kerning first=114 second=122 amount=1
-kerning first=114 second=110 amount=2
-kerning first=114 second=120 amount=2
-kerning first=114 second=114 amount=2
-kerning first=114 second=117 amount=2
-kerning first=114 second=118 amount=3
-kerning first=114 second=111 amount=1
-kerning first=114 second=35 amount=1
-kerning first=114 second=97 amount=1
-kerning first=114 second=34 amount=1
-kerning first=114 second=39 amount=2
-kerning first=114 second=44 amount=-3
-kerning first=114 second=45 amount=-2
-kerning first=114 second=46 amount=-3
-kerning first=117 second=106 amount=1
-kerning first=117 second=52 amount=1
-kerning first=117 second=56 amount=-1
-kerning first=117 second=63 amount=-1
-kerning first=117 second=108 amount=1
-kerning first=117 second=50 amount=-1
-kerning first=117 second=92 amount=-2
-kerning first=117 second=107 amount=1
-kerning first=117 second=104 amount=1
-kerning first=117 second=102 amount=1
-kerning first=117 second=93 amount=-1
-kerning first=117 second=49 amount=-3
-kerning first=117 second=33 amount=1
-kerning first=117 second=51 amount=-1
-kerning first=117 second=100 amount=1
-kerning first=117 second=113 amount=1
-kerning first=117 second=112 amount=1
-kerning first=117 second=98 amount=1
-kerning first=117 second=40 amount=1
-kerning first=117 second=105 amount=1
-kerning first=117 second=116 amount=2
-kerning first=117 second=121 amount=2
-kerning first=117 second=103 amount=1
-kerning first=117 second=59 amount=1
-kerning first=117 second=119 amount=2
-kerning first=117 second=109 amount=1
-kerning first=117 second=110 amount=1
-kerning first=117 second=120 amount=1
-kerning first=117 second=114 amount=1
-kerning first=117 second=117 amount=1
-kerning first=117 second=118 amount=2
-kerning first=117 second=111 amount=1
-kerning first=117 second=101 amount=1
-kerning first=117 second=99 amount=1
-kerning first=117 second=35 amount=1
-kerning first=117 second=97 amount=1
-kerning first=117 second=115 amount=1
-kerning first=117 second=34 amount=-2
-kerning first=117 second=39 amount=-2
-kerning first=117 second=44 amount=-1
-kerning first=117 second=45 amount=1
-kerning first=118 second=106 amount=2
-kerning first=118 second=55 amount=-2
-kerning first=118 second=48 amount=1
-kerning first=118 second=63 amount=1
-kerning first=118 second=108 amount=2
-kerning first=118 second=50 amount=-1
-kerning first=118 second=92 amount=-1
-kerning first=118 second=47 amount=-1
-kerning first=118 second=107 amount=2
-kerning first=118 second=104 amount=1
-kerning first=118 second=102 amount=2
-kerning first=118 second=93 amount=-2
-kerning first=118 second=49 amount=-3
-kerning first=118 second=33 amount=2
-kerning first=118 second=54 amount=1
-kerning first=118 second=57 amount=1
-kerning first=118 second=100 amount=1
-kerning first=118 second=113 amount=1
-kerning first=118 second=112 amount=2
-kerning first=118 second=98 amount=1
-kerning first=118 second=40 amount=2
-kerning first=118 second=105 amount=2
-kerning first=118 second=116 amount=2
-kerning first=118 second=121 amount=2
-kerning first=118 second=103 amount=1
-kerning first=118 second=59 amount=1
-kerning first=118 second=119 amount=3
-kerning first=118 second=109 amount=2
-kerning first=118 second=122 amount=1
-kerning first=118 second=110 amount=2
-kerning first=118 second=120 amount=2
-kerning first=118 second=114 amount=2
-kerning first=118 second=117 amount=2
-kerning first=118 second=118 amount=3
-kerning first=118 second=111 amount=1
-kerning first=118 second=101 amount=1
-kerning first=118 second=99 amount=1
-kerning first=118 second=35 amount=2
-kerning first=118 second=97 amount=1
-kerning first=118 second=115 amount=1
-kerning first=118 second=58 amount=1
-kerning first=118 second=34 amount=1
-kerning first=118 second=39 amount=1
-kerning first=118 second=44 amount=-2
-kerning first=118 second=46 amount=-2
-kerning first=118 second=32 amount=1
-kerning first=111 second=106 amount=1
-kerning first=111 second=52 amount=1
-kerning first=111 second=53 amount=1
-kerning first=111 second=63 amount=-1
-kerning first=111 second=108 amount=1
-kerning first=111 second=64 amount=1
-kerning first=111 second=92 amount=-3
-kerning first=111 second=47 amount=1
-kerning first=111 second=107 amount=1
-kerning first=111 second=104 amount=1
-kerning first=111 second=102 amount=1
-kerning first=111 second=93 amount=-1
-kerning first=111 second=49 amount=-3
-kerning first=111 second=33 amount=1
-kerning first=111 second=100 amount=1
-kerning first=111 second=113 amount=1
-kerning first=111 second=112 amount=1
-kerning first=111 second=98 amount=1
-kerning first=111 second=40 amount=1
-kerning first=111 second=105 amount=1
-kerning first=111 second=116 amount=2
-kerning first=111 second=121 amount=1
-kerning first=111 second=103 amount=1
-kerning first=111 second=59 amount=1
-kerning first=111 second=119 amount=2
-kerning first=111 second=109 amount=1
-kerning first=111 second=110 amount=1
-kerning first=111 second=120 amount=1
-kerning first=111 second=114 amount=1
-kerning first=111 second=117 amount=1
-kerning first=111 second=118 amount=1
-kerning first=111 second=111 amount=1
-kerning first=111 second=101 amount=1
-kerning first=111 second=99 amount=1
-kerning first=111 second=35 amount=1
-kerning first=111 second=97 amount=1
-kerning first=111 second=115 amount=1
-kerning first=111 second=34 amount=-2
-kerning first=111 second=39 amount=-2
-kerning first=111 second=45 amount=1
-kerning first=111 second=46 amount=1
-kerning first=101 second=106 amount=1
-kerning first=101 second=52 amount=1
-kerning first=101 second=53 amount=1
-kerning first=101 second=55 amount=1
-kerning first=101 second=56 amount=1
-kerning first=101 second=63 amount=-1
-kerning first=101 second=108 amount=2
-kerning first=101 second=64 amount=1
-kerning first=101 second=50 amount=1
-kerning first=101 second=92 amount=-2
-kerning first=101 second=47 amount=2
-kerning first=101 second=107 amount=2
-kerning first=101 second=104 amount=1
-kerning first=101 second=102 amount=1
-kerning first=101 second=49 amount=-2
-kerning first=101 second=33 amount=1
-kerning first=101 second=51 amount=1
-kerning first=101 second=57 amount=1
-kerning first=101 second=100 amount=2
-kerning first=101 second=113 amount=1
-kerning first=101 second=112 amount=1
-kerning first=101 second=98 amount=1
-kerning first=101 second=40 amount=1
-kerning first=101 second=41 amount=1
-kerning first=101 second=105 amount=2
-kerning first=101 second=116 amount=2
-kerning first=101 second=121 amount=1
-kerning first=101 second=103 amount=1
-kerning first=101 second=59 amount=1
-kerning first=101 second=119 amount=2
-kerning first=101 second=109 amount=1
-kerning first=101 second=122 amount=1
-kerning first=101 second=110 amount=2
-kerning first=101 second=120 amount=2
-kerning first=101 second=114 amount=2
-kerning first=101 second=117 amount=2
-kerning first=101 second=118 amount=2
-kerning first=101 second=111 amount=2
-kerning first=101 second=101 amount=1
-kerning first=101 second=99 amount=2
-kerning first=101 second=35 amount=1
-kerning first=101 second=97 amount=2
-kerning first=101 second=115 amount=2
-kerning first=101 second=58 amount=1
-kerning first=101 second=34 amount=-1
-kerning first=101 second=39 amount=-1
-kerning first=101 second=44 amount=1
-kerning first=101 second=45 amount=1
-kerning first=101 second=46 amount=2
-kerning first=99 second=106 amount=1
-kerning first=99 second=52 amount=1
-kerning first=99 second=53 amount=1
-kerning first=99 second=63 amount=-1
-kerning first=99 second=108 amount=1
-kerning first=99 second=50 amount=-1
-kerning first=99 second=92 amount=-3
-kerning first=99 second=107 amount=1
-kerning first=99 second=104 amount=1
-kerning first=99 second=102 amount=1
-kerning first=99 second=93 amount=-1
-kerning first=99 second=49 amount=-4
-kerning first=99 second=33 amount=1
-kerning first=99 second=100 amount=1
-kerning first=99 second=113 amount=1
-kerning first=99 second=112 amount=1
-kerning first=99 second=98 amount=1
-kerning first=99 second=40 amount=1
-kerning first=99 second=105 amount=1
-kerning first=99 second=116 amount=1
-kerning first=99 second=121 amount=1
-kerning first=99 second=103 amount=1
-kerning first=99 second=119 amount=1
-kerning first=99 second=110 amount=1
-kerning first=99 second=120 amount=1
-kerning first=99 second=114 amount=1
-kerning first=99 second=117 amount=1
-kerning first=99 second=118 amount=1
-kerning first=99 second=111 amount=1
-kerning first=99 second=101 amount=1
-kerning first=99 second=99 amount=1
-kerning first=99 second=35 amount=1
-kerning first=99 second=97 amount=1
-kerning first=99 second=115 amount=1
-kerning first=99 second=58 amount=1
-kerning first=99 second=34 amount=-2
-kerning first=99 second=39 amount=-2
-kerning first=99 second=45 amount=1
-kerning first=99 second=46 amount=1
-kerning first=35 second=106 amount=1
-kerning first=35 second=81 amount=1
-kerning first=35 second=90 amount=-3
-kerning first=35 second=88 amount=-2
-kerning first=35 second=89 amount=-1
-kerning first=35 second=65 amount=-1
-kerning first=35 second=53 amount=-1
-kerning first=35 second=85 amount=1
-kerning first=35 second=55 amount=-1
-kerning first=35 second=74 amount=-1
-kerning first=35 second=56 amount=-1
-kerning first=35 second=63 amount=1
-kerning first=35 second=108 amount=1
-kerning first=35 second=50 amount=-1
-kerning first=35 second=92 amount=-1
-kerning first=35 second=47 amount=-3
-kerning first=35 second=71 amount=1
-kerning first=35 second=107 amount=1
-kerning first=35 second=72 amount=1
-kerning first=35 second=102 amount=1
-kerning first=35 second=93 amount=-2
-kerning first=35 second=49 amount=-3
-kerning first=35 second=33 amount=1
-kerning first=35 second=79 amount=1
-kerning first=35 second=51 amount=-1
-kerning first=35 second=57 amount=-1
-kerning first=35 second=67 amount=1
-kerning first=35 second=113 amount=1
-kerning first=35 second=112 amount=1
-kerning first=35 second=40 amount=1
-kerning first=35 second=41 amount=-1
-kerning first=35 second=105 amount=1
-kerning first=35 second=116 amount=2
-kerning first=35 second=121 amount=1
-kerning first=35 second=103 amount=1
-kerning first=35 second=119 amount=2
-kerning first=35 second=109 amount=1
-kerning first=35 second=122 amount=-1
-kerning first=35 second=110 amount=1
-kerning first=35 second=120 amount=1
-kerning first=35 second=114 amount=1
-kerning first=35 second=117 amount=1
-kerning first=35 second=118 amount=2
-kerning first=35 second=111 amount=1
-kerning first=35 second=99 amount=1
-kerning first=35 second=97 amount=1
-kerning first=35 second=34 amount=1
-kerning first=35 second=39 amount=1
-kerning first=35 second=44 amount=-5
-kerning first=35 second=46 amount=-3
-kerning first=97 second=106 amount=1
-kerning first=97 second=55 amount=1
-kerning first=97 second=48 amount=-1
-kerning first=97 second=63 amount=-2
-kerning first=97 second=108 amount=1
-kerning first=97 second=50 amount=1
-kerning first=97 second=92 amount=-4
-kerning first=97 second=47 amount=1
-kerning first=97 second=107 amount=1
-kerning first=97 second=104 amount=1
-kerning first=97 second=49 amount=-3
-kerning first=97 second=33 amount=1
-kerning first=97 second=54 amount=-1
-kerning first=97 second=57 amount=-1
-kerning first=97 second=100 amount=1
-kerning first=97 second=112 amount=1
-kerning first=97 second=98 amount=1
-kerning first=97 second=41 amount=1
-kerning first=97 second=105 amount=1
-kerning first=97 second=116 amount=1
-kerning first=97 second=103 amount=1
-kerning first=97 second=59 amount=1
-kerning first=97 second=119 amount=1
-kerning first=97 second=122 amount=1
-kerning first=97 second=110 amount=1
-kerning first=97 second=120 amount=2
-kerning first=97 second=114 amount=1
-kerning first=97 second=117 amount=1
-kerning first=97 second=118 amount=1
-kerning first=97 second=111 amount=1
-kerning first=97 second=99 amount=1
-kerning first=97 second=97 amount=1
-kerning first=97 second=115 amount=1
-kerning first=97 second=58 amount=1
-kerning first=97 second=34 amount=-3
-kerning first=97 second=39 amount=-2
-kerning first=97 second=44 amount=1
-kerning first=97 second=46 amount=1
-kerning first=115 second=106 amount=1
-kerning first=115 second=53 amount=1
-kerning first=115 second=63 amount=-1
-kerning first=115 second=108 amount=1
-kerning first=115 second=92 amount=-3
-kerning first=115 second=47 amount=1
-kerning first=115 second=107 amount=1
-kerning first=115 second=104 amount=1
-kerning first=115 second=102 amount=1
-kerning first=115 second=49 amount=-3
-kerning first=115 second=33 amount=1
-kerning first=115 second=100 amount=1
-kerning first=115 second=113 amount=1
-kerning first=115 second=112 amount=1
-kerning first=115 second=98 amount=1
-kerning first=115 second=40 amount=1
-kerning first=115 second=41 amount=1
-kerning first=115 second=105 amount=1
-kerning first=115 second=116 amount=2
-kerning first=115 second=121 amount=1
-kerning first=115 second=103 amount=1
-kerning first=115 second=59 amount=1
-kerning first=115 second=119 amount=2
-kerning first=115 second=109 amount=1
-kerning first=115 second=122 amount=1
-kerning first=115 second=110 amount=1
-kerning first=115 second=120 amount=1
-kerning first=115 second=114 amount=1
-kerning first=115 second=117 amount=1
-kerning first=115 second=118 amount=1
-kerning first=115 second=111 amount=1
-kerning first=115 second=101 amount=1
-kerning first=115 second=99 amount=1
-kerning first=115 second=35 amount=1
-kerning first=115 second=97 amount=2
-kerning first=115 second=115 amount=1
-kerning first=115 second=58 amount=1
-kerning first=115 second=34 amount=-2
-kerning first=115 second=39 amount=-2
-kerning first=115 second=46 amount=1
-kerning first=58 second=87 amount=-1
-kerning first=58 second=77 amount=-1
-kerning first=58 second=89 amount=-2
-kerning first=58 second=65 amount=-1
-kerning first=58 second=86 amount=-1
-kerning first=58 second=52 amount=-1
-kerning first=58 second=53 amount=-1
-kerning first=58 second=55 amount=-1
-kerning first=58 second=84 amount=-3
-kerning first=58 second=48 amount=-1
-kerning first=58 second=74 amount=-2
-kerning first=58 second=56 amount=-1
-kerning first=58 second=63 amount=-1
-kerning first=58 second=64 amount=-1
-kerning first=58 second=50 amount=-1
-kerning first=58 second=92 amount=-3
-kerning first=58 second=93 amount=-1
-kerning first=58 second=49 amount=-4
-kerning first=58 second=51 amount=-1
-kerning first=58 second=54 amount=-1
-kerning first=58 second=57 amount=-1
-kerning first=58 second=116 amount=1
-kerning first=58 second=121 amount=1
-kerning first=58 second=119 amount=1
-kerning first=58 second=120 amount=1
-kerning first=58 second=114 amount=1
-kerning first=58 second=118 amount=1
-kerning first=58 second=58 amount=-1
-kerning first=58 second=34 amount=-3
-kerning first=58 second=39 amount=-1
-kerning first=58 second=45 amount=-2
-kerning first=42 second=83 amount=1
-kerning first=42 second=93 amount=1
-kerning first=42 second=113 amount=1
-kerning first=42 second=103 amount=1
-kerning first=34 second=106 amount=1
-kerning first=34 second=87 amount=1
-kerning first=34 second=90 amount=-1
-kerning first=34 second=88 amount=1
-kerning first=34 second=89 amount=1
-kerning first=34 second=65 amount=-3
-kerning first=34 second=75 amount=1
-kerning first=34 second=86 amount=1
-kerning first=34 second=52 amount=-3
-kerning first=34 second=53 amount=-1
-kerning first=34 second=85 amount=1
-kerning first=34 second=84 amount=1
-kerning first=34 second=48 amount=-1
-kerning first=34 second=76 amount=1
-kerning first=34 second=74 amount=-5
-kerning first=34 second=56 amount=-1
-kerning first=34 second=80 amount=1
-kerning first=34 second=63 amount=1
-kerning first=34 second=108 amount=1
-kerning first=34 second=64 amount=-4
-kerning first=34 second=82 amount=1
-kerning first=34 second=50 amount=-1
-kerning first=34 second=92 amount=1
-kerning first=34 second=47 amount=-1
-kerning first=34 second=107 amount=1
-kerning first=34 second=66 amount=1
-kerning first=34 second=102 amount=-1
-kerning first=34 second=93 amount=1
-kerning first=34 second=49 amount=-2
-kerning first=34 second=73 amount=1
-kerning first=34 second=33 amount=1
-kerning first=34 second=51 amount=-1
-kerning first=34 second=54 amount=-1
-kerning first=34 second=57 amount=-1
-kerning first=34 second=100 amount=-2
-kerning first=34 second=113 amount=-1
-kerning first=34 second=112 amount=1
-kerning first=34 second=98 amount=1
-kerning first=34 second=41 amount=1
-kerning first=34 second=105 amount=1
-kerning first=34 second=116 amount=-1
-kerning first=34 second=121 amount=2
-kerning first=34 second=103 amount=-1
-kerning first=34 second=119 amount=1
-kerning first=34 second=109 amount=1
-kerning first=34 second=122 amount=-1
-kerning first=34 second=110 amount=1
-kerning first=34 second=120 amount=1
-kerning first=34 second=117 amount=1
-kerning first=34 second=118 amount=1
-kerning first=34 second=111 amount=-1
-kerning first=34 second=101 amount=-2
-kerning first=34 second=99 amount=-2
-kerning first=34 second=35 amount=-1
-kerning first=34 second=97 amount=-2
-kerning first=34 second=115 amount=-1
-kerning first=34 second=34 amount=1
-kerning first=34 second=39 amount=1
-kerning first=34 second=44 amount=-3
-kerning first=34 second=45 amount=-1
-kerning first=34 second=46 amount=-2
-kerning first=39 second=87 amount=1
-kerning first=39 second=90 amount=-1
-kerning first=39 second=88 amount=1
-kerning first=39 second=89 amount=1
-kerning first=39 second=65 amount=-3
-kerning first=39 second=75 amount=1
-kerning first=39 second=86 amount=2
-kerning first=39 second=52 amount=-2
-kerning first=39 second=78 amount=1
-kerning first=39 second=53 amount=-1
-kerning first=39 second=85 amount=1
-kerning first=39 second=84 amount=1
-kerning first=39 second=68 amount=1
-kerning first=39 second=76 amount=1
-kerning first=39 second=74 amount=-4
-kerning first=39 second=80 amount=1
-kerning first=39 second=63 amount=1
-kerning first=39 second=69 amount=1
-kerning first=39 second=108 amount=1
-kerning first=39 second=64 amount=-5
-kerning first=39 second=82 amount=1
-kerning first=39 second=50 amount=-1
-kerning first=39 second=92 amount=2
-kerning first=39 second=47 amount=-5
-kerning first=39 second=107 amount=1
-kerning first=39 second=66 amount=1
-kerning first=39 second=104 amount=1
-kerning first=39 second=102 amount=-1
-kerning first=39 second=93 amount=1
-kerning first=39 second=49 amount=-1
-kerning first=39 second=73 amount=1
-kerning first=39 second=33 amount=1
-kerning first=39 second=54 amount=-1
-kerning first=39 second=100 amount=-2
-kerning first=39 second=113 amount=-2
-kerning first=39 second=98 amount=1
-kerning first=39 second=41 amount=1
-kerning first=39 second=105 amount=1
-kerning first=39 second=116 amount=-1
-kerning first=39 second=121 amount=1
-kerning first=39 second=103 amount=-1
-kerning first=39 second=59 amount=-1
-kerning first=39 second=122 amount=-1
-kerning first=39 second=114 amount=-1
-kerning first=39 second=118 amount=1
-kerning first=39 second=111 amount=-2
-kerning first=39 second=101 amount=-2
-kerning first=39 second=99 amount=-2
-kerning first=39 second=35 amount=-1
-kerning first=39 second=97 amount=-1
-kerning first=39 second=115 amount=-2
-kerning first=39 second=58 amount=-1
-kerning first=39 second=34 amount=1
-kerning first=39 second=39 amount=1
-kerning first=39 second=44 amount=-3
-kerning first=39 second=45 amount=-2
-kerning first=39 second=46 amount=-1
-kerning first=44 second=106 amount=1
-kerning first=44 second=87 amount=-3
-kerning first=44 second=81 amount=-2
-kerning first=44 second=90 amount=2
-kerning first=44 second=88 amount=1
-kerning first=44 second=89 amount=-3
-kerning first=44 second=65 amount=1
-kerning first=44 second=86 amount=-2
-kerning first=44 second=52 amount=-3
-kerning first=44 second=85 amount=-1
-kerning first=44 second=55 amount=1
-kerning first=44 second=84 amount=-1
-kerning first=44 second=83 amount=-1
-kerning first=44 second=48 amount=-2
-kerning first=44 second=74 amount=-2
-kerning first=44 second=56 amount=-1
-kerning first=44 second=80 amount=1
-kerning first=44 second=63 amount=-2
-kerning first=44 second=108 amount=1
-kerning first=44 second=64 amount=-1
-kerning first=44 second=50 amount=1
-kerning first=44 second=92 amount=-4
-kerning first=44 second=47 amount=2
-kerning first=44 second=71 amount=-1
-kerning first=44 second=107 amount=1
-kerning first=44 second=102 amount=-1
-kerning first=44 second=49 amount=-3
-kerning first=44 second=73 amount=1
-kerning first=44 second=33 amount=1
-kerning first=44 second=79 amount=-2
-kerning first=44 second=51 amount=-1
-kerning first=44 second=54 amount=-2
-kerning first=44 second=57 amount=-2
-kerning first=44 second=70 amount=1
-kerning first=44 second=113 amount=-1
-kerning first=44 second=98 amount=1
-kerning first=44 second=41 amount=1
-kerning first=44 second=105 amount=1
-kerning first=44 second=116 amount=-1
-kerning first=44 second=121 amount=-2
-kerning first=44 second=59 amount=2
-kerning first=44 second=119 amount=-1
-kerning first=44 second=109 amount=-1
-kerning first=44 second=122 amount=1
-kerning first=44 second=110 amount=1
-kerning first=44 second=120 amount=1
-kerning first=44 second=114 amount=1
-kerning first=44 second=118 amount=-1
-kerning first=44 second=35 amount=-3
-kerning first=44 second=97 amount=1
-kerning first=44 second=58 amount=1
-kerning first=44 second=34 amount=-3
-kerning first=44 second=39 amount=-4
-kerning first=44 second=44 amount=1
-kerning first=44 second=45 amount=-3
-kerning first=44 second=46 amount=1
-kerning first=45 second=87 amount=-1
-kerning first=45 second=81 amount=1
-kerning first=45 second=90 amount=-2
-kerning first=45 second=88 amount=-2
-kerning first=45 second=89 amount=-3
-kerning first=45 second=65 amount=-1
-kerning first=45 second=86 amount=-1
-kerning first=45 second=52 amount=1
-kerning first=45 second=53 amount=-1
-kerning first=45 second=55 amount=-3
-kerning first=45 second=84 amount=-2
-kerning first=45 second=83 amount=-2
-kerning first=45 second=56 amount=-2
-kerning first=45 second=63 amount=-1
-kerning first=45 second=108 amount=1
-kerning first=45 second=50 amount=-4
-kerning first=45 second=92 amount=-4
-kerning first=45 second=47 amount=-2
-kerning first=45 second=71 amount=1
-kerning first=45 second=107 amount=1
-kerning first=45 second=72 amount=1
-kerning first=45 second=93 amount=-4
-kerning first=45 second=49 amount=-4
-kerning first=45 second=33 amount=1
-kerning first=45 second=79 amount=1
-kerning first=45 second=51 amount=-2
-kerning first=45 second=57 amount=-1
-kerning first=45 second=67 amount=1
-kerning first=45 second=100 amount=1
-kerning first=45 second=113 amount=1
-kerning first=45 second=40 amount=1
-kerning first=45 second=41 amount=-1
-kerning first=45 second=105 amount=1
-kerning first=45 second=116 amount=1
-kerning first=45 second=103 amount=1
-kerning first=45 second=119 amount=1
-kerning first=45 second=122 amount=-2
-kerning first=45 second=110 amount=1
-kerning first=45 second=120 amount=-1
-kerning first=45 second=114 amount=1
-kerning first=45 second=117 amount=1
-kerning first=45 second=118 amount=1
-kerning first=45 second=111 amount=1
-kerning first=45 second=101 amount=1
-kerning first=45 second=99 amount=1
-kerning first=45 second=35 amount=1
-kerning first=45 second=58 amount=-1
-kerning first=45 second=34 amount=-1
-kerning first=45 second=39 amount=-1
-kerning first=45 second=44 amount=-3
-kerning first=45 second=45 amount=1
-kerning first=45 second=46 amount=-3
-kerning first=46 second=106 amount=1
-kerning first=46 second=87 amount=-2
-kerning first=46 second=90 amount=2
-kerning first=46 second=88 amount=1
-kerning first=46 second=89 amount=-3
-kerning first=46 second=65 amount=1
-kerning first=46 second=86 amount=-1
-kerning first=46 second=52 amount=-3
-kerning first=46 second=53 amount=1
-kerning first=46 second=85 amount=-1
-kerning first=46 second=55 amount=1
-kerning first=46 second=84 amount=-2
-kerning first=46 second=48 amount=-1
-kerning first=46 second=74 amount=-1
-kerning first=46 second=80 amount=1
-kerning first=46 second=63 amount=-2
-kerning first=46 second=108 amount=1
-kerning first=46 second=50 amount=1
-kerning first=46 second=92 amount=-5
-kerning first=46 second=47 amount=2
-kerning first=46 second=107 amount=1
-kerning first=46 second=104 amount=1
-kerning first=46 second=102 amount=-1
-kerning first=46 second=49 amount=-3
-kerning first=46 second=73 amount=1
-kerning first=46 second=33 amount=1
-kerning first=46 second=79 amount=-1
-kerning first=46 second=54 amount=-1
-kerning first=46 second=100 amount=1
-kerning first=46 second=112 amount=1
-kerning first=46 second=98 amount=1
-kerning first=46 second=41 amount=1
-kerning first=46 second=105 amount=1
-kerning first=46 second=116 amount=-1
-kerning first=46 second=121 amount=-2
-kerning first=46 second=103 amount=1
-kerning first=46 second=59 amount=1
-kerning first=46 second=122 amount=1
-kerning first=46 second=110 amount=1
-kerning first=46 second=120 amount=2
-kerning first=46 second=114 amount=1
-kerning first=46 second=117 amount=1
-kerning first=46 second=118 amount=-1
-kerning first=46 second=111 amount=1
-kerning first=46 second=101 amount=1
-kerning first=46 second=99 amount=1
-kerning first=46 second=35 amount=-5
-kerning first=46 second=97 amount=1
-kerning first=46 second=115 amount=1
-kerning first=46 second=58 amount=1
-kerning first=46 second=34 amount=-5
-kerning first=46 second=39 amount=-1
-kerning first=46 second=44 amount=1
-kerning first=46 second=45 amount=-2
-kerning first=46 second=46 amount=1
-kerning first=126 second=33 amount=-1
-kerning first=126 second=32 amount=-1
-kerning first=32 second=53 amount=-1
-kerning first=32 second=83 amount=1
-kerning first=32 second=123 amount=1
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.xnb
deleted file mode 100644
index ad3ae4e1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/markerFelt.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.plist
deleted file mode 100644
index 0cf865c3..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.plist
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- chinese1
- 美好的一天
- japanese
- 良い一日を
- russian
- Хорошего дня
- spanish
- Buen día
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.xml b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.xml
deleted file mode 100644
index 0cf865c3..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/strings.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- chinese1
- 美好的一天
- japanese
- 良い一日を
- russian
- Хорошего дня
- spanish
- Buen día
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tahoma.ttf b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tahoma.ttf
deleted file mode 100644
index 3f8554bb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tahoma.ttf and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tuffy_bold_italic-charmap.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tuffy_bold_italic-charmap.xnb
deleted file mode 100644
index aedea9d2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/tuffy_bold_italic-charmap.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.fnt
deleted file mode 100644
index 0663d7de..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.fnt
+++ /dev/null
@@ -1,99 +0,0 @@
-info face="West_england" size=64 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2
-common lineHeight=48 base=36 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="west_england-64.png"
-chars count=95
-char id=39 x=2 y=2 width=44 height=52 xoffset=-1 yoffset=-1 xadvance=44 page=0 chnl=0 letter="'"
-char id=96 x=48 y=2 width=24 height=52 xoffset=-1 yoffset=-1 xadvance=24 page=0 chnl=0 letter="`"
-char id=106 x=74 y=2 width=32 height=44 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="j"
-char id=94 x=108 y=2 width=32 height=44 xoffset=7 yoffset=-1 xadvance=40 page=0 chnl=0 letter="^"
-char id=124 x=142 y=2 width=20 height=44 xoffset=11 yoffset=3 xadvance=32 page=0 chnl=0 letter="|"
-char id=47 x=164 y=2 width=44 height=40 xoffset=-1 yoffset=3 xadvance=44 page=0 chnl=0 letter="/"
-char id=123 x=210 y=2 width=40 height=40 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="{"
-char id=125 x=252 y=2 width=40 height=40 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="}"
-char id=81 x=294 y=2 width=36 height=40 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="Q"
-char id=121 x=332 y=2 width=36 height=40 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="y"
-char id=92 x=370 y=2 width=36 height=40 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="\"
-char id=112 x=408 y=2 width=36 height=40 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="p"
-char id=113 x=446 y=2 width=36 height=40 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="q"
-char id=36 x=2 y=56 width=32 height=40 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="$"
-char id=60 x=36 y=56 width=28 height=40 xoffset=7 yoffset=3 xadvance=36 page=0 chnl=0 letter="<"
-char id=62 x=66 y=56 width=28 height=40 xoffset=7 yoffset=3 xadvance=36 page=0 chnl=0 letter=">"
-char id=40 x=96 y=56 width=16 height=40 xoffset=19 yoffset=3 xadvance=36 page=0 chnl=0 letter="("
-char id=41 x=114 y=56 width=16 height=40 xoffset=7 yoffset=3 xadvance=24 page=0 chnl=0 letter=")"
-char id=59 x=132 y=56 width=16 height=40 xoffset=7 yoffset=11 xadvance=24 page=0 chnl=0 letter=";"
-char id=37 x=150 y=56 width=40 height=36 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="%"
-char id=87 x=192 y=56 width=40 height=36 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="W"
-char id=77 x=234 y=56 width=40 height=36 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="M"
-char id=88 x=276 y=56 width=40 height=36 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="X"
-char id=52 x=318 y=56 width=40 height=36 xoffset=3 yoffset=3 xadvance=44 page=0 chnl=0 letter="4"
-char id=64 x=360 y=56 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="@"
-char id=79 x=398 y=56 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="O"
-char id=71 x=436 y=56 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="G"
-char id=67 x=474 y=56 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="C"
-char id=38 x=2 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="&"
-char id=83 x=40 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="S"
-char id=103 x=78 y=98 width=36 height=36 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="g"
-char id=85 x=116 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="U"
-char id=51 x=154 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="3"
-char id=53 x=192 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="5"
-char id=54 x=230 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="6"
-char id=56 x=268 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="8"
-char id=57 x=306 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="9"
-char id=48 x=344 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="0"
-char id=63 x=382 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="?"
-char id=98 x=420 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="b"
-char id=100 x=458 y=98 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="d"
-char id=102 x=2 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="f"
-char id=65 x=40 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="A"
-char id=86 x=78 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="V"
-char id=89 x=116 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="Y"
-char id=82 x=154 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="R"
-char id=68 x=192 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="D"
-char id=75 x=230 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="K"
-char id=72 x=268 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="H"
-char id=78 x=306 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="N"
-char id=84 x=344 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="T"
-char id=90 x=382 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="Z"
-char id=66 x=420 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="B"
-char id=80 x=458 y=136 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="P"
-char id=50 x=2 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="2"
-char id=55 x=40 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="7"
-char id=104 x=78 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="h"
-char id=107 x=116 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="k"
-char id=49 x=154 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="1"
-char id=116 x=192 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="t"
-char id=105 x=230 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="i"
-char id=108 x=268 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="l"
-char id=95 x=306 y=174 width=36 height=36 xoffset=3 yoffset=3 xadvance=40 page=0 chnl=0 letter="_"
-char id=35 x=344 y=174 width=32 height=36 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="#"
-char id=74 x=378 y=174 width=32 height=36 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="J"
-char id=69 x=412 y=174 width=32 height=36 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="E"
-char id=70 x=446 y=174 width=32 height=36 xoffset=3 yoffset=3 xadvance=36 page=0 chnl=0 letter="F"
-char id=76 x=2 y=212 width=32 height=36 xoffset=7 yoffset=3 xadvance=40 page=0 chnl=0 letter="L"
-char id=73 x=36 y=212 width=28 height=36 xoffset=7 yoffset=3 xadvance=36 page=0 chnl=0 letter="I"
-char id=33 x=66 y=212 width=12 height=36 xoffset=15 yoffset=3 xadvance=28 page=0 chnl=0 letter="!"
-char id=91 x=80 y=212 width=36 height=32 xoffset=3 yoffset=7 xadvance=40 page=0 chnl=0 letter="["
-char id=93 x=118 y=212 width=36 height=32 xoffset=3 yoffset=7 xadvance=40 page=0 chnl=0 letter="]"
-char id=126 x=156 y=212 width=36 height=32 xoffset=3 yoffset=7 xadvance=40 page=0 chnl=0 letter="~"
-char id=109 x=194 y=212 width=40 height=28 xoffset=3 yoffset=11 xadvance=44 page=0 chnl=0 letter="m"
-char id=119 x=236 y=212 width=40 height=28 xoffset=3 yoffset=11 xadvance=44 page=0 chnl=0 letter="w"
-char id=111 x=278 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="o"
-char id=97 x=316 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="a"
-char id=101 x=354 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="e"
-char id=99 x=392 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="c"
-char id=115 x=430 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="s"
-char id=117 x=468 y=212 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="u"
-char id=118 x=2 y=250 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="v"
-char id=120 x=40 y=250 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="x"
-char id=110 x=78 y=250 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="n"
-char id=114 x=116 y=250 width=36 height=28 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="r"
-char id=122 x=154 y=250 width=32 height=28 xoffset=3 yoffset=11 xadvance=36 page=0 chnl=0 letter="z"
-char id=58 x=188 y=250 width=12 height=28 xoffset=11 yoffset=11 xadvance=24 page=0 chnl=0 letter=":"
-char id=43 x=202 y=250 width=36 height=24 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="+"
-char id=42 x=240 y=250 width=36 height=24 xoffset=3 yoffset=11 xadvance=40 page=0 chnl=0 letter="*"
-char id=44 x=278 y=250 width=16 height=24 xoffset=7 yoffset=27 xadvance=24 page=0 chnl=0 letter=","
-char id=61 x=296 y=250 width=36 height=16 xoffset=3 yoffset=15 xadvance=40 page=0 chnl=0 letter="="
-char id=34 x=334 y=250 width=28 height=16 xoffset=7 yoffset=3 xadvance=36 page=0 chnl=0 letter="""
-char id=46 x=364 y=250 width=12 height=12 xoffset=11 yoffset=27 xadvance=24 page=0 chnl=0 letter="."
-char id=45 x=378 y=250 width=36 height=8 xoffset=3 yoffset=19 xadvance=40 page=0 chnl=0 letter="-"
-char id=32 x=416 y=250 width=0 height=0 xoffset=-104 yoffset=156 xadvance=16 page=0 chnl=0 letter="space"
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.xnb
deleted file mode 100644
index 5b3bbc12..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/fonts/west_england-64.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/Icon.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/Icon.xnb
deleted file mode 100644
index b5b1c9a7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/Icon.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrows.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrows.xnb
deleted file mode 100644
index f895d501..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrows.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrowsBar.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrowsBar.xnb
deleted file mode 100644
index 320f28d8..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/arrowsBar.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b1.xnb
deleted file mode 100644
index e32cc520..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b2.xnb
deleted file mode 100644
index 74e9f2e3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/b2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background1.xnb
deleted file mode 100644
index c4642a24..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background2.xnb
deleted file mode 100644
index 116aeb6e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background3.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background3.xnb
deleted file mode 100644
index 45db1d5c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/background3.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ball.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ball.xnb
deleted file mode 100644
index 42a33d4f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ball.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks.xnb
deleted file mode 100644
index 40c7a32a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9.xnb
deleted file mode 100644
index 9375cc7a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9ss.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9ss.xnb
deleted file mode 100644
index 880b92af..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/blocks9ss.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/circle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/circle.xnb
deleted file mode 100644
index 66008d97..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/circle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/picture.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/picture.xnb
deleted file mode 100644
index 347efb11..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/picture.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/test_issue_1179.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/test_issue_1179.xnb
deleted file mode 100644
index b2e3d7e4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/bugs/test_issue_1179.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/close.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/close.xnb
deleted file mode 100644
index 805ad508..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/close.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f1.xnb
deleted file mode 100644
index fe494ba2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f2.xnb
deleted file mode 100644
index 4068e978..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/f2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/fps_images.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/fps_images.xnb
deleted file mode 100644
index 6b593d9c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/fps_images.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini.xnb
deleted file mode 100644
index b795a80a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_01.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_01.xnb
deleted file mode 100644
index 0fbb4cff..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_01.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_02.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_02.xnb
deleted file mode 100644
index 9c86e0a7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_02.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_03.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_03.xnb
deleted file mode 100644
index b196f842..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_03.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_atlas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_atlas.xnb
deleted file mode 100644
index eae8a400..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossini_dance_atlas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister1.xnb
deleted file mode 100644
index 918bd836..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister2.xnb
deleted file mode 100644
index 2d90499a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/grossinis_sister2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_effect.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_effect.xnb
deleted file mode 100644
index 7280da99..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_effect.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_stencil.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_stencil.xnb
deleted file mode 100644
index 75cb2e6f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/hole_stencil.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/paddle.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/paddle.xnb
deleted file mode 100644
index b5e2ca3c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/paddle.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/particles.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/particles.xnb
deleted file mode 100644
index 102743c3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/particles.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r1.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r1.xnb
deleted file mode 100644
index a1541cca..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r1.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r2.xnb
deleted file mode 100644
index 8c6bf3c4..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/r2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ui.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ui.xnb
deleted file mode 100644
index 5c561bca..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/Images/ui.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tiles.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tiles.xnb
deleted file mode 100644
index 0442b0fb..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tiles.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tmw_desert_spacing.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tmw_desert_spacing.xnb
deleted file mode 100644
index 1d7b38e3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/TileMaps/tmw_desert_spacing.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/animations/dragon_animation.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/animations/dragon_animation.xnb
deleted file mode 100644
index 8cb19af1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/animations/dragon_animation.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/ccb/burst.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/ccb/burst.xnb
deleted file mode 100644
index 28152b01..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/ccb/burst.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/CCControlColourPickerSpriteSheet.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/CCControlColourPickerSpriteSheet.xnb
deleted file mode 100644
index 47fd8f47..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/CCControlColourPickerSpriteSheet.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/background.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/background.xnb
deleted file mode 100644
index b1734fae..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/background.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/button.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/button.xnb
deleted file mode 100644
index 095d0844..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/button.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/buttonHighlighted.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/buttonHighlighted.xnb
deleted file mode 100644
index 9c9191c1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/buttonHighlighted.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerButton.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerButton.xnb
deleted file mode 100644
index 07c4ab63..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerButton.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerProgress.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerProgress.xnb
deleted file mode 100644
index a9e49a13..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerProgress.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerTrack.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerTrack.xnb
deleted file mode 100644
index 82f09d34..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/potentiometerTrack.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/ribbon.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/ribbon.xnb
deleted file mode 100644
index 289d7827..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/ribbon.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress.xnb
deleted file mode 100644
index d9ff1dfc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress2.xnb
deleted file mode 100644
index 0557c2ec..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderProgress2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderThumb.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderThumb.xnb
deleted file mode 100644
index a85d98bc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderThumb.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack.xnb
deleted file mode 100644
index 7e6cec8a..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack2.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack2.xnb
deleted file mode 100644
index 7b298a55..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/sliderTrack2.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-minus.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-minus.xnb
deleted file mode 100644
index d6507db7..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-minus.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-plus.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-plus.xnb
deleted file mode 100644
index 509480cc..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/extensions/stepper-plus.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.fnt
deleted file mode 100644
index 9a1d4e9e..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.fnt
+++ /dev/null
@@ -1,75 +0,0 @@
-info face="TestFont-Bold" size=32 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=60 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="font-issue1343.png"
-chars count=70
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=64 xadvance=36 page=0 chnl=0
-char id=36 x=0 y=0 width=48 height=74 xoffset=-2 yoffset=6 xadvance=48 page=0 chnl=0
-char id=106 x=48 y=0 width=34 height=74 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0
-char id=37 x=82 y=0 width=64 height=68 xoffset=-2 yoffset=8 xadvance=64 page=0 chnl=0
-char id=81 x=146 y=0 width=60 height=66 xoffset=-2 yoffset=12 xadvance=60 page=0 chnl=0
-char id=64 x=206 y=0 width=62 height=64 xoffset=-2 yoffset=12 xadvance=64 page=0 chnl=0
-char id=113 x=268 y=0 width=42 height=64 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=112 x=310 y=0 width=44 height=64 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=103 x=354 y=0 width=46 height=64 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=102 x=400 y=0 width=44 height=64 xoffset=-2 yoffset=10 xadvance=38 page=0 chnl=0
-char id=63 x=444 y=0 width=42 height=62 xoffset=-4 yoffset=14 xadvance=40 page=0 chnl=0
-char id=121 x=0 y=74 width=48 height=62 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=116 x=48 y=74 width=38 height=62 xoffset=0 yoffset=12 xadvance=40 page=0 chnl=0
-char id=108 x=86 y=74 width=24 height=62 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0
-char id=107 x=110 y=74 width=44 height=62 xoffset=-2 yoffset=12 xadvance=44 page=0 chnl=0
-char id=105 x=154 y=74 width=24 height=62 xoffset=-2 yoffset=12 xadvance=26 page=0 chnl=0
-char id=100 x=178 y=74 width=46 height=62 xoffset=-2 yoffset=12 xadvance=48 page=0 chnl=0
-char id=82 x=224 y=74 width=52 height=62 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0
-char id=80 x=276 y=74 width=50 height=62 xoffset=-4 yoffset=12 xadvance=48 page=0 chnl=0
-char id=33 x=326 y=74 width=24 height=60 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0
-char id=48 x=350 y=74 width=50 height=60 xoffset=-4 yoffset=14 xadvance=48 page=0 chnl=0
-char id=57 x=400 y=74 width=46 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=56 x=446 y=74 width=46 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=54 x=0 y=136 width=46 height=60 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0
-char id=53 x=46 y=136 width=46 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=51 x=92 y=136 width=44 height=60 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=104 x=136 y=136 width=44 height=60 xoffset=-2 yoffset=14 xadvance=46 page=0 chnl=0
-char id=98 x=180 y=136 width=46 height=60 xoffset=-2 yoffset=12 xadvance=46 page=0 chnl=0
-char id=89 x=226 y=136 width=54 height=60 xoffset=-6 yoffset=14 xadvance=48 page=0 chnl=0
-char id=88 x=280 y=136 width=54 height=60 xoffset=-2 yoffset=14 xadvance=52 page=0 chnl=0
-char id=87 x=334 y=136 width=76 height=60 xoffset=-4 yoffset=14 xadvance=74 page=0 chnl=0
-char id=86 x=410 y=136 width=54 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=85 x=0 y=196 width=50 height=60 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0
-char id=79 x=50 y=196 width=56 height=60 xoffset=-2 yoffset=14 xadvance=56 page=0 chnl=0
-char id=78 x=106 y=196 width=52 height=60 xoffset=-2 yoffset=14 xadvance=52 page=0 chnl=0
-char id=77 x=158 y=196 width=66 height=60 xoffset=-4 yoffset=14 xadvance=64 page=0 chnl=0
-char id=75 x=224 y=196 width=48 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=72 x=272 y=196 width=52 height=60 xoffset=-2 yoffset=14 xadvance=50 page=0 chnl=0
-char id=71 x=324 y=196 width=56 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=67 x=380 y=196 width=48 height=60 xoffset=-2 yoffset=14 xadvance=48 page=0 chnl=0
-char id=65 x=428 y=196 width=54 height=60 xoffset=-4 yoffset=14 xadvance=52 page=0 chnl=0
-char id=55 x=0 y=256 width=50 height=58 xoffset=-4 yoffset=16 xadvance=48 page=0 chnl=0
-char id=52 x=50 y=256 width=48 height=58 xoffset=-2 yoffset=16 xadvance=48 page=0 chnl=0
-char id=50 x=98 y=256 width=44 height=58 xoffset=0 yoffset=14 xadvance=48 page=0 chnl=0
-char id=49 x=142 y=256 width=34 height=58 xoffset=-2 yoffset=14 xadvance=36 page=0 chnl=0
-char id=84 x=176 y=256 width=50 height=58 xoffset=-4 yoffset=16 xadvance=46 page=0 chnl=0
-char id=83 x=226 y=256 width=48 height=58 xoffset=-2 yoffset=16 xadvance=48 page=0 chnl=0
-char id=74 x=274 y=256 width=54 height=58 xoffset=-6 yoffset=16 xadvance=46 page=0 chnl=0
-char id=73 x=328 y=256 width=38 height=58 xoffset=-2 yoffset=14 xadvance=38 page=0 chnl=0
-char id=70 x=366 y=256 width=44 height=58 xoffset=-4 yoffset=16 xadvance=42 page=0 chnl=0
-char id=69 x=410 y=256 width=46 height=58 xoffset=-2 yoffset=14 xadvance=46 page=0 chnl=0
-char id=68 x=0 y=314 width=58 height=58 xoffset=-6 yoffset=16 xadvance=52 page=0 chnl=0
-char id=66 x=58 y=314 width=48 height=58 xoffset=-4 yoffset=14 xadvance=46 page=0 chnl=0
-char id=76 x=106 y=314 width=44 height=56 xoffset=-2 yoffset=16 xadvance=44 page=0 chnl=0
-char id=90 x=150 y=314 width=54 height=54 xoffset=-2 yoffset=18 xadvance=52 page=0 chnl=0
-char id=115 x=204 y=314 width=40 height=50 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0
-char id=111 x=244 y=314 width=46 height=50 xoffset=-4 yoffset=26 xadvance=42 page=0 chnl=0
-char id=122 x=290 y=314 width=48 height=48 xoffset=-4 yoffset=26 xadvance=44 page=0 chnl=0
-char id=120 x=338 y=314 width=46 height=48 xoffset=-2 yoffset=26 xadvance=46 page=0 chnl=0
-char id=119 x=384 y=314 width=60 height=48 xoffset=-4 yoffset=26 xadvance=56 page=0 chnl=0
-char id=118 x=444 y=314 width=42 height=48 xoffset=-4 yoffset=26 xadvance=40 page=0 chnl=0
-char id=114 x=0 y=372 width=44 height=48 xoffset=-2 yoffset=26 xadvance=38 page=0 chnl=0
-char id=110 x=44 y=372 width=42 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=109 x=86 y=372 width=58 height=48 xoffset=-2 yoffset=26 xadvance=58 page=0 chnl=0
-char id=101 x=144 y=372 width=46 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=99 x=190 y=372 width=42 height=48 xoffset=-2 yoffset=26 xadvance=42 page=0 chnl=0
-char id=97 x=232 y=372 width=46 height=48 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=117 x=278 y=372 width=46 height=46 xoffset=-2 yoffset=26 xadvance=44 page=0 chnl=0
-char id=44 x=324 y=372 width=28 height=32 xoffset=-2 yoffset=50 xadvance=28 page=0 chnl=0
-char id=39 x=352 y=372 width=22 height=30 xoffset=-2 yoffset=10 xadvance=24 page=0 chnl=0
-char id=46 x=374 y=372 width=26 height=22 xoffset=0 yoffset=100 xadvance=30 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.xnb
deleted file mode 100644
index 6719f44e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/font-issue1343.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.fnt
deleted file mode 100644
index 350976e7..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.fnt
+++ /dev/null
@@ -1,96 +0,0 @@
-info face="KonQaBlack" size=64 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
-common lineHeight=79 base=26 scaleW=512 scaleH=512 pages=1 packed=0
-page id=0 file="konqa32.png"
-chars count=91
-char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=63 xadvance=32 page=0 chnl=0
-char id=36 x=0 y=0 width=34 height=72 xoffset=2 yoffset=0 xadvance=36 page=0 chnl=0
-char id=81 x=34 y=0 width=38 height=59 xoffset=2 yoffset=11 xadvance=39 page=0 chnl=0
-char id=64 x=72 y=0 width=36 height=55 xoffset=3 yoffset=10 xadvance=39 page=0 chnl=0
-char id=124 x=108 y=0 width=14 height=55 xoffset=4 yoffset=11 xadvance=20 page=0 chnl=0
-char id=63 x=122 y=0 width=35 height=54 xoffset=2 yoffset=10 xadvance=36 page=0 chnl=0
-char id=56 x=157 y=0 width=36 height=54 xoffset=1 yoffset=10 xadvance=36 page=0 chnl=0
-char id=90 x=193 y=0 width=38 height=54 xoffset=2 yoffset=10 xadvance=38 page=0 chnl=0
-char id=89 x=231 y=0 width=35 height=54 xoffset=2 yoffset=10 xadvance=36 page=0 chnl=0
-char id=87 x=266 y=0 width=54 height=54 xoffset=2 yoffset=10 xadvance=55 page=0 chnl=0
-char id=86 x=320 y=0 width=35 height=54 xoffset=2 yoffset=10 xadvance=37 page=0 chnl=0
-char id=85 x=355 y=0 width=38 height=54 xoffset=2 yoffset=10 xadvance=38 page=0 chnl=0
-char id=84 x=393 y=0 width=35 height=54 xoffset=2 yoffset=10 xadvance=37 page=0 chnl=0
-char id=82 x=428 y=0 width=37 height=54 xoffset=2 yoffset=10 xadvance=39 page=0 chnl=0
-char id=79 x=465 y=0 width=38 height=54 xoffset=2 yoffset=10 xadvance=38 page=0 chnl=0
-char id=92 x=0 y=72 width=33 height=53 xoffset=4 yoffset=11 xadvance=39 page=0 chnl=0
-char id=47 x=33 y=72 width=34 height=53 xoffset=4 yoffset=11 xadvance=39 page=0 chnl=0
-char id=33 x=67 y=72 width=17 height=53 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0
-char id=48 x=84 y=72 width=40 height=53 xoffset=2 yoffset=11 xadvance=40 page=0 chnl=0
-char id=57 x=124 y=72 width=35 height=53 xoffset=2 yoffset=11 xadvance=35 page=0 chnl=0
-char id=55 x=159 y=72 width=35 height=53 xoffset=2 yoffset=11 xadvance=35 page=0 chnl=0
-char id=54 x=194 y=72 width=36 height=53 xoffset=1 yoffset=11 xadvance=37 page=0 chnl=0
-char id=53 x=230 y=72 width=35 height=53 xoffset=2 yoffset=11 xadvance=36 page=0 chnl=0
-char id=52 x=265 y=72 width=36 height=53 xoffset=2 yoffset=11 xadvance=36 page=0 chnl=0
-char id=51 x=301 y=72 width=34 height=53 xoffset=2 yoffset=11 xadvance=35 page=0 chnl=0
-char id=50 x=335 y=72 width=36 height=53 xoffset=2 yoffset=11 xadvance=37 page=0 chnl=0
-char id=49 x=371 y=72 width=23 height=53 xoffset=2 yoffset=11 xadvance=24 page=0 chnl=0
-char id=88 x=394 y=72 width=38 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=83 x=432 y=72 width=37 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=80 x=469 y=72 width=36 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=78 x=0 y=125 width=39 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=77 x=39 y=125 width=53 height=53 xoffset=2 yoffset=11 xadvance=53 page=0 chnl=0
-char id=76 x=92 y=125 width=35 height=53 xoffset=1 yoffset=11 xadvance=36 page=0 chnl=0
-char id=75 x=127 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=37 page=0 chnl=0
-char id=74 x=163 y=125 width=30 height=53 xoffset=2 yoffset=11 xadvance=30 page=0 chnl=0
-char id=73 x=193 y=125 width=20 height=53 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0
-char id=72 x=213 y=125 width=38 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=71 x=251 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=70 x=287 y=125 width=37 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=69 x=324 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=68 x=360 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=36 page=0 chnl=0
-char id=67 x=396 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=66 x=432 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=38 page=0 chnl=0
-char id=65 x=468 y=125 width=36 height=53 xoffset=2 yoffset=11 xadvance=39 page=0 chnl=0
-char id=38 x=0 y=178 width=46 height=51 xoffset=2 yoffset=15 xadvance=47 page=0 chnl=0
-char id=37 x=46 y=178 width=52 height=51 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0
-char id=106 x=98 y=178 width=19 height=42 xoffset=2 yoffset=22 xadvance=19 page=0 chnl=0
-char id=125 x=117 y=178 width=19 height=41 xoffset=4 yoffset=23 xadvance=20 page=0 chnl=0
-char id=123 x=136 y=178 width=19 height=41 xoffset=0 yoffset=23 xadvance=20 page=0 chnl=0
-char id=93 x=155 y=178 width=19 height=41 xoffset=4 yoffset=23 xadvance=20 page=0 chnl=0
-char id=91 x=174 y=178 width=19 height=41 xoffset=0 yoffset=23 xadvance=20 page=0 chnl=0
-char id=41 x=193 y=178 width=20 height=41 xoffset=3 yoffset=23 xadvance=20 page=0 chnl=0
-char id=40 x=213 y=178 width=21 height=41 xoffset=-1 yoffset=23 xadvance=20 page=0 chnl=0
-char id=122 x=234 y=178 width=29 height=41 xoffset=2 yoffset=23 xadvance=30 page=0 chnl=0
-char id=121 x=263 y=178 width=28 height=41 xoffset=2 yoffset=23 xadvance=30 page=0 chnl=0
-char id=120 x=291 y=178 width=26 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=119 x=317 y=178 width=40 height=41 xoffset=2 yoffset=23 xadvance=41 page=0 chnl=0
-char id=118 x=357 y=178 width=26 height=41 xoffset=2 yoffset=23 xadvance=27 page=0 chnl=0
-char id=117 x=383 y=178 width=27 height=41 xoffset=2 yoffset=23 xadvance=29 page=0 chnl=0
-char id=116 x=410 y=178 width=26 height=41 xoffset=2 yoffset=23 xadvance=27 page=0 chnl=0
-char id=115 x=436 y=178 width=29 height=41 xoffset=2 yoffset=23 xadvance=31 page=0 chnl=0
-char id=114 x=465 y=178 width=26 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=113 x=0 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=112 x=27 y=229 width=29 height=41 xoffset=1 yoffset=23 xadvance=29 page=0 chnl=0
-char id=111 x=56 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=110 x=83 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=29 page=0 chnl=0
-char id=109 x=110 y=229 width=41 height=41 xoffset=2 yoffset=23 xadvance=42 page=0 chnl=0
-char id=108 x=151 y=229 width=19 height=41 xoffset=2 yoffset=23 xadvance=20 page=0 chnl=0
-char id=107 x=170 y=229 width=28 height=41 xoffset=2 yoffset=23 xadvance=30 page=0 chnl=0
-char id=105 x=198 y=229 width=14 height=41 xoffset=2 yoffset=23 xadvance=15 page=0 chnl=0
-char id=104 x=212 y=229 width=26 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=103 x=238 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=102 x=265 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=101 x=292 y=229 width=26 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=100 x=318 y=229 width=26 height=41 xoffset=2 yoffset=23 xadvance=27 page=0 chnl=0
-char id=99 x=344 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=29 page=0 chnl=0
-char id=98 x=371 y=229 width=27 height=41 xoffset=2 yoffset=23 xadvance=28 page=0 chnl=0
-char id=97 x=398 y=229 width=29 height=41 xoffset=1 yoffset=23 xadvance=30 page=0 chnl=0
-char id=94 x=427 y=229 width=40 height=39 xoffset=2 yoffset=13 xadvance=42 page=0 chnl=0
-char id=43 x=467 y=229 width=30 height=33 xoffset=2 yoffset=31 xadvance=32 page=0 chnl=0
-char id=61 x=0 y=270 width=31 height=27 xoffset=3 yoffset=31 xadvance=34 page=0 chnl=0
-char id=59 x=31 y=270 width=16 height=27 xoffset=1 yoffset=53 xadvance=16 page=0 chnl=0
-char id=58 x=47 y=270 width=14 height=25 xoffset=2 yoffset=39 xadvance=16 page=0 chnl=0
-char id=42 x=61 y=270 width=21 height=21 xoffset=10 yoffset=12 xadvance=39 page=0 chnl=0
-char id=34 x=82 y=270 width=26 height=21 xoffset=3 yoffset=13 xadvance=28 page=0 chnl=0
-char id=126 x=108 y=270 width=40 height=14 xoffset=6 yoffset=38 xadvance=50 page=0 chnl=0
-char id=44 x=148 y=270 width=15 height=14 xoffset=2 yoffset=58 xadvance=17 page=0 chnl=0
-char id=39 x=163 y=270 width=15 height=14 xoffset=2 yoffset=10 xadvance=17 page=0 chnl=0
-char id=96 x=178 y=270 width=16 height=14 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0
-char id=45 x=194 y=270 width=30 height=11 xoffset=3 yoffset=34 xadvance=34 page=0 chnl=0
-char id=46 x=224 y=270 width=13 height=11 xoffset=0 yoffset=53 xadvance=15 page=0 chnl=0
-char id=95 x=237 y=270 width=30 height=10 xoffset=2 yoffset=55 xadvance=34 page=0 chnl=0
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.xnb
deleted file mode 100644
index a526c22c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/konqa32.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/labelatlas.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/labelatlas.xnb
deleted file mode 100644
index 9e323bab..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/labelatlas.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/larabie-16.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/larabie-16.xnb
deleted file mode 100644
index 71127108..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/larabie-16.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.fnt b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.fnt
deleted file mode 100644
index ee5dba70..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.fnt
+++ /dev/null
@@ -1,3770 +0,0 @@
-info face="MarkerFelt-Thin" size=50 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=2,2
-common lineHeight=54 base=43 scaleW=512 scaleH=256 pages=1 packed=0
-page id=0 file="markerFelt.png"
-chars count=95
-char id=106 x=2 y=2 width=13 height=50 xoffset=-3 yoffset=4 xadvance=10 page=0 chnl=0 letter="j"
-char id=87 x=17 y=2 width=48 height=48 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter="W"
-char id=81 x=67 y=2 width=30 height=48 xoffset=2 yoffset=1 xadvance=29 page=0 chnl=0 letter="Q"
-char id=77 x=99 y=2 width=45 height=47 xoffset=2 yoffset=0 xadvance=46 page=0 chnl=0 letter="M"
-char id=84 x=146 y=2 width=25 height=47 xoffset=0 yoffset=0 xadvance=24 page=0 chnl=0 letter="T"
-char id=104 x=173 y=2 width=22 height=47 xoffset=2 yoffset=0 xadvance=24 page=0 chnl=0 letter="h"
-char id=102 x=197 y=2 width=21 height=47 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=0 letter="f"
-char id=91 x=220 y=2 width=19 height=47 xoffset=1 yoffset=-1 xadvance=20 page=0 chnl=0 letter="["
-char id=93 x=241 y=2 width=19 height=47 xoffset=1 yoffset=-1 xadvance=20 page=0 chnl=0 letter="]"
-char id=90 x=262 y=2 width=32 height=46 xoffset=0 yoffset=0 xadvance=30 page=0 chnl=0 letter="Z"
-char id=88 x=296 y=2 width=31 height=46 xoffset=0 yoffset=1 xadvance=30 page=0 chnl=0 letter="X"
-char id=89 x=329 y=2 width=31 height=46 xoffset=1 yoffset=0 xadvance=30 page=0 chnl=0 letter="Y"
-char id=65 x=362 y=2 width=30 height=46 xoffset=1 yoffset=0 xadvance=31 page=0 chnl=0 letter="A"
-char id=75 x=394 y=2 width=29 height=46 xoffset=1 yoffset=0 xadvance=28 page=0 chnl=0 letter="K"
-char id=78 x=425 y=2 width=28 height=46 xoffset=2 yoffset=0 xadvance=30 page=0 chnl=0 letter="N"
-char id=53 x=455 y=2 width=27 height=46 xoffset=1 yoffset=2 xadvance=28 page=0 chnl=0 letter="5"
-char id=86 x=2 y=54 width=27 height=46 xoffset=0 yoffset=1 xadvance=27 page=0 chnl=0 letter="V"
-char id=85 x=31 y=54 width=26 height=46 xoffset=1 yoffset=1 xadvance=27 page=0 chnl=0 letter="U"
-char id=83 x=59 y=54 width=25 height=46 xoffset=0 yoffset=0 xadvance=24 page=0 chnl=0 letter="S"
-char id=72 x=86 y=54 width=24 height=46 xoffset=1 yoffset=1 xadvance=25 page=0 chnl=0 letter="H"
-char id=48 x=112 y=54 width=24 height=46 xoffset=3 yoffset=1 xadvance=28 page=0 chnl=0 letter="0"
-char id=68 x=138 y=54 width=23 height=46 xoffset=2 yoffset=1 xadvance=24 page=0 chnl=0 letter="D"
-char id=76 x=163 y=54 width=22 height=46 xoffset=1 yoffset=0 xadvance=21 page=0 chnl=0 letter="L"
-char id=74 x=187 y=54 width=22 height=46 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 letter="J"
-char id=63 x=211 y=54 width=21 height=46 xoffset=0 yoffset=1 xadvance=20 page=0 chnl=0 letter="?"
-char id=56 x=234 y=54 width=21 height=46 xoffset=4 yoffset=0 xadvance=28 page=0 chnl=0 letter="8"
-char id=69 x=257 y=54 width=20 height=46 xoffset=2 yoffset=1 xadvance=22 page=0 chnl=0 letter="E"
-char id=108 x=279 y=54 width=8 height=46 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 letter="l"
-char id=124 x=289 y=54 width=8 height=46 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 letter="|"
-char id=82 x=299 y=54 width=30 height=45 xoffset=1 yoffset=1 xadvance=28 page=0 chnl=0 letter="R"
-char id=52 x=331 y=54 width=29 height=45 xoffset=0 yoffset=2 xadvance=28 page=0 chnl=0 letter="4"
-char id=50 x=362 y=54 width=28 height=45 xoffset=1 yoffset=1 xadvance=28 page=0 chnl=0 letter="2"
-char id=92 x=392 y=54 width=27 height=45 xoffset=0 yoffset=1 xadvance=26 page=0 chnl=0 letter="\"
-char id=47 x=421 y=54 width=26 height=45 xoffset=0 yoffset=1 xadvance=26 page=0 chnl=0 letter="/"
-char id=71 x=449 y=54 width=26 height=45 xoffset=1 yoffset=1 xadvance=24 page=0 chnl=0 letter="G"
-char id=55 x=477 y=54 width=25 height=45 xoffset=2 yoffset=2 xadvance=28 page=0 chnl=0 letter="7"
-char id=51 x=2 y=102 width=25 height=45 xoffset=3 yoffset=1 xadvance=28 page=0 chnl=0 letter="3"
-char id=107 x=29 y=102 width=25 height=45 xoffset=2 yoffset=1 xadvance=24 page=0 chnl=0 letter="k"
-char id=66 x=56 y=102 width=24 height=45 xoffset=1 yoffset=2 xadvance=24 page=0 chnl=0 letter="B"
-char id=36 x=82 y=102 width=24 height=45 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=0 letter="$"
-char id=80 x=108 y=102 width=23 height=45 xoffset=2 yoffset=1 xadvance=22 page=0 chnl=0 letter="P"
-char id=123 x=133 y=102 width=20 height=45 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 letter="{"
-char id=125 x=155 y=102 width=20 height=45 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 letter="}"
-char id=70 x=177 y=102 width=20 height=45 xoffset=2 yoffset=1 xadvance=21 page=0 chnl=0 letter="F"
-char id=49 x=199 y=102 width=15 height=45 xoffset=6 yoffset=1 xadvance=28 page=0 chnl=0 letter="1"
-char id=40 x=216 y=102 width=12 height=45 xoffset=2 yoffset=1 xadvance=13 page=0 chnl=0 letter="("
-char id=41 x=230 y=102 width=11 height=45 xoffset=1 yoffset=1 xadvance=13 page=0 chnl=0 letter=")"
-char id=73 x=243 y=102 width=11 height=45 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=0 letter="I"
-char id=33 x=256 y=102 width=9 height=45 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 letter="!"
-char id=64 x=267 y=102 width=44 height=44 xoffset=1 yoffset=1 xadvance=45 page=0 chnl=0 letter="@"
-char id=37 x=313 y=102 width=34 height=44 xoffset=1 yoffset=2 xadvance=35 page=0 chnl=0 letter="%"
-char id=38 x=349 y=102 width=30 height=44 xoffset=1 yoffset=2 xadvance=28 page=0 chnl=0 letter="&"
-char id=79 x=381 y=102 width=26 height=44 xoffset=2 yoffset=2 xadvance=27 page=0 chnl=0 letter="O"
-char id=54 x=409 y=102 width=23 height=44 xoffset=3 yoffset=2 xadvance=28 page=0 chnl=0 letter="6"
-char id=57 x=434 y=102 width=23 height=44 xoffset=3 yoffset=2 xadvance=28 page=0 chnl=0 letter="9"
-char id=67 x=459 y=102 width=23 height=44 xoffset=1 yoffset=2 xadvance=22 page=0 chnl=0 letter="C"
-char id=105 x=484 y=102 width=9 height=44 xoffset=2 yoffset=3 xadvance=10 page=0 chnl=0 letter="i"
-char id=100 x=2 y=149 width=20 height=43 xoffset=1 yoffset=3 xadvance=22 page=0 chnl=0 letter="d"
-char id=113 x=24 y=149 width=20 height=43 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 letter="q"
-char id=112 x=46 y=149 width=20 height=43 xoffset=2 yoffset=13 xadvance=22 page=0 chnl=0 letter="p"
-char id=98 x=68 y=149 width=20 height=43 xoffset=2 yoffset=3 xadvance=22 page=0 chnl=0 letter="b"
-char id=116 x=90 y=149 width=22 height=41 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=0 letter="t"
-char id=103 x=114 y=149 width=19 height=41 xoffset=1 yoffset=13 xadvance=21 page=0 chnl=0 letter="g"
-char id=121 x=135 y=149 width=24 height=40 xoffset=-0 yoffset=14 xadvance=24 page=0 chnl=0 letter="y"
-char id=59 x=161 y=149 width=12 height=37 xoffset=-3 yoffset=14 xadvance=10 page=0 chnl=0 letter=";"
-char id=119 x=175 y=149 width=39 height=34 xoffset=-1 yoffset=13 xadvance=36 page=0 chnl=0 letter="w"
-char id=118 x=216 y=149 width=26 height=34 xoffset=-1 yoffset=13 xadvance=22 page=0 chnl=0 letter="v"
-char id=122 x=244 y=149 width=24 height=34 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 letter="z"
-char id=110 x=270 y=149 width=23 height=34 xoffset=2 yoffset=13 xadvance=24 page=0 chnl=0 letter="n"
-char id=120 x=295 y=149 width=22 height=34 xoffset=-0 yoffset=13 xadvance=20 page=0 chnl=0 letter="x"
-char id=114 x=319 y=149 width=21 height=34 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 letter="r"
-char id=117 x=342 y=149 width=20 height=34 xoffset=1 yoffset=13 xadvance=20 page=0 chnl=0 letter="u"
-char id=109 x=364 y=149 width=35 height=33 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 letter="m"
-char id=97 x=401 y=149 width=23 height=33 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="a"
-char id=111 x=426 y=149 width=20 height=33 xoffset=1 yoffset=13 xadvance=20 page=0 chnl=0 letter="o"
-char id=101 x=448 y=149 width=20 height=33 xoffset=1 yoffset=13 xadvance=19 page=0 chnl=0 letter="e"
-char id=99 x=470 y=149 width=18 height=33 xoffset=1 yoffset=13 xadvance=19 page=0 chnl=0 letter="c"
-char id=115 x=490 y=149 width=19 height=32 xoffset=0 yoffset=15 xadvance=18 page=0 chnl=0 letter="s"
-char id=62 x=2 y=194 width=18 height=31 xoffset=2 yoffset=15 xadvance=19 page=0 chnl=0 letter=">"
-char id=60 x=22 y=194 width=17 height=31 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 letter="<"
-char id=58 x=41 y=194 width=10 height=30 xoffset=1 yoffset=16 xadvance=12 page=0 chnl=0 letter=":"
-char id=35 x=53 y=194 width=27 height=29 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 letter="#"
-char id=43 x=82 y=194 width=21 height=24 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0 letter="+"
-char id=42 x=105 y=194 width=23 height=22 xoffset=1 yoffset=6 xadvance=23 page=0 chnl=0 letter="*"
-char id=61 x=130 y=194 width=18 height=20 xoffset=2 yoffset=13 xadvance=20 page=0 chnl=0 letter="="
-char id=34 x=150 y=194 width=14 height=18 xoffset=1 yoffset=1 xadvance=16 page=0 chnl=0 letter="""
-char id=39 x=166 y=194 width=7 height=17 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 letter="'"
-char id=94 x=175 y=194 width=16 height=14 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter="^"
-char id=96 x=193 y=194 width=11 height=14 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="`"
-char id=44 x=206 y=194 width=10 height=13 xoffset=-1 yoffset=39 xadvance=10 page=0 chnl=0 letter=","
-char id=95 x=218 y=194 width=24 height=12 xoffset=1 yoffset=43 xadvance=24 page=0 chnl=0 letter="_"
-char id=45 x=244 y=194 width=17 height=12 xoffset=1 yoffset=21 xadvance=18 page=0 chnl=0 letter="-"
-char id=46 x=263 y=194 width=8 height=12 xoffset=1 yoffset=34 xadvance=10 page=0 chnl=0 letter="."
-char id=126 x=273 y=194 width=17 height=11 xoffset=0 yoffset=0 xadvance=16 page=0 chnl=0 letter="~"
-char id=32 x=292 y=194 width=0 height=0 xoffset=12 yoffset=63 xadvance=12 page=0 chnl=0 letter="space"
-kernings count=3670
-kerning first=106 second=106 amount=3
-kerning first=106 second=102 amount=2
-kerning first=106 second=63 amount=1
-kerning first=106 second=56 amount=-1
-kerning first=106 second=108 amount=1
-kerning first=106 second=107 amount=1
-kerning first=106 second=49 amount=-4
-kerning first=106 second=40 amount=1
-kerning first=106 second=33 amount=1
-kerning first=106 second=105 amount=1
-kerning first=106 second=100 amount=1
-kerning first=106 second=112 amount=1
-kerning first=106 second=98 amount=1
-kerning first=106 second=116 amount=3
-kerning first=106 second=103 amount=1
-kerning first=106 second=121 amount=2
-kerning first=106 second=59 amount=3
-kerning first=106 second=119 amount=3
-kerning first=106 second=118 amount=3
-kerning first=106 second=122 amount=1
-kerning first=106 second=110 amount=1
-kerning first=106 second=120 amount=2
-kerning first=106 second=114 amount=2
-kerning first=106 second=117 amount=1
-kerning first=106 second=97 amount=2
-kerning first=106 second=111 amount=2
-kerning first=106 second=101 amount=1
-kerning first=106 second=99 amount=1
-kerning first=106 second=115 amount=2
-kerning first=106 second=34 amount=1
-kerning first=106 second=39 amount=2
-kerning first=106 second=44 amount=3
-kerning first=106 second=46 amount=1
-kerning first=87 second=87 amount=1
-kerning first=87 second=81 amount=-3
-kerning first=87 second=102 amount=-2
-kerning first=87 second=93 amount=1
-kerning first=87 second=90 amount=-2
-kerning first=87 second=88 amount=2
-kerning first=87 second=89 amount=1
-kerning first=87 second=65 amount=-6
-kerning first=87 second=75 amount=2
-kerning first=87 second=53 amount=-2
-kerning first=87 second=86 amount=2
-kerning first=87 second=85 amount=1
-kerning first=87 second=83 amount=-2
-kerning first=87 second=48 amount=-4
-kerning first=87 second=76 amount=2
-kerning first=87 second=74 amount=-5
-kerning first=87 second=56 amount=-3
-kerning first=87 second=108 amount=2
-kerning first=87 second=82 amount=2
-kerning first=87 second=52 amount=-5
-kerning first=87 second=50 amount=-4
-kerning first=87 second=92 amount=1
-kerning first=87 second=47 amount=-6
-kerning first=87 second=71 amount=-2
-kerning first=87 second=55 amount=-1
-kerning first=87 second=51 amount=-3
-kerning first=87 second=107 amount=1
-kerning first=87 second=66 amount=2
-kerning first=87 second=80 amount=1
-kerning first=87 second=49 amount=-5
-kerning first=87 second=41 amount=1
-kerning first=87 second=73 amount=2
-kerning first=87 second=33 amount=1
-kerning first=87 second=64 amount=-6
-kerning first=87 second=79 amount=-2
-kerning first=87 second=54 amount=-4
-kerning first=87 second=57 amount=-4
-kerning first=87 second=67 amount=-2
-kerning first=87 second=100 amount=-4
-kerning first=87 second=113 amount=-4
-kerning first=87 second=112 amount=-2
-kerning first=87 second=116 amount=-1
-kerning first=87 second=103 amount=-4
-kerning first=87 second=59 amount=-3
-kerning first=87 second=122 amount=-4
-kerning first=87 second=110 amount=-2
-kerning first=87 second=120 amount=-2
-kerning first=87 second=114 amount=-2
-kerning first=87 second=117 amount=-2
-kerning first=87 second=109 amount=-3
-kerning first=87 second=97 amount=-3
-kerning first=87 second=111 amount=-4
-kerning first=87 second=101 amount=-5
-kerning first=87 second=99 amount=-4
-kerning first=87 second=115 amount=-4
-kerning first=87 second=58 amount=-4
-kerning first=87 second=35 amount=-2
-kerning first=87 second=34 amount=3
-kerning first=87 second=39 amount=3
-kerning first=87 second=44 amount=-8
-kerning first=87 second=45 amount=-4
-kerning first=87 second=46 amount=-6
-kerning first=81 second=106 amount=6
-kerning first=81 second=77 amount=2
-kerning first=81 second=104 amount=3
-kerning first=81 second=102 amount=1
-kerning first=81 second=93 amount=1
-kerning first=81 second=90 amount=3
-kerning first=81 second=88 amount=4
-kerning first=81 second=89 amount=-3
-kerning first=81 second=65 amount=3
-kerning first=81 second=75 amount=2
-kerning first=81 second=78 amount=2
-kerning first=81 second=86 amount=-1
-kerning first=81 second=72 amount=3
-kerning first=81 second=68 amount=2
-kerning first=81 second=76 amount=2
-kerning first=81 second=56 amount=-1
-kerning first=81 second=69 amount=2
-kerning first=81 second=108 amount=4
-kerning first=81 second=82 amount=2
-kerning first=81 second=50 amount=2
-kerning first=81 second=92 amount=-2
-kerning first=81 second=47 amount=3
-kerning first=81 second=55 amount=2
-kerning first=81 second=51 amount=-2
-kerning first=81 second=107 amount=4
-kerning first=81 second=66 amount=2
-kerning first=81 second=80 amount=3
-kerning first=81 second=70 amount=2
-kerning first=81 second=49 amount=-5
-kerning first=81 second=40 amount=1
-kerning first=81 second=41 amount=3
-kerning first=81 second=73 amount=3
-kerning first=81 second=33 amount=3
-kerning first=81 second=54 amount=-1
-kerning first=81 second=57 amount=-2
-kerning first=81 second=67 amount=1
-kerning first=81 second=105 amount=3
-kerning first=81 second=112 amount=3
-kerning first=81 second=98 amount=4
-kerning first=81 second=116 amount=3
-kerning first=81 second=103 amount=1
-kerning first=81 second=121 amount=2
-kerning first=81 second=59 amount=7
-kerning first=81 second=119 amount=3
-kerning first=81 second=118 amount=3
-kerning first=81 second=122 amount=4
-kerning first=81 second=110 amount=4
-kerning first=81 second=120 amount=4
-kerning first=81 second=114 amount=4
-kerning first=81 second=117 amount=2
-kerning first=81 second=97 amount=4
-kerning first=81 second=111 amount=1
-kerning first=81 second=99 amount=2
-kerning first=81 second=115 amount=2
-kerning first=81 second=58 amount=3
-kerning first=81 second=44 amount=7
-kerning first=81 second=46 amount=4
-kerning first=77 second=106 amount=2
-kerning first=77 second=104 amount=1
-kerning first=77 second=90 amount=2
-kerning first=77 second=88 amount=3
-kerning first=77 second=65 amount=1
-kerning first=77 second=75 amount=1
-kerning first=77 second=48 amount=-2
-kerning first=77 second=56 amount=-2
-kerning first=77 second=69 amount=1
-kerning first=77 second=108 amount=2
-kerning first=77 second=50 amount=1
-kerning first=77 second=47 amount=2
-kerning first=77 second=51 amount=-1
-kerning first=77 second=107 amount=2
-kerning first=77 second=66 amount=1
-kerning first=77 second=80 amount=2
-kerning first=77 second=70 amount=1
-kerning first=77 second=49 amount=-5
-kerning first=77 second=41 amount=2
-kerning first=77 second=73 amount=2
-kerning first=77 second=33 amount=2
-kerning first=77 second=54 amount=-2
-kerning first=77 second=57 amount=-1
-kerning first=77 second=105 amount=2
-kerning first=77 second=112 amount=1
-kerning first=77 second=98 amount=2
-kerning first=77 second=116 amount=2
-kerning first=77 second=59 amount=3
-kerning first=77 second=119 amount=2
-kerning first=77 second=118 amount=2
-kerning first=77 second=122 amount=2
-kerning first=77 second=110 amount=2
-kerning first=77 second=120 amount=3
-kerning first=77 second=114 amount=2
-kerning first=77 second=97 amount=2
-kerning first=77 second=115 amount=1
-kerning first=77 second=58 amount=2
-kerning first=77 second=44 amount=2
-kerning first=77 second=46 amount=3
-kerning first=84 second=87 amount=2
-kerning first=84 second=81 amount=-2
-kerning first=84 second=102 amount=-3
-kerning first=84 second=93 amount=1
-kerning first=84 second=90 amount=-2
-kerning first=84 second=88 amount=2
-kerning first=84 second=65 amount=-6
-kerning first=84 second=75 amount=2
-kerning first=84 second=53 amount=-2
-kerning first=84 second=86 amount=2
-kerning first=84 second=85 amount=1
-kerning first=84 second=83 amount=-1
-kerning first=84 second=48 amount=-3
-kerning first=84 second=76 amount=1
-kerning first=84 second=74 amount=-7
-kerning first=84 second=56 amount=-3
-kerning first=84 second=108 amount=2
-kerning first=84 second=82 amount=2
-kerning first=84 second=52 amount=-7
-kerning first=84 second=50 amount=-5
-kerning first=84 second=92 amount=1
-kerning first=84 second=47 amount=-6
-kerning first=84 second=51 amount=-4
-kerning first=84 second=107 amount=1
-kerning first=84 second=66 amount=2
-kerning first=84 second=80 amount=1
-kerning first=84 second=49 amount=-4
-kerning first=84 second=41 amount=1
-kerning first=84 second=73 amount=2
-kerning first=84 second=33 amount=2
-kerning first=84 second=64 amount=-8
-kerning first=84 second=54 amount=-3
-kerning first=84 second=57 amount=-3
-kerning first=84 second=100 amount=-6
-kerning first=84 second=113 amount=-7
-kerning first=84 second=112 amount=-6
-kerning first=84 second=98 amount=1
-kerning first=84 second=116 amount=-3
-kerning first=84 second=103 amount=-6
-kerning first=84 second=121 amount=-6
-kerning first=84 second=59 amount=-4
-kerning first=84 second=119 amount=-5
-kerning first=84 second=118 amount=-5
-kerning first=84 second=122 amount=-5
-kerning first=84 second=110 amount=-6
-kerning first=84 second=120 amount=-5
-kerning first=84 second=114 amount=-6
-kerning first=84 second=117 amount=-6
-kerning first=84 second=109 amount=-7
-kerning first=84 second=97 amount=-5
-kerning first=84 second=111 amount=-6
-kerning first=84 second=101 amount=-7
-kerning first=84 second=99 amount=-6
-kerning first=84 second=115 amount=-6
-kerning first=84 second=58 amount=-6
-kerning first=84 second=35 amount=-4
-kerning first=84 second=34 amount=2
-kerning first=84 second=39 amount=3
-kerning first=84 second=44 amount=-5
-kerning first=84 second=45 amount=-7
-kerning first=84 second=46 amount=-5
-kerning first=104 second=106 amount=1
-kerning first=104 second=102 amount=1
-kerning first=104 second=63 amount=-2
-kerning first=104 second=108 amount=1
-kerning first=104 second=52 amount=1
-kerning first=104 second=92 amount=-6
-kerning first=104 second=107 amount=1
-kerning first=104 second=49 amount=-7
-kerning first=104 second=40 amount=1
-kerning first=104 second=41 amount=1
-kerning first=104 second=33 amount=2
-kerning first=104 second=64 amount=1
-kerning first=104 second=105 amount=2
-kerning first=104 second=100 amount=2
-kerning first=104 second=113 amount=2
-kerning first=104 second=112 amount=2
-kerning first=104 second=98 amount=1
-kerning first=104 second=116 amount=3
-kerning first=104 second=103 amount=2
-kerning first=104 second=121 amount=2
-kerning first=104 second=59 amount=2
-kerning first=104 second=119 amount=3
-kerning first=104 second=118 amount=3
-kerning first=104 second=122 amount=2
-kerning first=104 second=110 amount=2
-kerning first=104 second=120 amount=3
-kerning first=104 second=114 amount=2
-kerning first=104 second=117 amount=3
-kerning first=104 second=109 amount=1
-kerning first=104 second=97 amount=3
-kerning first=104 second=111 amount=3
-kerning first=104 second=101 amount=2
-kerning first=104 second=99 amount=3
-kerning first=104 second=115 amount=3
-kerning first=104 second=58 amount=2
-kerning first=104 second=35 amount=2
-kerning first=104 second=34 amount=-5
-kerning first=104 second=39 amount=-5
-kerning first=104 second=45 amount=2
-kerning first=104 second=46 amount=2
-kerning first=102 second=106 amount=4
-kerning first=102 second=104 amount=3
-kerning first=102 second=102 amount=4
-kerning first=102 second=93 amount=2
-kerning first=102 second=53 amount=1
-kerning first=102 second=48 amount=2
-kerning first=102 second=63 amount=1
-kerning first=102 second=108 amount=4
-kerning first=102 second=50 amount=-2
-kerning first=102 second=92 amount=2
-kerning first=102 second=47 amount=-2
-kerning first=102 second=55 amount=-2
-kerning first=102 second=107 amount=4
-kerning first=102 second=49 amount=-5
-kerning first=102 second=40 amount=4
-kerning first=102 second=41 amount=2
-kerning first=102 second=33 amount=4
-kerning first=102 second=54 amount=1
-kerning first=102 second=57 amount=1
-kerning first=102 second=105 amount=4
-kerning first=102 second=100 amount=2
-kerning first=102 second=113 amount=2
-kerning first=102 second=112 amount=4
-kerning first=102 second=98 amount=3
-kerning first=102 second=116 amount=5
-kerning first=102 second=103 amount=2
-kerning first=102 second=121 amount=5
-kerning first=102 second=59 amount=3
-kerning first=102 second=119 amount=6
-kerning first=102 second=118 amount=6
-kerning first=102 second=122 amount=2
-kerning first=102 second=110 amount=4
-kerning first=102 second=120 amount=4
-kerning first=102 second=114 amount=4
-kerning first=102 second=117 amount=4
-kerning first=102 second=109 amount=3
-kerning first=102 second=97 amount=3
-kerning first=102 second=111 amount=3
-kerning first=102 second=101 amount=2
-kerning first=102 second=99 amount=2
-kerning first=102 second=115 amount=2
-kerning first=102 second=58 amount=2
-kerning first=102 second=35 amount=3
-kerning first=102 second=34 amount=3
-kerning first=102 second=39 amount=3
-kerning first=102 second=45 amount=-4
-kerning first=102 second=46 amount=-1
-kerning first=93 second=106 amount=2
-kerning first=93 second=104 amount=1
-kerning first=93 second=90 amount=2
-kerning first=93 second=88 amount=3
-kerning first=93 second=65 amount=1
-kerning first=93 second=75 amount=1
-kerning first=93 second=78 amount=1
-kerning first=93 second=86 amount=1
-kerning first=93 second=83 amount=1
-kerning first=93 second=48 amount=-1
-kerning first=93 second=56 amount=-1
-kerning first=93 second=69 amount=1
-kerning first=93 second=108 amount=2
-kerning first=93 second=82 amount=1
-kerning first=93 second=50 amount=1
-kerning first=93 second=47 amount=2
-kerning first=93 second=55 amount=1
-kerning first=93 second=107 amount=2
-kerning first=93 second=66 amount=1
-kerning first=93 second=80 amount=2
-kerning first=93 second=70 amount=1
-kerning first=93 second=49 amount=-5
-kerning first=93 second=41 amount=2
-kerning first=93 second=73 amount=2
-kerning first=93 second=33 amount=2
-kerning first=93 second=54 amount=-1
-kerning first=93 second=67 amount=1
-kerning first=93 second=105 amount=2
-kerning first=93 second=112 amount=2
-kerning first=93 second=98 amount=2
-kerning first=93 second=116 amount=2
-kerning first=93 second=103 amount=1
-kerning first=93 second=121 amount=1
-kerning first=93 second=59 amount=2
-kerning first=93 second=119 amount=2
-kerning first=93 second=118 amount=2
-kerning first=93 second=122 amount=2
-kerning first=93 second=110 amount=2
-kerning first=93 second=120 amount=3
-kerning first=93 second=114 amount=2
-kerning first=93 second=117 amount=1
-kerning first=93 second=97 amount=3
-kerning first=93 second=111 amount=1
-kerning first=93 second=99 amount=1
-kerning first=93 second=115 amount=2
-kerning first=93 second=58 amount=2
-kerning first=93 second=34 amount=1
-kerning first=93 second=39 amount=1
-kerning first=93 second=44 amount=1
-kerning first=93 second=46 amount=3
-kerning first=90 second=87 amount=2
-kerning first=90 second=81 amount=-2
-kerning first=90 second=104 amount=1
-kerning first=90 second=102 amount=-3
-kerning first=90 second=93 amount=2
-kerning first=90 second=88 amount=2
-kerning first=90 second=89 amount=1
-kerning first=90 second=65 amount=-1
-kerning first=90 second=75 amount=2
-kerning first=90 second=78 amount=1
-kerning first=90 second=53 amount=-1
-kerning first=90 second=86 amount=2
-kerning first=90 second=85 amount=2
-kerning first=90 second=83 amount=-1
-kerning first=90 second=48 amount=-3
-kerning first=90 second=68 amount=1
-kerning first=90 second=76 amount=2
-kerning first=90 second=74 amount=-5
-kerning first=90 second=63 amount=-1
-kerning first=90 second=56 amount=-3
-kerning first=90 second=69 amount=1
-kerning first=90 second=108 amount=2
-kerning first=90 second=82 amount=2
-kerning first=90 second=52 amount=-8
-kerning first=90 second=50 amount=-2
-kerning first=90 second=92 amount=2
-kerning first=90 second=51 amount=-3
-kerning first=90 second=107 amount=2
-kerning first=90 second=66 amount=2
-kerning first=90 second=80 amount=2
-kerning first=90 second=49 amount=-4
-kerning first=90 second=41 amount=2
-kerning first=90 second=73 amount=2
-kerning first=90 second=33 amount=2
-kerning first=90 second=64 amount=-4
-kerning first=90 second=54 amount=-3
-kerning first=90 second=57 amount=-3
-kerning first=90 second=105 amount=1
-kerning first=90 second=100 amount=-2
-kerning first=90 second=113 amount=-3
-kerning first=90 second=112 amount=-2
-kerning first=90 second=98 amount=2
-kerning first=90 second=116 amount=-3
-kerning first=90 second=103 amount=-2
-kerning first=90 second=121 amount=-4
-kerning first=90 second=59 amount=-1
-kerning first=90 second=119 amount=-3
-kerning first=90 second=118 amount=-3
-kerning first=90 second=122 amount=-1
-kerning first=90 second=110 amount=-1
-kerning first=90 second=114 amount=-1
-kerning first=90 second=117 amount=-2
-kerning first=90 second=109 amount=-3
-kerning first=90 second=111 amount=-2
-kerning first=90 second=101 amount=-2
-kerning first=90 second=99 amount=-2
-kerning first=90 second=115 amount=-1
-kerning first=90 second=58 amount=-2
-kerning first=90 second=35 amount=-6
-kerning first=90 second=34 amount=3
-kerning first=90 second=39 amount=3
-kerning first=90 second=45 amount=-11
-kerning first=88 second=106 amount=1
-kerning first=88 second=81 amount=-2
-kerning first=88 second=84 amount=-3
-kerning first=88 second=102 amount=-2
-kerning first=88 second=90 amount=2
-kerning first=88 second=88 amount=2
-kerning first=88 second=65 amount=1
-kerning first=88 second=83 amount=-1
-kerning first=88 second=48 amount=-2
-kerning first=88 second=74 amount=-3
-kerning first=88 second=63 amount=-3
-kerning first=88 second=56 amount=-2
-kerning first=88 second=69 amount=1
-kerning first=88 second=108 amount=2
-kerning first=88 second=52 amount=-5
-kerning first=88 second=47 amount=2
-kerning first=88 second=71 amount=-1
-kerning first=88 second=51 amount=-2
-kerning first=88 second=107 amount=2
-kerning first=88 second=80 amount=1
-kerning first=88 second=49 amount=-6
-kerning first=88 second=41 amount=2
-kerning first=88 second=73 amount=1
-kerning first=88 second=33 amount=1
-kerning first=88 second=64 amount=-1
-kerning first=88 second=79 amount=-2
-kerning first=88 second=54 amount=-3
-kerning first=88 second=57 amount=-3
-kerning first=88 second=105 amount=2
-kerning first=88 second=112 amount=1
-kerning first=88 second=98 amount=2
-kerning first=88 second=116 amount=-2
-kerning first=88 second=121 amount=-3
-kerning first=88 second=59 amount=2
-kerning first=88 second=118 amount=-2
-kerning first=88 second=122 amount=2
-kerning first=88 second=110 amount=2
-kerning first=88 second=120 amount=3
-kerning first=88 second=114 amount=1
-kerning first=88 second=97 amount=2
-kerning first=88 second=115 amount=1
-kerning first=88 second=58 amount=1
-kerning first=88 second=35 amount=-6
-kerning first=88 second=44 amount=3
-kerning first=88 second=45 amount=-5
-kerning first=88 second=46 amount=3
-kerning first=89 second=106 amount=1
-kerning first=89 second=87 amount=3
-kerning first=89 second=81 amount=-1
-kerning first=89 second=77 amount=1
-kerning first=89 second=84 amount=1
-kerning first=89 second=104 amount=2
-kerning first=89 second=102 amount=-2
-kerning first=89 second=93 amount=2
-kerning first=89 second=88 amount=3
-kerning first=89 second=89 amount=2
-kerning first=89 second=65 amount=-6
-kerning first=89 second=75 amount=3
-kerning first=89 second=78 amount=2
-kerning first=89 second=86 amount=3
-kerning first=89 second=85 amount=3
-kerning first=89 second=72 amount=2
-kerning first=89 second=48 amount=-2
-kerning first=89 second=68 amount=2
-kerning first=89 second=76 amount=3
-kerning first=89 second=74 amount=-6
-kerning first=89 second=56 amount=-2
-kerning first=89 second=69 amount=2
-kerning first=89 second=108 amount=3
-kerning first=89 second=82 amount=3
-kerning first=89 second=52 amount=-5
-kerning first=89 second=50 amount=-4
-kerning first=89 second=92 amount=3
-kerning first=89 second=47 amount=-3
-kerning first=89 second=51 amount=-3
-kerning first=89 second=107 amount=2
-kerning first=89 second=66 amount=3
-kerning first=89 second=80 amount=2
-kerning first=89 second=70 amount=1
-kerning first=89 second=49 amount=-3
-kerning first=89 second=41 amount=2
-kerning first=89 second=73 amount=3
-kerning first=89 second=33 amount=3
-kerning first=89 second=64 amount=-7
-kerning first=89 second=54 amount=-3
-kerning first=89 second=57 amount=-2
-kerning first=89 second=105 amount=2
-kerning first=89 second=100 amount=-5
-kerning first=89 second=113 amount=-4
-kerning first=89 second=112 amount=-2
-kerning first=89 second=98 amount=2
-kerning first=89 second=116 amount=-2
-kerning first=89 second=103 amount=-5
-kerning first=89 second=121 amount=-1
-kerning first=89 second=59 amount=-4
-kerning first=89 second=122 amount=-5
-kerning first=89 second=110 amount=-2
-kerning first=89 second=120 amount=-2
-kerning first=89 second=114 amount=-2
-kerning first=89 second=117 amount=-2
-kerning first=89 second=109 amount=-3
-kerning first=89 second=97 amount=-4
-kerning first=89 second=111 amount=-4
-kerning first=89 second=101 amount=-5
-kerning first=89 second=99 amount=-5
-kerning first=89 second=115 amount=-5
-kerning first=89 second=58 amount=-5
-kerning first=89 second=35 amount=-3
-kerning first=89 second=34 amount=4
-kerning first=89 second=39 amount=4
-kerning first=89 second=44 amount=-8
-kerning first=89 second=45 amount=-6
-kerning first=89 second=46 amount=-8
-kerning first=65 second=87 amount=-3
-kerning first=65 second=84 amount=-4
-kerning first=65 second=102 amount=-3
-kerning first=65 second=93 amount=-1
-kerning first=65 second=88 amount=1
-kerning first=65 second=89 amount=-6
-kerning first=65 second=53 amount=-2
-kerning first=65 second=86 amount=-4
-kerning first=65 second=83 amount=1
-kerning first=65 second=63 amount=-3
-kerning first=65 second=56 amount=-2
-kerning first=65 second=108 amount=1
-kerning first=65 second=92 amount=-7
-kerning first=65 second=71 amount=1
-kerning first=65 second=51 amount=-3
-kerning first=65 second=49 amount=-7
-kerning first=65 second=54 amount=-1
-kerning first=65 second=57 amount=-1
-kerning first=65 second=67 amount=1
-kerning first=65 second=105 amount=1
-kerning first=65 second=100 amount=1
-kerning first=65 second=113 amount=1
-kerning first=65 second=116 amount=-3
-kerning first=65 second=103 amount=2
-kerning first=65 second=59 amount=2
-kerning first=65 second=122 amount=1
-kerning first=65 second=110 amount=1
-kerning first=65 second=120 amount=2
-kerning first=65 second=114 amount=1
-kerning first=65 second=117 amount=2
-kerning first=65 second=97 amount=2
-kerning first=65 second=111 amount=2
-kerning first=65 second=101 amount=1
-kerning first=65 second=99 amount=2
-kerning first=65 second=34 amount=-7
-kerning first=65 second=39 amount=-7
-kerning first=65 second=44 amount=2
-kerning first=65 second=46 amount=2
-kerning first=75 second=106 amount=2
-kerning first=75 second=77 amount=1
-kerning first=75 second=84 amount=-2
-kerning first=75 second=104 amount=2
-kerning first=75 second=102 amount=-1
-kerning first=75 second=90 amount=3
-kerning first=75 second=88 amount=3
-kerning first=75 second=65 amount=2
-kerning first=75 second=75 amount=2
-kerning first=75 second=78 amount=2
-kerning first=75 second=53 amount=2
-kerning first=75 second=72 amount=1
-kerning first=75 second=76 amount=1
-kerning first=75 second=74 amount=-1
-kerning first=75 second=63 amount=-3
-kerning first=75 second=69 amount=2
-kerning first=75 second=108 amount=3
-kerning first=75 second=82 amount=2
-kerning first=75 second=52 amount=-5
-kerning first=75 second=50 amount=2
-kerning first=75 second=47 amount=2
-kerning first=75 second=55 amount=2
-kerning first=75 second=107 amount=2
-kerning first=75 second=66 amount=2
-kerning first=75 second=80 amount=2
-kerning first=75 second=70 amount=2
-kerning first=75 second=49 amount=-5
-kerning first=75 second=40 amount=1
-kerning first=75 second=41 amount=3
-kerning first=75 second=73 amount=2
-kerning first=75 second=33 amount=2
-kerning first=75 second=54 amount=-1
-kerning first=75 second=67 amount=2
-kerning first=75 second=105 amount=2
-kerning first=75 second=100 amount=2
-kerning first=75 second=113 amount=1
-kerning first=75 second=112 amount=2
-kerning first=75 second=98 amount=2
-kerning first=75 second=116 amount=-2
-kerning first=75 second=103 amount=2
-kerning first=75 second=121 amount=-2
-kerning first=75 second=59 amount=2
-kerning first=75 second=122 amount=3
-kerning first=75 second=110 amount=2
-kerning first=75 second=120 amount=4
-kerning first=75 second=114 amount=2
-kerning first=75 second=117 amount=2
-kerning first=75 second=97 amount=3
-kerning first=75 second=111 amount=2
-kerning first=75 second=101 amount=2
-kerning first=75 second=99 amount=2
-kerning first=75 second=115 amount=3
-kerning first=75 second=58 amount=2
-kerning first=75 second=35 amount=-7
-kerning first=75 second=44 amount=3
-kerning first=75 second=45 amount=-7
-kerning first=75 second=46 amount=4
-kerning first=78 second=106 amount=2
-kerning first=78 second=87 amount=2
-kerning first=78 second=104 amount=1
-kerning first=78 second=102 amount=1
-kerning first=78 second=93 amount=1
-kerning first=78 second=90 amount=2
-kerning first=78 second=88 amount=2
-kerning first=78 second=65 amount=1
-kerning first=78 second=75 amount=2
-kerning first=78 second=86 amount=2
-kerning first=78 second=85 amount=1
-kerning first=78 second=83 amount=1
-kerning first=78 second=48 amount=-1
-kerning first=78 second=76 amount=2
-kerning first=78 second=69 amount=1
-kerning first=78 second=108 amount=2
-kerning first=78 second=82 amount=2
-kerning first=78 second=92 amount=1
-kerning first=78 second=47 amount=2
-kerning first=78 second=107 amount=2
-kerning first=78 second=66 amount=2
-kerning first=78 second=80 amount=2
-kerning first=78 second=49 amount=-4
-kerning first=78 second=41 amount=2
-kerning first=78 second=73 amount=2
-kerning first=78 second=33 amount=2
-kerning first=78 second=54 amount=-1
-kerning first=78 second=57 amount=-1
-kerning first=78 second=105 amount=2
-kerning first=78 second=112 amount=1
-kerning first=78 second=98 amount=2
-kerning first=78 second=116 amount=2
-kerning first=78 second=103 amount=1
-kerning first=78 second=121 amount=2
-kerning first=78 second=59 amount=2
-kerning first=78 second=119 amount=3
-kerning first=78 second=118 amount=2
-kerning first=78 second=122 amount=2
-kerning first=78 second=110 amount=2
-kerning first=78 second=120 amount=3
-kerning first=78 second=114 amount=2
-kerning first=78 second=117 amount=1
-kerning first=78 second=97 amount=3
-kerning first=78 second=111 amount=1
-kerning first=78 second=99 amount=1
-kerning first=78 second=115 amount=2
-kerning first=78 second=58 amount=2
-kerning first=78 second=34 amount=2
-kerning first=78 second=39 amount=2
-kerning first=78 second=46 amount=2
-kerning first=53 second=81 amount=-2
-kerning first=53 second=90 amount=-2
-kerning first=53 second=65 amount=-5
-kerning first=53 second=86 amount=1
-kerning first=53 second=83 amount=-2
-kerning first=53 second=74 amount=-3
-kerning first=53 second=63 amount=-1
-kerning first=53 second=47 amount=-7
-kerning first=53 second=71 amount=-1
-kerning first=53 second=64 amount=-3
-kerning first=53 second=79 amount=-2
-kerning first=53 second=100 amount=-2
-kerning first=53 second=113 amount=-2
-kerning first=53 second=112 amount=-2
-kerning first=53 second=103 amount=-2
-kerning first=53 second=59 amount=-2
-kerning first=53 second=122 amount=-3
-kerning first=53 second=110 amount=-1
-kerning first=53 second=120 amount=-1
-kerning first=53 second=114 amount=-2
-kerning first=53 second=117 amount=-1
-kerning first=53 second=109 amount=-2
-kerning first=53 second=97 amount=-1
-kerning first=53 second=111 amount=-1
-kerning first=53 second=101 amount=-2
-kerning first=53 second=99 amount=-2
-kerning first=53 second=115 amount=-2
-kerning first=53 second=58 amount=-3
-kerning first=53 second=35 amount=-2
-kerning first=53 second=34 amount=1
-kerning first=53 second=39 amount=1
-kerning first=53 second=44 amount=-8
-kerning first=53 second=45 amount=-2
-kerning first=53 second=46 amount=-6
-kerning first=86 second=87 amount=2
-kerning first=86 second=81 amount=-2
-kerning first=86 second=104 amount=1
-kerning first=86 second=102 amount=-2
-kerning first=86 second=93 amount=2
-kerning first=86 second=90 amount=-1
-kerning first=86 second=88 amount=2
-kerning first=86 second=89 amount=1
-kerning first=86 second=65 amount=-7
-kerning first=86 second=75 amount=2
-kerning first=86 second=78 amount=1
-kerning first=86 second=53 amount=-1
-kerning first=86 second=86 amount=2
-kerning first=86 second=85 amount=2
-kerning first=86 second=83 amount=-1
-kerning first=86 second=48 amount=-3
-kerning first=86 second=68 amount=1
-kerning first=86 second=76 amount=2
-kerning first=86 second=74 amount=-5
-kerning first=86 second=56 amount=-3
-kerning first=86 second=69 amount=1
-kerning first=86 second=108 amount=2
-kerning first=86 second=82 amount=2
-kerning first=86 second=52 amount=-4
-kerning first=86 second=50 amount=-4
-kerning first=86 second=92 amount=2
-kerning first=86 second=47 amount=-6
-kerning first=86 second=51 amount=-3
-kerning first=86 second=107 amount=2
-kerning first=86 second=66 amount=2
-kerning first=86 second=80 amount=2
-kerning first=86 second=49 amount=-4
-kerning first=86 second=41 amount=2
-kerning first=86 second=73 amount=2
-kerning first=86 second=33 amount=2
-kerning first=86 second=64 amount=-5
-kerning first=86 second=54 amount=-3
-kerning first=86 second=57 amount=-3
-kerning first=86 second=105 amount=1
-kerning first=86 second=100 amount=-4
-kerning first=86 second=113 amount=-4
-kerning first=86 second=112 amount=-2
-kerning first=86 second=98 amount=2
-kerning first=86 second=103 amount=-4
-kerning first=86 second=59 amount=-3
-kerning first=86 second=122 amount=-4
-kerning first=86 second=110 amount=-2
-kerning first=86 second=120 amount=-2
-kerning first=86 second=114 amount=-2
-kerning first=86 second=117 amount=-2
-kerning first=86 second=109 amount=-2
-kerning first=86 second=97 amount=-3
-kerning first=86 second=111 amount=-3
-kerning first=86 second=101 amount=-4
-kerning first=86 second=99 amount=-4
-kerning first=86 second=115 amount=-4
-kerning first=86 second=58 amount=-4
-kerning first=86 second=35 amount=-2
-kerning first=86 second=34 amount=3
-kerning first=86 second=39 amount=3
-kerning first=86 second=44 amount=-7
-kerning first=86 second=45 amount=-4
-kerning first=86 second=46 amount=-7
-kerning first=85 second=106 amount=1
-kerning first=85 second=87 amount=2
-kerning first=85 second=84 amount=1
-kerning first=85 second=102 amount=2
-kerning first=85 second=93 amount=1
-kerning first=85 second=88 amount=2
-kerning first=85 second=89 amount=1
-kerning first=85 second=65 amount=-3
-kerning first=85 second=75 amount=2
-kerning first=85 second=86 amount=2
-kerning first=85 second=85 amount=2
-kerning first=85 second=68 amount=1
-kerning first=85 second=76 amount=2
-kerning first=85 second=63 amount=1
-kerning first=85 second=56 amount=-1
-kerning first=85 second=108 amount=2
-kerning first=85 second=82 amount=2
-kerning first=85 second=50 amount=-2
-kerning first=85 second=92 amount=2
-kerning first=85 second=47 amount=-2
-kerning first=85 second=71 amount=1
-kerning first=85 second=51 amount=-1
-kerning first=85 second=107 amount=2
-kerning first=85 second=66 amount=2
-kerning first=85 second=80 amount=1
-kerning first=85 second=49 amount=-4
-kerning first=85 second=40 amount=1
-kerning first=85 second=41 amount=1
-kerning first=85 second=73 amount=2
-kerning first=85 second=33 amount=2
-kerning first=85 second=54 amount=-1
-kerning first=85 second=57 amount=-1
-kerning first=85 second=67 amount=1
-kerning first=85 second=105 amount=1
-kerning first=85 second=112 amount=1
-kerning first=85 second=98 amount=2
-kerning first=85 second=116 amount=3
-kerning first=85 second=121 amount=2
-kerning first=85 second=119 amount=3
-kerning first=85 second=118 amount=3
-kerning first=85 second=110 amount=1
-kerning first=85 second=120 amount=2
-kerning first=85 second=114 amount=1
-kerning first=85 second=117 amount=1
-kerning first=85 second=97 amount=1
-kerning first=85 second=34 amount=2
-kerning first=85 second=39 amount=3
-kerning first=85 second=44 amount=-4
-kerning first=85 second=46 amount=-2
-kerning first=83 second=106 amount=1
-kerning first=83 second=104 amount=1
-kerning first=83 second=90 amount=2
-kerning first=83 second=88 amount=1
-kerning first=83 second=89 amount=-2
-kerning first=83 second=53 amount=1
-kerning first=83 second=83 amount=2
-kerning first=83 second=74 amount=1
-kerning first=83 second=108 amount=2
-kerning first=83 second=71 amount=1
-kerning first=83 second=107 amount=2
-kerning first=83 second=49 amount=-5
-kerning first=83 second=40 amount=1
-kerning first=83 second=41 amount=1
-kerning first=83 second=33 amount=2
-kerning first=83 second=67 amount=2
-kerning first=83 second=105 amount=2
-kerning first=83 second=100 amount=2
-kerning first=83 second=113 amount=2
-kerning first=83 second=112 amount=1
-kerning first=83 second=98 amount=1
-kerning first=83 second=116 amount=-1
-kerning first=83 second=103 amount=2
-kerning first=83 second=121 amount=2
-kerning first=83 second=119 amount=3
-kerning first=83 second=118 amount=3
-kerning first=83 second=122 amount=1
-kerning first=83 second=110 amount=2
-kerning first=83 second=120 amount=2
-kerning first=83 second=114 amount=2
-kerning first=83 second=117 amount=2
-kerning first=83 second=97 amount=3
-kerning first=83 second=111 amount=2
-kerning first=83 second=101 amount=2
-kerning first=83 second=99 amount=2
-kerning first=83 second=115 amount=2
-kerning first=83 second=46 amount=2
-kerning first=72 second=106 amount=2
-kerning first=72 second=87 amount=1
-kerning first=72 second=81 amount=2
-kerning first=72 second=104 amount=2
-kerning first=72 second=102 amount=2
-kerning first=72 second=93 amount=1
-kerning first=72 second=88 amount=2
-kerning first=72 second=75 amount=2
-kerning first=72 second=86 amount=2
-kerning first=72 second=85 amount=1
-kerning first=72 second=72 amount=2
-kerning first=72 second=76 amount=2
-kerning first=72 second=56 amount=-2
-kerning first=72 second=69 amount=1
-kerning first=72 second=108 amount=2
-kerning first=72 second=82 amount=2
-kerning first=72 second=52 amount=1
-kerning first=72 second=92 amount=1
-kerning first=72 second=71 amount=2
-kerning first=72 second=51 amount=-2
-kerning first=72 second=107 amount=2
-kerning first=72 second=66 amount=2
-kerning first=72 second=80 amount=1
-kerning first=72 second=49 amount=-5
-kerning first=72 second=40 amount=2
-kerning first=72 second=41 amount=1
-kerning first=72 second=73 amount=2
-kerning first=72 second=33 amount=2
-kerning first=72 second=79 amount=2
-kerning first=72 second=57 amount=-1
-kerning first=72 second=67 amount=2
-kerning first=72 second=105 amount=2
-kerning first=72 second=100 amount=2
-kerning first=72 second=113 amount=2
-kerning first=72 second=112 amount=1
-kerning first=72 second=98 amount=2
-kerning first=72 second=116 amount=3
-kerning first=72 second=103 amount=2
-kerning first=72 second=121 amount=1
-kerning first=72 second=59 amount=1
-kerning first=72 second=119 amount=3
-kerning first=72 second=118 amount=2
-kerning first=72 second=110 amount=2
-kerning first=72 second=120 amount=2
-kerning first=72 second=114 amount=2
-kerning first=72 second=117 amount=2
-kerning first=72 second=97 amount=2
-kerning first=72 second=111 amount=2
-kerning first=72 second=101 amount=2
-kerning first=72 second=99 amount=2
-kerning first=72 second=115 amount=1
-kerning first=72 second=35 amount=2
-kerning first=72 second=34 amount=2
-kerning first=72 second=39 amount=2
-kerning first=72 second=45 amount=2
-kerning first=72 second=46 amount=1
-kerning first=48 second=87 amount=-3
-kerning first=48 second=77 amount=-3
-kerning first=48 second=84 amount=-2
-kerning first=48 second=104 amount=-1
-kerning first=48 second=93 amount=-3
-kerning first=48 second=90 amount=-2
-kerning first=48 second=88 amount=-3
-kerning first=48 second=89 amount=-5
-kerning first=48 second=65 amount=-4
-kerning first=48 second=75 amount=-2
-kerning first=48 second=78 amount=-2
-kerning first=48 second=86 amount=-3
-kerning first=48 second=85 amount=-1
-kerning first=48 second=68 amount=-2
-kerning first=48 second=76 amount=-2
-kerning first=48 second=74 amount=-1
-kerning first=48 second=63 amount=-1
-kerning first=48 second=69 amount=-1
-kerning first=48 second=82 amount=-2
-kerning first=48 second=92 amount=-4
-kerning first=48 second=47 amount=-3
-kerning first=48 second=66 amount=-1
-kerning first=48 second=80 amount=-1
-kerning first=48 second=70 amount=-2
-kerning first=48 second=41 amount=-3
-kerning first=48 second=73 amount=-1
-kerning first=48 second=64 amount=-2
-kerning first=48 second=98 amount=-1
-kerning first=48 second=116 amount=1
-kerning first=48 second=119 amount=2
-kerning first=48 second=118 amount=1
-kerning first=48 second=122 amount=-2
-kerning first=48 second=109 amount=-1
-kerning first=48 second=115 amount=-1
-kerning first=48 second=58 amount=-2
-kerning first=48 second=34 amount=-1
-kerning first=48 second=39 amount=-1
-kerning first=48 second=44 amount=-4
-kerning first=48 second=46 amount=-2
-kerning first=68 second=106 amount=1
-kerning first=68 second=87 amount=1
-kerning first=68 second=84 amount=2
-kerning first=68 second=104 amount=1
-kerning first=68 second=102 amount=1
-kerning first=68 second=90 amount=-2
-kerning first=68 second=65 amount=-4
-kerning first=68 second=75 amount=1
-kerning first=68 second=53 amount=-1
-kerning first=68 second=86 amount=1
-kerning first=68 second=85 amount=1
-kerning first=68 second=76 amount=1
-kerning first=68 second=74 amount=-2
-kerning first=68 second=63 amount=2
-kerning first=68 second=108 amount=2
-kerning first=68 second=82 amount=1
-kerning first=68 second=52 amount=-1
-kerning first=68 second=50 amount=-2
-kerning first=68 second=47 amount=-6
-kerning first=68 second=107 amount=2
-kerning first=68 second=66 amount=1
-kerning first=68 second=80 amount=1
-kerning first=68 second=49 amount=-3
-kerning first=68 second=40 amount=1
-kerning first=68 second=73 amount=1
-kerning first=68 second=33 amount=2
-kerning first=68 second=64 amount=-2
-kerning first=68 second=54 amount=-1
-kerning first=68 second=67 amount=1
-kerning first=68 second=105 amount=2
-kerning first=68 second=112 amount=1
-kerning first=68 second=98 amount=2
-kerning first=68 second=116 amount=2
-kerning first=68 second=121 amount=2
-kerning first=68 second=119 amount=3
-kerning first=68 second=118 amount=3
-kerning first=68 second=110 amount=1
-kerning first=68 second=120 amount=1
-kerning first=68 second=114 amount=1
-kerning first=68 second=117 amount=1
-kerning first=68 second=101 amount=-1
-kerning first=68 second=34 amount=3
-kerning first=68 second=39 amount=3
-kerning first=68 second=44 amount=-8
-kerning first=68 second=46 amount=-6
-kerning first=76 second=106 amount=2
-kerning first=76 second=87 amount=-4
-kerning first=76 second=84 amount=-4
-kerning first=76 second=104 amount=1
-kerning first=76 second=102 amount=-2
-kerning first=76 second=90 amount=2
-kerning first=76 second=88 amount=2
-kerning first=76 second=89 amount=-6
-kerning first=76 second=53 amount=1
-kerning first=76 second=86 amount=-4
-kerning first=76 second=83 amount=2
-kerning first=76 second=63 amount=-3
-kerning first=76 second=108 amount=2
-kerning first=76 second=52 amount=-3
-kerning first=76 second=92 amount=-7
-kerning first=76 second=47 amount=1
-kerning first=76 second=107 amount=2
-kerning first=76 second=49 amount=-6
-kerning first=76 second=41 amount=1
-kerning first=76 second=33 amount=2
-kerning first=76 second=54 amount=-1
-kerning first=76 second=67 amount=1
-kerning first=76 second=105 amount=2
-kerning first=76 second=100 amount=1
-kerning first=76 second=113 amount=2
-kerning first=76 second=112 amount=2
-kerning first=76 second=98 amount=1
-kerning first=76 second=116 amount=-2
-kerning first=76 second=103 amount=2
-kerning first=76 second=121 amount=-2
-kerning first=76 second=59 amount=1
-kerning first=76 second=122 amount=2
-kerning first=76 second=110 amount=2
-kerning first=76 second=120 amount=3
-kerning first=76 second=114 amount=2
-kerning first=76 second=117 amount=2
-kerning first=76 second=97 amount=3
-kerning first=76 second=111 amount=2
-kerning first=76 second=101 amount=2
-kerning first=76 second=99 amount=2
-kerning first=76 second=115 amount=3
-kerning first=76 second=58 amount=1
-kerning first=76 second=35 amount=-7
-kerning first=76 second=34 amount=-7
-kerning first=76 second=39 amount=-7
-kerning first=76 second=44 amount=1
-kerning first=76 second=45 amount=-7
-kerning first=76 second=46 amount=3
-kerning first=74 second=106 amount=1
-kerning first=74 second=87 amount=3
-kerning first=74 second=77 amount=1
-kerning first=74 second=84 amount=1
-kerning first=74 second=104 amount=2
-kerning first=74 second=102 amount=1
-kerning first=74 second=93 amount=2
-kerning first=74 second=88 amount=3
-kerning first=74 second=89 amount=2
-kerning first=74 second=75 amount=2
-kerning first=74 second=78 amount=2
-kerning first=74 second=86 amount=3
-kerning first=74 second=85 amount=2
-kerning first=74 second=72 amount=1
-kerning first=74 second=68 amount=2
-kerning first=74 second=76 amount=2
-kerning first=74 second=63 amount=1
-kerning first=74 second=56 amount=-2
-kerning first=74 second=69 amount=2
-kerning first=74 second=108 amount=2
-kerning first=74 second=82 amount=2
-kerning first=74 second=92 amount=2
-kerning first=74 second=71 amount=1
-kerning first=74 second=51 amount=-2
-kerning first=74 second=107 amount=2
-kerning first=74 second=66 amount=3
-kerning first=74 second=80 amount=2
-kerning first=74 second=49 amount=-3
-kerning first=74 second=41 amount=2
-kerning first=74 second=73 amount=2
-kerning first=74 second=33 amount=2
-kerning first=74 second=54 amount=-1
-kerning first=74 second=57 amount=-1
-kerning first=74 second=67 amount=1
-kerning first=74 second=105 amount=2
-kerning first=74 second=98 amount=2
-kerning first=74 second=116 amount=3
-kerning first=74 second=121 amount=2
-kerning first=74 second=119 amount=3
-kerning first=74 second=118 amount=3
-kerning first=74 second=120 amount=1
-kerning first=74 second=114 amount=1
-kerning first=74 second=97 amount=1
-kerning first=74 second=111 amount=1
-kerning first=74 second=115 amount=1
-kerning first=74 second=34 amount=3
-kerning first=74 second=39 amount=3
-kerning first=63 second=87 amount=2
-kerning first=63 second=84 amount=2
-kerning first=63 second=102 amount=-1
-kerning first=63 second=93 amount=1
-kerning first=63 second=90 amount=-2
-kerning first=63 second=88 amount=1
-kerning first=63 second=65 amount=-4
-kerning first=63 second=75 amount=1
-kerning first=63 second=53 amount=-2
-kerning first=63 second=86 amount=2
-kerning first=63 second=85 amount=1
-kerning first=63 second=48 amount=-2
-kerning first=63 second=74 amount=-5
-kerning first=63 second=63 amount=2
-kerning first=63 second=56 amount=-1
-kerning first=63 second=108 amount=2
-kerning first=63 second=82 amount=1
-kerning first=63 second=52 amount=-5
-kerning first=63 second=50 amount=-2
-kerning first=63 second=92 amount=1
-kerning first=63 second=47 amount=-3
-kerning first=63 second=51 amount=-1
-kerning first=63 second=107 amount=1
-kerning first=63 second=66 amount=2
-kerning first=63 second=80 amount=1
-kerning first=63 second=49 amount=-3
-kerning first=63 second=73 amount=1
-kerning first=63 second=33 amount=2
-kerning first=63 second=64 amount=-6
-kerning first=63 second=54 amount=-2
-kerning first=63 second=57 amount=-2
-kerning first=63 second=105 amount=2
-kerning first=63 second=100 amount=-3
-kerning first=63 second=113 amount=-3
-kerning first=63 second=98 amount=2
-kerning first=63 second=103 amount=-3
-kerning first=63 second=59 amount=-2
-kerning first=63 second=119 amount=2
-kerning first=63 second=118 amount=1
-kerning first=63 second=122 amount=-3
-kerning first=63 second=97 amount=-2
-kerning first=63 second=111 amount=-3
-kerning first=63 second=101 amount=-4
-kerning first=63 second=99 amount=-4
-kerning first=63 second=115 amount=-3
-kerning first=63 second=58 amount=-3
-kerning first=63 second=35 amount=-1
-kerning first=63 second=34 amount=2
-kerning first=63 second=39 amount=3
-kerning first=63 second=44 amount=-2
-kerning first=63 second=45 amount=-5
-kerning first=63 second=46 amount=-3
-kerning first=56 second=106 amount=-2
-kerning first=56 second=87 amount=-3
-kerning first=56 second=81 amount=-3
-kerning first=56 second=77 amount=-4
-kerning first=56 second=84 amount=-3
-kerning first=56 second=104 amount=-2
-kerning first=56 second=102 amount=-5
-kerning first=56 second=93 amount=-3
-kerning first=56 second=90 amount=-3
-kerning first=56 second=88 amount=-3
-kerning first=56 second=89 amount=-4
-kerning first=56 second=65 amount=-4
-kerning first=56 second=75 amount=-3
-kerning first=56 second=78 amount=-3
-kerning first=56 second=86 amount=-2
-kerning first=56 second=85 amount=-3
-kerning first=56 second=83 amount=-2
-kerning first=56 second=72 amount=-3
-kerning first=56 second=68 amount=-3
-kerning first=56 second=76 amount=-3
-kerning first=56 second=74 amount=-2
-kerning first=56 second=63 amount=-2
-kerning first=56 second=69 amount=-3
-kerning first=56 second=108 amount=-2
-kerning first=56 second=82 amount=-3
-kerning first=56 second=92 amount=-3
-kerning first=56 second=47 amount=-4
-kerning first=56 second=71 amount=-2
-kerning first=56 second=107 amount=-2
-kerning first=56 second=66 amount=-3
-kerning first=56 second=80 amount=-3
-kerning first=56 second=70 amount=-3
-kerning first=56 second=40 amount=-2
-kerning first=56 second=41 amount=-3
-kerning first=56 second=73 amount=-3
-kerning first=56 second=33 amount=-2
-kerning first=56 second=64 amount=-3
-kerning first=56 second=79 amount=-3
-kerning first=56 second=67 amount=-2
-kerning first=56 second=105 amount=-2
-kerning first=56 second=100 amount=-2
-kerning first=56 second=113 amount=-2
-kerning first=56 second=112 amount=-3
-kerning first=56 second=98 amount=-2
-kerning first=56 second=116 amount=-4
-kerning first=56 second=103 amount=-2
-kerning first=56 second=121 amount=-2
-kerning first=56 second=59 amount=-5
-kerning first=56 second=119 amount=-2
-kerning first=56 second=118 amount=-2
-kerning first=56 second=122 amount=-4
-kerning first=56 second=110 amount=-2
-kerning first=56 second=120 amount=-3
-kerning first=56 second=114 amount=-2
-kerning first=56 second=117 amount=-2
-kerning first=56 second=109 amount=-3
-kerning first=56 second=97 amount=-1
-kerning first=56 second=111 amount=-2
-kerning first=56 second=101 amount=-2
-kerning first=56 second=99 amount=-2
-kerning first=56 second=115 amount=-2
-kerning first=56 second=58 amount=-4
-kerning first=56 second=35 amount=-3
-kerning first=56 second=34 amount=-2
-kerning first=56 second=39 amount=-2
-kerning first=56 second=44 amount=-6
-kerning first=56 second=45 amount=-3
-kerning first=56 second=46 amount=-3
-kerning first=69 second=87 amount=2
-kerning first=69 second=81 amount=-1
-kerning first=69 second=102 amount=-2
-kerning first=69 second=93 amount=1
-kerning first=69 second=90 amount=1
-kerning first=69 second=88 amount=2
-kerning first=69 second=75 amount=2
-kerning first=69 second=86 amount=2
-kerning first=69 second=85 amount=1
-kerning first=69 second=48 amount=-2
-kerning first=69 second=76 amount=2
-kerning first=69 second=74 amount=-3
-kerning first=69 second=63 amount=-1
-kerning first=69 second=56 amount=-2
-kerning first=69 second=108 amount=2
-kerning first=69 second=82 amount=2
-kerning first=69 second=52 amount=-1
-kerning first=69 second=92 amount=1
-kerning first=69 second=51 amount=-1
-kerning first=69 second=107 amount=1
-kerning first=69 second=66 amount=2
-kerning first=69 second=80 amount=1
-kerning first=69 second=49 amount=-4
-kerning first=69 second=41 amount=1
-kerning first=69 second=73 amount=2
-kerning first=69 second=33 amount=2
-kerning first=69 second=64 amount=-1
-kerning first=69 second=54 amount=-3
-kerning first=69 second=57 amount=-2
-kerning first=69 second=105 amount=1
-kerning first=69 second=98 amount=1
-kerning first=69 second=121 amount=-2
-kerning first=69 second=118 amount=-1
-kerning first=69 second=120 amount=2
-kerning first=69 second=97 amount=1
-kerning first=69 second=35 amount=-1
-kerning first=69 second=34 amount=2
-kerning first=69 second=39 amount=2
-kerning first=69 second=46 amount=1
-kerning first=108 second=106 amount=2
-kerning first=108 second=104 amount=1
-kerning first=108 second=102 amount=2
-kerning first=108 second=93 amount=2
-kerning first=108 second=63 amount=2
-kerning first=108 second=108 amount=3
-kerning first=108 second=50 amount=1
-kerning first=108 second=92 amount=2
-kerning first=108 second=47 amount=2
-kerning first=108 second=107 amount=2
-kerning first=108 second=49 amount=-4
-kerning first=108 second=40 amount=1
-kerning first=108 second=41 amount=2
-kerning first=108 second=33 amount=2
-kerning first=108 second=105 amount=2
-kerning first=108 second=100 amount=1
-kerning first=108 second=113 amount=1
-kerning first=108 second=112 amount=2
-kerning first=108 second=98 amount=2
-kerning first=108 second=116 amount=3
-kerning first=108 second=103 amount=2
-kerning first=108 second=121 amount=3
-kerning first=108 second=59 amount=3
-kerning first=108 second=119 amount=4
-kerning first=108 second=118 amount=3
-kerning first=108 second=122 amount=2
-kerning first=108 second=110 amount=2
-kerning first=108 second=120 amount=3
-kerning first=108 second=114 amount=2
-kerning first=108 second=117 amount=2
-kerning first=108 second=97 amount=2
-kerning first=108 second=111 amount=2
-kerning first=108 second=101 amount=1
-kerning first=108 second=99 amount=2
-kerning first=108 second=115 amount=2
-kerning first=108 second=58 amount=2
-kerning first=108 second=35 amount=1
-kerning first=108 second=34 amount=3
-kerning first=108 second=39 amount=3
-kerning first=108 second=44 amount=3
-kerning first=108 second=45 amount=1
-kerning first=108 second=46 amount=3
-kerning first=82 second=106 amount=3
-kerning first=82 second=77 amount=2
-kerning first=82 second=104 amount=2
-kerning first=82 second=93 amount=1
-kerning first=82 second=90 amount=3
-kerning first=82 second=88 amount=4
-kerning first=82 second=89 amount=-2
-kerning first=82 second=65 amount=2
-kerning first=82 second=75 amount=2
-kerning first=82 second=78 amount=2
-kerning first=82 second=53 amount=1
-kerning first=82 second=72 amount=2
-kerning first=82 second=68 amount=1
-kerning first=82 second=76 amount=2
-kerning first=82 second=74 amount=-2
-kerning first=82 second=63 amount=-1
-kerning first=82 second=69 amount=2
-kerning first=82 second=108 amount=3
-kerning first=82 second=82 amount=2
-kerning first=82 second=52 amount=-7
-kerning first=82 second=50 amount=2
-kerning first=82 second=92 amount=-1
-kerning first=82 second=47 amount=3
-kerning first=82 second=55 amount=2
-kerning first=82 second=107 amount=3
-kerning first=82 second=66 amount=2
-kerning first=82 second=80 amount=3
-kerning first=82 second=70 amount=2
-kerning first=82 second=49 amount=-5
-kerning first=82 second=40 amount=1
-kerning first=82 second=41 amount=3
-kerning first=82 second=73 amount=3
-kerning first=82 second=33 amount=3
-kerning first=82 second=54 amount=-2
-kerning first=82 second=57 amount=-1
-kerning first=82 second=67 amount=2
-kerning first=82 second=105 amount=3
-kerning first=82 second=100 amount=2
-kerning first=82 second=113 amount=1
-kerning first=82 second=112 amount=2
-kerning first=82 second=98 amount=3
-kerning first=82 second=103 amount=2
-kerning first=82 second=121 amount=-2
-kerning first=82 second=59 amount=3
-kerning first=82 second=122 amount=3
-kerning first=82 second=110 amount=3
-kerning first=82 second=120 amount=4
-kerning first=82 second=114 amount=3
-kerning first=82 second=117 amount=2
-kerning first=82 second=97 amount=4
-kerning first=82 second=111 amount=2
-kerning first=82 second=101 amount=2
-kerning first=82 second=99 amount=2
-kerning first=82 second=115 amount=3
-kerning first=82 second=58 amount=3
-kerning first=82 second=35 amount=-5
-kerning first=82 second=44 amount=4
-kerning first=82 second=45 amount=-9
-kerning first=82 second=46 amount=5
-kerning first=52 second=106 amount=2
-kerning first=52 second=87 amount=-2
-kerning first=52 second=81 amount=2
-kerning first=52 second=84 amount=-3
-kerning first=52 second=104 amount=1
-kerning first=52 second=102 amount=1
-kerning first=52 second=93 amount=-3
-kerning first=52 second=90 amount=-4
-kerning first=52 second=88 amount=-3
-kerning first=52 second=89 amount=-4
-kerning first=52 second=65 amount=-2
-kerning first=52 second=86 amount=-2
-kerning first=52 second=85 amount=1
-kerning first=52 second=83 amount=-2
-kerning first=52 second=72 amount=2
-kerning first=52 second=63 amount=-2
-kerning first=52 second=69 amount=1
-kerning first=52 second=108 amount=2
-kerning first=52 second=92 amount=-3
-kerning first=52 second=47 amount=-4
-kerning first=52 second=71 amount=2
-kerning first=52 second=107 amount=2
-kerning first=52 second=66 amount=1
-kerning first=52 second=80 amount=1
-kerning first=52 second=40 amount=2
-kerning first=52 second=41 amount=-1
-kerning first=52 second=73 amount=1
-kerning first=52 second=33 amount=2
-kerning first=52 second=79 amount=1
-kerning first=52 second=67 amount=2
-kerning first=52 second=105 amount=2
-kerning first=52 second=100 amount=2
-kerning first=52 second=113 amount=2
-kerning first=52 second=112 amount=1
-kerning first=52 second=98 amount=1
-kerning first=52 second=116 amount=2
-kerning first=52 second=103 amount=2
-kerning first=52 second=121 amount=1
-kerning first=52 second=119 amount=3
-kerning first=52 second=118 amount=2
-kerning first=52 second=122 amount=-2
-kerning first=52 second=110 amount=2
-kerning first=52 second=114 amount=2
-kerning first=52 second=117 amount=2
-kerning first=52 second=97 amount=2
-kerning first=52 second=111 amount=2
-kerning first=52 second=101 amount=2
-kerning first=52 second=99 amount=2
-kerning first=52 second=115 amount=1
-kerning first=52 second=35 amount=2
-kerning first=52 second=34 amount=-3
-kerning first=52 second=39 amount=-3
-kerning first=52 second=44 amount=-4
-kerning first=52 second=45 amount=3
-kerning first=52 second=46 amount=-4
-kerning first=50 second=106 amount=1
-kerning first=50 second=81 amount=-1
-kerning first=50 second=90 amount=2
-kerning first=50 second=88 amount=2
-kerning first=50 second=74 amount=-3
-kerning first=50 second=108 amount=1
-kerning first=50 second=47 amount=1
-kerning first=50 second=107 amount=1
-kerning first=50 second=41 amount=1
-kerning first=50 second=105 amount=1
-kerning first=50 second=98 amount=1
-kerning first=50 second=119 amount=2
-kerning first=50 second=118 amount=2
-kerning first=50 second=122 amount=1
-kerning first=50 second=110 amount=1
-kerning first=50 second=120 amount=2
-kerning first=50 second=97 amount=2
-kerning first=50 second=115 amount=1
-kerning first=50 second=35 amount=-1
-kerning first=50 second=34 amount=1
-kerning first=50 second=39 amount=2
-kerning first=50 second=45 amount=-4
-kerning first=50 second=46 amount=2
-kerning first=92 second=87 amount=-5
-kerning first=92 second=81 amount=-2
-kerning first=92 second=84 amount=-4
-kerning first=92 second=102 amount=-3
-kerning first=92 second=93 amount=-1
-kerning first=92 second=88 amount=1
-kerning first=92 second=89 amount=-6
-kerning first=92 second=86 amount=-5
-kerning first=92 second=85 amount=-3
-kerning first=92 second=83 amount=-1
-kerning first=92 second=48 amount=-3
-kerning first=92 second=74 amount=-3
-kerning first=92 second=63 amount=-5
-kerning first=92 second=56 amount=-2
-kerning first=92 second=108 amount=1
-kerning first=92 second=52 amount=-4
-kerning first=92 second=92 amount=-9
-kerning first=92 second=71 amount=-2
-kerning first=92 second=51 amount=-2
-kerning first=92 second=49 amount=-7
-kerning first=92 second=64 amount=-1
-kerning first=92 second=79 amount=-3
-kerning first=92 second=54 amount=-4
-kerning first=92 second=57 amount=-3
-kerning first=92 second=116 amount=-3
-kerning first=92 second=121 amount=-4
-kerning first=92 second=59 amount=1
-kerning first=92 second=119 amount=-1
-kerning first=92 second=118 amount=-2
-kerning first=92 second=122 amount=2
-kerning first=92 second=110 amount=1
-kerning first=92 second=120 amount=3
-kerning first=92 second=114 amount=1
-kerning first=92 second=97 amount=2
-kerning first=92 second=115 amount=1
-kerning first=92 second=58 amount=1
-kerning first=92 second=35 amount=-5
-kerning first=92 second=34 amount=-12
-kerning first=92 second=39 amount=-9
-kerning first=92 second=44 amount=2
-kerning first=92 second=45 amount=-4
-kerning first=92 second=46 amount=3
-kerning first=47 second=87 amount=1
-kerning first=47 second=81 amount=-3
-kerning first=47 second=102 amount=-4
-kerning first=47 second=90 amount=-2
-kerning first=47 second=88 amount=1
-kerning first=47 second=65 amount=-8
-kerning first=47 second=75 amount=1
-kerning first=47 second=53 amount=-2
-kerning first=47 second=86 amount=1
-kerning first=47 second=83 amount=-2
-kerning first=47 second=48 amount=-4
-kerning first=47 second=76 amount=1
-kerning first=47 second=74 amount=-9
-kerning first=47 second=63 amount=-2
-kerning first=47 second=56 amount=-4
-kerning first=47 second=52 amount=-9
-kerning first=47 second=50 amount=-6
-kerning first=47 second=47 amount=-12
-kerning first=47 second=71 amount=-2
-kerning first=47 second=55 amount=-1
-kerning first=47 second=51 amount=-5
-kerning first=47 second=66 amount=1
-kerning first=47 second=49 amount=-5
-kerning first=47 second=40 amount=-1
-kerning first=47 second=64 amount=-10
-kerning first=47 second=79 amount=-2
-kerning first=47 second=54 amount=-4
-kerning first=47 second=57 amount=-4
-kerning first=47 second=67 amount=-2
-kerning first=47 second=100 amount=-7
-kerning first=47 second=113 amount=-7
-kerning first=47 second=112 amount=-4
-kerning first=47 second=116 amount=-4
-kerning first=47 second=103 amount=-7
-kerning first=47 second=121 amount=-3
-kerning first=47 second=59 amount=-6
-kerning first=47 second=119 amount=-3
-kerning first=47 second=118 amount=-3
-kerning first=47 second=122 amount=-7
-kerning first=47 second=110 amount=-5
-kerning first=47 second=120 amount=-4
-kerning first=47 second=114 amount=-5
-kerning first=47 second=117 amount=-5
-kerning first=47 second=109 amount=-5
-kerning first=47 second=97 amount=-6
-kerning first=47 second=111 amount=-7
-kerning first=47 second=101 amount=-8
-kerning first=47 second=99 amount=-8
-kerning first=47 second=115 amount=-7
-kerning first=47 second=58 amount=-7
-kerning first=47 second=35 amount=-5
-kerning first=47 second=34 amount=3
-kerning first=47 second=39 amount=3
-kerning first=47 second=44 amount=-8
-kerning first=47 second=45 amount=-9
-kerning first=47 second=46 amount=-10
-kerning first=71 second=106 amount=2
-kerning first=71 second=81 amount=2
-kerning first=71 second=84 amount=-3
-kerning first=71 second=104 amount=2
-kerning first=71 second=102 amount=1
-kerning first=71 second=93 amount=-4
-kerning first=71 second=90 amount=-3
-kerning first=71 second=88 amount=-3
-kerning first=71 second=89 amount=-4
-kerning first=71 second=75 amount=1
-kerning first=71 second=78 amount=1
-kerning first=71 second=53 amount=-2
-kerning first=71 second=86 amount=-1
-kerning first=71 second=85 amount=2
-kerning first=71 second=83 amount=-2
-kerning first=71 second=72 amount=3
-kerning first=71 second=48 amount=1
-kerning first=71 second=68 amount=1
-kerning first=71 second=76 amount=1
-kerning first=71 second=74 amount=1
-kerning first=71 second=63 amount=-1
-kerning first=71 second=56 amount=-2
-kerning first=71 second=69 amount=2
-kerning first=71 second=108 amount=3
-kerning first=71 second=82 amount=1
-kerning first=71 second=52 amount=2
-kerning first=71 second=50 amount=-5
-kerning first=71 second=92 amount=-4
-kerning first=71 second=47 amount=-3
-kerning first=71 second=71 amount=3
-kerning first=71 second=55 amount=-4
-kerning first=71 second=51 amount=-3
-kerning first=71 second=107 amount=3
-kerning first=71 second=66 amount=2
-kerning first=71 second=80 amount=2
-kerning first=71 second=70 amount=1
-kerning first=71 second=49 amount=-6
-kerning first=71 second=40 amount=3
-kerning first=71 second=73 amount=2
-kerning first=71 second=33 amount=3
-kerning first=71 second=64 amount=2
-kerning first=71 second=79 amount=2
-kerning first=71 second=57 amount=-1
-kerning first=71 second=67 amount=3
-kerning first=71 second=105 amount=3
-kerning first=71 second=100 amount=3
-kerning first=71 second=113 amount=3
-kerning first=71 second=112 amount=2
-kerning first=71 second=98 amount=2
-kerning first=71 second=116 amount=3
-kerning first=71 second=103 amount=3
-kerning first=71 second=121 amount=2
-kerning first=71 second=119 amount=3
-kerning first=71 second=118 amount=2
-kerning first=71 second=122 amount=-3
-kerning first=71 second=110 amount=3
-kerning first=71 second=114 amount=2
-kerning first=71 second=117 amount=3
-kerning first=71 second=109 amount=2
-kerning first=71 second=97 amount=2
-kerning first=71 second=111 amount=3
-kerning first=71 second=101 amount=3
-kerning first=71 second=99 amount=3
-kerning first=71 second=115 amount=2
-kerning first=71 second=35 amount=3
-kerning first=71 second=34 amount=-2
-kerning first=71 second=39 amount=-2
-kerning first=71 second=44 amount=-5
-kerning first=71 second=45 amount=3
-kerning first=71 second=46 amount=-4
-kerning first=55 second=106 amount=-2
-kerning first=55 second=81 amount=-4
-kerning first=55 second=77 amount=-2
-kerning first=55 second=104 amount=-1
-kerning first=55 second=102 amount=-5
-kerning first=55 second=90 amount=-4
-kerning first=55 second=89 amount=-1
-kerning first=55 second=65 amount=-9
-kerning first=55 second=78 amount=-1
-kerning first=55 second=83 amount=-3
-kerning first=55 second=72 amount=-2
-kerning first=55 second=68 amount=-1
-kerning first=55 second=74 amount=-7
-kerning first=55 second=63 amount=-3
-kerning first=55 second=69 amount=-1
-kerning first=55 second=47 amount=-11
-kerning first=55 second=71 amount=-3
-kerning first=55 second=70 amount=-2
-kerning first=55 second=40 amount=-2
-kerning first=55 second=64 amount=-10
-kerning first=55 second=79 amount=-3
-kerning first=55 second=67 amount=-3
-kerning first=55 second=105 amount=-1
-kerning first=55 second=100 amount=-8
-kerning first=55 second=113 amount=-8
-kerning first=55 second=112 amount=-6
-kerning first=55 second=116 amount=-5
-kerning first=55 second=103 amount=-8
-kerning first=55 second=121 amount=-4
-kerning first=55 second=59 amount=-7
-kerning first=55 second=119 amount=-4
-kerning first=55 second=118 amount=-4
-kerning first=55 second=122 amount=-8
-kerning first=55 second=110 amount=-6
-kerning first=55 second=120 amount=-5
-kerning first=55 second=114 amount=-6
-kerning first=55 second=117 amount=-6
-kerning first=55 second=109 amount=-6
-kerning first=55 second=97 amount=-7
-kerning first=55 second=111 amount=-8
-kerning first=55 second=101 amount=-9
-kerning first=55 second=99 amount=-8
-kerning first=55 second=115 amount=-8
-kerning first=55 second=58 amount=-8
-kerning first=55 second=35 amount=-5
-kerning first=55 second=39 amount=1
-kerning first=55 second=44 amount=-10
-kerning first=55 second=45 amount=-9
-kerning first=55 second=46 amount=-12
-kerning first=51 second=77 amount=-2
-kerning first=51 second=84 amount=-1
-kerning first=51 second=93 amount=-1
-kerning first=51 second=90 amount=-4
-kerning first=51 second=89 amount=-2
-kerning first=51 second=65 amount=-4
-kerning first=51 second=75 amount=-1
-kerning first=51 second=78 amount=-2
-kerning first=51 second=83 amount=-2
-kerning first=51 second=68 amount=-2
-kerning first=51 second=76 amount=-1
-kerning first=51 second=74 amount=-1
-kerning first=51 second=63 amount=-1
-kerning first=51 second=92 amount=-1
-kerning first=51 second=47 amount=-6
-kerning first=51 second=70 amount=-1
-kerning first=51 second=41 amount=-2
-kerning first=51 second=64 amount=-2
-kerning first=51 second=59 amount=-1
-kerning first=51 second=122 amount=-4
-kerning first=51 second=120 amount=-2
-kerning first=51 second=109 amount=-1
-kerning first=51 second=58 amount=-2
-kerning first=51 second=44 amount=-8
-kerning first=51 second=46 amount=-5
-kerning first=107 second=106 amount=3
-kerning first=107 second=104 amount=2
-kerning first=107 second=102 amount=2
-kerning first=107 second=53 amount=1
-kerning first=107 second=108 amount=3
-kerning first=107 second=52 amount=-3
-kerning first=107 second=50 amount=2
-kerning first=107 second=92 amount=-4
-kerning first=107 second=47 amount=3
-kerning first=107 second=55 amount=2
-kerning first=107 second=107 amount=3
-kerning first=107 second=49 amount=-5
-kerning first=107 second=40 amount=2
-kerning first=107 second=41 amount=3
-kerning first=107 second=33 amount=2
-kerning first=107 second=105 amount=3
-kerning first=107 second=100 amount=2
-kerning first=107 second=113 amount=2
-kerning first=107 second=112 amount=3
-kerning first=107 second=98 amount=3
-kerning first=107 second=116 amount=3
-kerning first=107 second=103 amount=3
-kerning first=107 second=121 amount=4
-kerning first=107 second=59 amount=3
-kerning first=107 second=119 amount=5
-kerning first=107 second=118 amount=5
-kerning first=107 second=122 amount=4
-kerning first=107 second=110 amount=3
-kerning first=107 second=120 amount=5
-kerning first=107 second=114 amount=3
-kerning first=107 second=117 amount=3
-kerning first=107 second=109 amount=2
-kerning first=107 second=97 amount=4
-kerning first=107 second=111 amount=3
-kerning first=107 second=101 amount=2
-kerning first=107 second=99 amount=3
-kerning first=107 second=115 amount=3
-kerning first=107 second=58 amount=3
-kerning first=107 second=35 amount=1
-kerning first=107 second=34 amount=-2
-kerning first=107 second=39 amount=-2
-kerning first=107 second=44 amount=4
-kerning first=107 second=45 amount=-3
-kerning first=107 second=46 amount=4
-kerning first=66 second=90 amount=-3
-kerning first=66 second=89 amount=-2
-kerning first=66 second=65 amount=-2
-kerning first=66 second=53 amount=-2
-kerning first=66 second=72 amount=1
-kerning first=66 second=56 amount=-3
-kerning first=66 second=108 amount=1
-kerning first=66 second=50 amount=-5
-kerning first=66 second=47 amount=-4
-kerning first=66 second=71 amount=2
-kerning first=66 second=55 amount=-2
-kerning first=66 second=51 amount=-4
-kerning first=66 second=107 amount=1
-kerning first=66 second=49 amount=-5
-kerning first=66 second=40 amount=1
-kerning first=66 second=41 amount=-1
-kerning first=66 second=33 amount=1
-kerning first=66 second=57 amount=-2
-kerning first=66 second=67 amount=2
-kerning first=66 second=105 amount=1
-kerning first=66 second=100 amount=1
-kerning first=66 second=113 amount=1
-kerning first=66 second=116 amount=2
-kerning first=66 second=103 amount=2
-kerning first=66 second=119 amount=2
-kerning first=66 second=122 amount=-2
-kerning first=66 second=110 amount=1
-kerning first=66 second=114 amount=1
-kerning first=66 second=117 amount=2
-kerning first=66 second=111 amount=2
-kerning first=66 second=101 amount=1
-kerning first=66 second=99 amount=1
-kerning first=66 second=35 amount=2
-kerning first=66 second=44 amount=-7
-kerning first=66 second=45 amount=2
-kerning first=66 second=46 amount=-4
-kerning first=80 second=106 amount=1
-kerning first=80 second=87 amount=3
-kerning first=80 second=77 amount=1
-kerning first=80 second=84 amount=3
-kerning first=80 second=104 amount=2
-kerning first=80 second=93 amount=2
-kerning first=80 second=88 amount=3
-kerning first=80 second=89 amount=2
-kerning first=80 second=65 amount=-5
-kerning first=80 second=75 amount=3
-kerning first=80 second=78 amount=2
-kerning first=80 second=86 amount=3
-kerning first=80 second=85 amount=3
-kerning first=80 second=72 amount=1
-kerning first=80 second=68 amount=2
-kerning first=80 second=76 amount=2
-kerning first=80 second=74 amount=-5
-kerning first=80 second=63 amount=2
-kerning first=80 second=69 amount=2
-kerning first=80 second=108 amount=3
-kerning first=80 second=82 amount=3
-kerning first=80 second=52 amount=-4
-kerning first=80 second=50 amount=-2
-kerning first=80 second=92 amount=2
-kerning first=80 second=47 amount=-8
-kerning first=80 second=71 amount=1
-kerning first=80 second=107 amount=3
-kerning first=80 second=66 amount=3
-kerning first=80 second=80 amount=2
-kerning first=80 second=70 amount=1
-kerning first=80 second=49 amount=-2
-kerning first=80 second=40 amount=1
-kerning first=80 second=41 amount=2
-kerning first=80 second=73 amount=3
-kerning first=80 second=33 amount=3
-kerning first=80 second=64 amount=-4
-kerning first=80 second=79 amount=1
-kerning first=80 second=54 amount=-1
-kerning first=80 second=67 amount=1
-kerning first=80 second=105 amount=3
-kerning first=80 second=100 amount=-2
-kerning first=80 second=113 amount=-2
-kerning first=80 second=98 amount=3
-kerning first=80 second=116 amount=1
-kerning first=80 second=103 amount=-2
-kerning first=80 second=121 amount=2
-kerning first=80 second=119 amount=3
-kerning first=80 second=118 amount=3
-kerning first=80 second=122 amount=-2
-kerning first=80 second=111 amount=-2
-kerning first=80 second=101 amount=-3
-kerning first=80 second=99 amount=-2
-kerning first=80 second=115 amount=-2
-kerning first=80 second=58 amount=-2
-kerning first=80 second=34 amount=4
-kerning first=80 second=39 amount=4
-kerning first=80 second=44 amount=-9
-kerning first=80 second=45 amount=-3
-kerning first=80 second=46 amount=-9
-kerning first=123 second=32 amount=2
-kerning first=125 second=112 amount=1
-kerning first=125 second=110 amount=1
-kerning first=125 second=109 amount=2
-kerning first=125 second=111 amount=2
-kerning first=70 second=87 amount=2
-kerning first=70 second=93 amount=1
-kerning first=70 second=90 amount=-2
-kerning first=70 second=88 amount=2
-kerning first=70 second=65 amount=-4
-kerning first=70 second=75 amount=2
-kerning first=70 second=53 amount=-2
-kerning first=70 second=86 amount=2
-kerning first=70 second=85 amount=2
-kerning first=70 second=83 amount=-1
-kerning first=70 second=48 amount=-1
-kerning first=70 second=76 amount=2
-kerning first=70 second=74 amount=-5
-kerning first=70 second=63 amount=-1
-kerning first=70 second=56 amount=-3
-kerning first=70 second=108 amount=2
-kerning first=70 second=82 amount=2
-kerning first=70 second=50 amount=-5
-kerning first=70 second=92 amount=1
-kerning first=70 second=47 amount=-6
-kerning first=70 second=51 amount=-5
-kerning first=70 second=107 amount=1
-kerning first=70 second=66 amount=2
-kerning first=70 second=80 amount=1
-kerning first=70 second=49 amount=-4
-kerning first=70 second=41 amount=1
-kerning first=70 second=73 amount=2
-kerning first=70 second=33 amount=2
-kerning first=70 second=64 amount=-1
-kerning first=70 second=54 amount=-2
-kerning first=70 second=57 amount=-3
-kerning first=70 second=105 amount=1
-kerning first=70 second=98 amount=2
-kerning first=70 second=59 amount=-1
-kerning first=70 second=122 amount=-4
-kerning first=70 second=120 amount=-2
-kerning first=70 second=109 amount=-1
-kerning first=70 second=58 amount=-2
-kerning first=70 second=34 amount=2
-kerning first=70 second=39 amount=3
-kerning first=70 second=44 amount=-7
-kerning first=70 second=46 amount=-7
-kerning first=49 second=106 amount=-6
-kerning first=49 second=87 amount=-7
-kerning first=49 second=81 amount=-8
-kerning first=49 second=77 amount=-8
-kerning first=49 second=84 amount=-8
-kerning first=49 second=104 amount=-7
-kerning first=49 second=102 amount=-7
-kerning first=49 second=93 amount=-8
-kerning first=49 second=90 amount=-6
-kerning first=49 second=88 amount=-5
-kerning first=49 second=89 amount=-8
-kerning first=49 second=65 amount=-7
-kerning first=49 second=75 amount=-7
-kerning first=49 second=78 amount=-7
-kerning first=49 second=86 amount=-7
-kerning first=49 second=85 amount=-7
-kerning first=49 second=83 amount=-7
-kerning first=49 second=72 amount=-7
-kerning first=49 second=68 amount=-8
-kerning first=49 second=76 amount=-7
-kerning first=49 second=74 amount=-8
-kerning first=49 second=63 amount=-8
-kerning first=49 second=69 amount=-7
-kerning first=49 second=108 amount=-6
-kerning first=49 second=82 amount=-7
-kerning first=49 second=92 amount=-7
-kerning first=49 second=47 amount=-6
-kerning first=49 second=71 amount=-7
-kerning first=49 second=107 amount=-6
-kerning first=49 second=66 amount=-7
-kerning first=49 second=80 amount=-6
-kerning first=49 second=70 amount=-7
-kerning first=49 second=40 amount=-8
-kerning first=49 second=41 amount=-6
-kerning first=49 second=73 amount=-6
-kerning first=49 second=33 amount=-6
-kerning first=49 second=64 amount=-9
-kerning first=49 second=79 amount=-8
-kerning first=49 second=67 amount=-7
-kerning first=49 second=105 amount=-6
-kerning first=49 second=100 amount=-7
-kerning first=49 second=113 amount=-7
-kerning first=49 second=112 amount=-7
-kerning first=49 second=98 amount=-6
-kerning first=49 second=116 amount=-6
-kerning first=49 second=103 amount=-7
-kerning first=49 second=121 amount=-7
-kerning first=49 second=59 amount=-6
-kerning first=49 second=119 amount=-6
-kerning first=49 second=118 amount=-6
-kerning first=49 second=122 amount=-6
-kerning first=49 second=110 amount=-6
-kerning first=49 second=120 amount=-5
-kerning first=49 second=114 amount=-6
-kerning first=49 second=117 amount=-7
-kerning first=49 second=109 amount=-8
-kerning first=49 second=97 amount=-5
-kerning first=49 second=111 amount=-7
-kerning first=49 second=101 amount=-7
-kerning first=49 second=99 amount=-7
-kerning first=49 second=115 amount=-6
-kerning first=49 second=58 amount=-6
-kerning first=49 second=35 amount=-8
-kerning first=49 second=34 amount=-7
-kerning first=49 second=39 amount=-7
-kerning first=49 second=44 amount=-6
-kerning first=49 second=45 amount=-8
-kerning first=49 second=46 amount=-5
-kerning first=40 second=106 amount=2
-kerning first=40 second=87 amount=2
-kerning first=40 second=81 amount=-2
-kerning first=40 second=104 amount=1
-kerning first=40 second=93 amount=2
-kerning first=40 second=90 amount=2
-kerning first=40 second=88 amount=2
-kerning first=40 second=89 amount=1
-kerning first=40 second=65 amount=1
-kerning first=40 second=75 amount=2
-kerning first=40 second=78 amount=1
-kerning first=40 second=86 amount=3
-kerning first=40 second=85 amount=2
-kerning first=40 second=48 amount=-2
-kerning first=40 second=68 amount=1
-kerning first=40 second=76 amount=2
-kerning first=40 second=74 amount=-1
-kerning first=40 second=56 amount=-2
-kerning first=40 second=69 amount=1
-kerning first=40 second=108 amount=2
-kerning first=40 second=82 amount=2
-kerning first=40 second=52 amount=-2
-kerning first=40 second=92 amount=2
-kerning first=40 second=47 amount=2
-kerning first=40 second=51 amount=-2
-kerning first=40 second=107 amount=2
-kerning first=40 second=66 amount=2
-kerning first=40 second=80 amount=2
-kerning first=40 second=49 amount=-4
-kerning first=40 second=41 amount=2
-kerning first=40 second=73 amount=2
-kerning first=40 second=33 amount=2
-kerning first=40 second=64 amount=-2
-kerning first=40 second=54 amount=-3
-kerning first=40 second=57 amount=-2
-kerning first=40 second=105 amount=1
-kerning first=40 second=112 amount=1
-kerning first=40 second=98 amount=2
-kerning first=40 second=59 amount=2
-kerning first=40 second=122 amount=2
-kerning first=40 second=110 amount=2
-kerning first=40 second=120 amount=3
-kerning first=40 second=114 amount=2
-kerning first=40 second=97 amount=2
-kerning first=40 second=58 amount=1
-kerning first=40 second=35 amount=-2
-kerning first=40 second=34 amount=3
-kerning first=40 second=39 amount=3
-kerning first=40 second=44 amount=2
-kerning first=40 second=45 amount=-2
-kerning first=40 second=46 amount=2
-kerning first=41 second=106 amount=2
-kerning first=41 second=81 amount=2
-kerning first=41 second=104 amount=1
-kerning first=41 second=102 amount=2
-kerning first=41 second=85 amount=1
-kerning first=41 second=83 amount=1
-kerning first=41 second=72 amount=2
-kerning first=41 second=74 amount=1
-kerning first=41 second=63 amount=2
-kerning first=41 second=56 amount=-1
-kerning first=41 second=69 amount=1
-kerning first=41 second=108 amount=2
-kerning first=41 second=52 amount=1
-kerning first=41 second=50 amount=-1
-kerning first=41 second=71 amount=2
-kerning first=41 second=55 amount=-1
-kerning first=41 second=107 amount=2
-kerning first=41 second=66 amount=1
-kerning first=41 second=80 amount=1
-kerning first=41 second=49 amount=-4
-kerning first=41 second=40 amount=2
-kerning first=41 second=73 amount=1
-kerning first=41 second=33 amount=2
-kerning first=41 second=79 amount=2
-kerning first=41 second=67 amount=2
-kerning first=41 second=105 amount=2
-kerning first=41 second=100 amount=2
-kerning first=41 second=113 amount=2
-kerning first=41 second=112 amount=2
-kerning first=41 second=98 amount=1
-kerning first=41 second=116 amount=4
-kerning first=41 second=103 amount=2
-kerning first=41 second=121 amount=3
-kerning first=41 second=59 amount=2
-kerning first=41 second=119 amount=4
-kerning first=41 second=118 amount=4
-kerning first=41 second=110 amount=2
-kerning first=41 second=120 amount=2
-kerning first=41 second=114 amount=2
-kerning first=41 second=117 amount=2
-kerning first=41 second=109 amount=1
-kerning first=41 second=97 amount=2
-kerning first=41 second=111 amount=2
-kerning first=41 second=101 amount=2
-kerning first=41 second=99 amount=2
-kerning first=41 second=115 amount=1
-kerning first=41 second=35 amount=2
-kerning first=41 second=34 amount=2
-kerning first=41 second=39 amount=2
-kerning first=41 second=44 amount=-1
-kerning first=41 second=45 amount=2
-kerning first=73 second=106 amount=2
-kerning first=73 second=87 amount=2
-kerning first=73 second=104 amount=1
-kerning first=73 second=102 amount=1
-kerning first=73 second=93 amount=1
-kerning first=73 second=90 amount=2
-kerning first=73 second=88 amount=2
-kerning first=73 second=65 amount=1
-kerning first=73 second=75 amount=2
-kerning first=73 second=86 amount=2
-kerning first=73 second=85 amount=2
-kerning first=73 second=83 amount=1
-kerning first=73 second=72 amount=1
-kerning first=73 second=76 amount=2
-kerning first=73 second=63 amount=1
-kerning first=73 second=56 amount=-1
-kerning first=73 second=108 amount=2
-kerning first=73 second=82 amount=2
-kerning first=73 second=92 amount=1
-kerning first=73 second=47 amount=2
-kerning first=73 second=71 amount=1
-kerning first=73 second=107 amount=2
-kerning first=73 second=66 amount=2
-kerning first=73 second=80 amount=2
-kerning first=73 second=49 amount=-4
-kerning first=73 second=41 amount=2
-kerning first=73 second=73 amount=2
-kerning first=73 second=33 amount=2
-kerning first=73 second=54 amount=-1
-kerning first=73 second=67 amount=1
-kerning first=73 second=105 amount=2
-kerning first=73 second=113 amount=1
-kerning first=73 second=112 amount=1
-kerning first=73 second=98 amount=2
-kerning first=73 second=116 amount=3
-kerning first=73 second=103 amount=1
-kerning first=73 second=121 amount=2
-kerning first=73 second=59 amount=3
-kerning first=73 second=119 amount=3
-kerning first=73 second=118 amount=3
-kerning first=73 second=122 amount=2
-kerning first=73 second=110 amount=2
-kerning first=73 second=120 amount=3
-kerning first=73 second=114 amount=2
-kerning first=73 second=117 amount=1
-kerning first=73 second=97 amount=2
-kerning first=73 second=111 amount=2
-kerning first=73 second=99 amount=1
-kerning first=73 second=115 amount=2
-kerning first=73 second=58 amount=2
-kerning first=73 second=34 amount=2
-kerning first=73 second=39 amount=2
-kerning first=73 second=44 amount=2
-kerning first=73 second=46 amount=2
-kerning first=33 second=106 amount=2
-kerning first=33 second=87 amount=2
-kerning first=33 second=81 amount=1
-kerning first=33 second=84 amount=1
-kerning first=33 second=104 amount=1
-kerning first=33 second=102 amount=2
-kerning first=33 second=93 amount=3
-kerning first=33 second=90 amount=2
-kerning first=33 second=88 amount=2
-kerning first=33 second=89 amount=1
-kerning first=33 second=65 amount=1
-kerning first=33 second=75 amount=2
-kerning first=33 second=78 amount=1
-kerning first=33 second=53 amount=4
-kerning first=33 second=86 amount=3
-kerning first=33 second=85 amount=2
-kerning first=33 second=83 amount=3
-kerning first=33 second=72 amount=1
-kerning first=33 second=68 amount=1
-kerning first=33 second=76 amount=2
-kerning first=33 second=74 amount=2
-kerning first=33 second=63 amount=2
-kerning first=33 second=69 amount=1
-kerning first=33 second=108 amount=2
-kerning first=33 second=82 amount=2
-kerning first=33 second=52 amount=2
-kerning first=33 second=92 amount=2
-kerning first=33 second=47 amount=2
-kerning first=33 second=71 amount=2
-kerning first=33 second=107 amount=2
-kerning first=33 second=66 amount=2
-kerning first=33 second=80 amount=2
-kerning first=33 second=49 amount=-4
-kerning first=33 second=40 amount=2
-kerning first=33 second=41 amount=2
-kerning first=33 second=73 amount=4
-kerning first=33 second=33 amount=2
-kerning first=33 second=79 amount=1
-kerning first=33 second=67 amount=2
-kerning first=33 second=105 amount=2
-kerning first=33 second=100 amount=2
-kerning first=33 second=113 amount=2
-kerning first=33 second=112 amount=1
-kerning first=33 second=98 amount=2
-kerning first=33 second=116 amount=3
-kerning first=33 second=103 amount=2
-kerning first=33 second=121 amount=3
-kerning first=33 second=59 amount=3
-kerning first=33 second=119 amount=4
-kerning first=33 second=118 amount=3
-kerning first=33 second=122 amount=2
-kerning first=33 second=110 amount=2
-kerning first=33 second=120 amount=3
-kerning first=33 second=114 amount=2
-kerning first=33 second=117 amount=2
-kerning first=33 second=97 amount=3
-kerning first=33 second=111 amount=2
-kerning first=33 second=101 amount=2
-kerning first=33 second=99 amount=2
-kerning first=33 second=115 amount=3
-kerning first=33 second=58 amount=2
-kerning first=33 second=35 amount=1
-kerning first=33 second=43 amount=2
-kerning first=33 second=34 amount=2
-kerning first=33 second=39 amount=3
-kerning first=33 second=44 amount=3
-kerning first=33 second=45 amount=2
-kerning first=33 second=46 amount=2
-kerning first=64 second=106 amount=1
-kerning first=64 second=87 amount=-2
-kerning first=64 second=81 amount=1
-kerning first=64 second=84 amount=-4
-kerning first=64 second=102 amount=2
-kerning first=64 second=93 amount=-7
-kerning first=64 second=90 amount=-3
-kerning first=64 second=88 amount=-3
-kerning first=64 second=89 amount=-5
-kerning first=64 second=65 amount=-2
-kerning first=64 second=86 amount=-2
-kerning first=64 second=72 amount=2
-kerning first=64 second=74 amount=1
-kerning first=64 second=63 amount=-3
-kerning first=64 second=56 amount=-2
-kerning first=64 second=108 amount=1
-kerning first=64 second=52 amount=1
-kerning first=64 second=50 amount=-6
-kerning first=64 second=92 amount=-7
-kerning first=64 second=47 amount=-3
-kerning first=64 second=71 amount=2
-kerning first=64 second=55 amount=-4
-kerning first=64 second=51 amount=-3
-kerning first=64 second=107 amount=1
-kerning first=64 second=49 amount=-8
-kerning first=64 second=40 amount=2
-kerning first=64 second=41 amount=-2
-kerning first=64 second=33 amount=1
-kerning first=64 second=79 amount=1
-kerning first=64 second=57 amount=-2
-kerning first=64 second=67 amount=2
-kerning first=64 second=105 amount=1
-kerning first=64 second=100 amount=2
-kerning first=64 second=113 amount=2
-kerning first=64 second=116 amount=3
-kerning first=64 second=103 amount=2
-kerning first=64 second=121 amount=1
-kerning first=64 second=119 amount=3
-kerning first=64 second=118 amount=2
-kerning first=64 second=122 amount=-1
-kerning first=64 second=110 amount=1
-kerning first=64 second=114 amount=1
-kerning first=64 second=117 amount=2
-kerning first=64 second=97 amount=1
-kerning first=64 second=111 amount=2
-kerning first=64 second=101 amount=1
-kerning first=64 second=99 amount=2
-kerning first=64 second=35 amount=2
-kerning first=64 second=34 amount=-5
-kerning first=64 second=39 amount=-5
-kerning first=64 second=44 amount=-7
-kerning first=64 second=45 amount=2
-kerning first=64 second=46 amount=-4
-kerning first=79 second=106 amount=1
-kerning first=79 second=81 amount=1
-kerning first=79 second=102 amount=2
-kerning first=79 second=93 amount=-1
-kerning first=79 second=88 amount=-1
-kerning first=79 second=89 amount=-3
-kerning first=79 second=65 amount=-2
-kerning first=79 second=72 amount=2
-kerning first=79 second=56 amount=-2
-kerning first=79 second=108 amount=1
-kerning first=79 second=50 amount=-3
-kerning first=79 second=92 amount=-2
-kerning first=79 second=47 amount=-2
-kerning first=79 second=71 amount=2
-kerning first=79 second=55 amount=-2
-kerning first=79 second=51 amount=-2
-kerning first=79 second=107 amount=1
-kerning first=79 second=49 amount=-5
-kerning first=79 second=40 amount=1
-kerning first=79 second=41 amount=-1
-kerning first=79 second=33 amount=2
-kerning first=79 second=79 amount=1
-kerning first=79 second=57 amount=-1
-kerning first=79 second=67 amount=2
-kerning first=79 second=105 amount=1
-kerning first=79 second=100 amount=1
-kerning first=79 second=113 amount=2
-kerning first=79 second=112 amount=1
-kerning first=79 second=98 amount=1
-kerning first=79 second=116 amount=3
-kerning first=79 second=103 amount=2
-kerning first=79 second=121 amount=3
-kerning first=79 second=59 amount=1
-kerning first=79 second=119 amount=4
-kerning first=79 second=118 amount=3
-kerning first=79 second=110 amount=2
-kerning first=79 second=120 amount=2
-kerning first=79 second=114 amount=2
-kerning first=79 second=117 amount=2
-kerning first=79 second=97 amount=2
-kerning first=79 second=111 amount=2
-kerning first=79 second=101 amount=1
-kerning first=79 second=99 amount=2
-kerning first=79 second=35 amount=2
-kerning first=79 second=44 amount=-3
-kerning first=79 second=45 amount=2
-kerning first=54 second=106 amount=-2
-kerning first=54 second=87 amount=-2
-kerning first=54 second=81 amount=-2
-kerning first=54 second=77 amount=-3
-kerning first=54 second=104 amount=-1
-kerning first=54 second=102 amount=-2
-kerning first=54 second=93 amount=-3
-kerning first=54 second=90 amount=-2
-kerning first=54 second=88 amount=-3
-kerning first=54 second=89 amount=-3
-kerning first=54 second=65 amount=-4
-kerning first=54 second=75 amount=-1
-kerning first=54 second=78 amount=-2
-kerning first=54 second=86 amount=-2
-kerning first=54 second=83 amount=-1
-kerning first=54 second=72 amount=-2
-kerning first=54 second=68 amount=-2
-kerning first=54 second=76 amount=-1
-kerning first=54 second=74 amount=-1
-kerning first=54 second=69 amount=-1
-kerning first=54 second=82 amount=-1
-kerning first=54 second=92 amount=-3
-kerning first=54 second=47 amount=-3
-kerning first=54 second=66 amount=-1
-kerning first=54 second=80 amount=-1
-kerning first=54 second=70 amount=-2
-kerning first=54 second=40 amount=-1
-kerning first=54 second=41 amount=-3
-kerning first=54 second=73 amount=-1
-kerning first=54 second=64 amount=-2
-kerning first=54 second=79 amount=-2
-kerning first=54 second=100 amount=-1
-kerning first=54 second=113 amount=-1
-kerning first=54 second=112 amount=-2
-kerning first=54 second=98 amount=-1
-kerning first=54 second=121 amount=-1
-kerning first=54 second=59 amount=-3
-kerning first=54 second=118 amount=-2
-kerning first=54 second=122 amount=-3
-kerning first=54 second=110 amount=-1
-kerning first=54 second=120 amount=-2
-kerning first=54 second=114 amount=-2
-kerning first=54 second=109 amount=-2
-kerning first=54 second=97 amount=-1
-kerning first=54 second=101 amount=-1
-kerning first=54 second=115 amount=-2
-kerning first=54 second=58 amount=-3
-kerning first=54 second=35 amount=-1
-kerning first=54 second=44 amount=-5
-kerning first=54 second=45 amount=-1
-kerning first=54 second=46 amount=-3
-kerning first=57 second=87 amount=-3
-kerning first=57 second=81 amount=-1
-kerning first=57 second=77 amount=-3
-kerning first=57 second=84 amount=-2
-kerning first=57 second=104 amount=-1
-kerning first=57 second=93 amount=-4
-kerning first=57 second=90 amount=-3
-kerning first=57 second=88 amount=-4
-kerning first=57 second=89 amount=-5
-kerning first=57 second=65 amount=-4
-kerning first=57 second=75 amount=-2
-kerning first=57 second=78 amount=-2
-kerning first=57 second=86 amount=-3
-kerning first=57 second=85 amount=-1
-kerning first=57 second=83 amount=-2
-kerning first=57 second=68 amount=-2
-kerning first=57 second=76 amount=-2
-kerning first=57 second=74 amount=-2
-kerning first=57 second=63 amount=-1
-kerning first=57 second=69 amount=-2
-kerning first=57 second=82 amount=-2
-kerning first=57 second=92 amount=-4
-kerning first=57 second=47 amount=-4
-kerning first=57 second=66 amount=-2
-kerning first=57 second=80 amount=-2
-kerning first=57 second=70 amount=-2
-kerning first=57 second=41 amount=-4
-kerning first=57 second=73 amount=-2
-kerning first=57 second=64 amount=-2
-kerning first=57 second=79 amount=-1
-kerning first=57 second=100 amount=-1
-kerning first=57 second=98 amount=-1
-kerning first=57 second=116 amount=1
-kerning first=57 second=59 amount=-1
-kerning first=57 second=119 amount=1
-kerning first=57 second=118 amount=1
-kerning first=57 second=122 amount=-2
-kerning first=57 second=109 amount=-1
-kerning first=57 second=101 amount=-1
-kerning first=57 second=115 amount=-1
-kerning first=57 second=58 amount=-2
-kerning first=57 second=34 amount=-1
-kerning first=57 second=44 amount=-5
-kerning first=57 second=46 amount=-3
-kerning first=67 second=106 amount=2
-kerning first=67 second=81 amount=2
-kerning first=67 second=104 amount=2
-kerning first=67 second=102 amount=2
-kerning first=67 second=93 amount=-1
-kerning first=67 second=88 amount=-1
-kerning first=67 second=89 amount=-2
-kerning first=67 second=85 amount=1
-kerning first=67 second=83 amount=2
-kerning first=67 second=74 amount=2
-kerning first=67 second=56 amount=-1
-kerning first=67 second=69 amount=1
-kerning first=67 second=108 amount=2
-kerning first=67 second=52 amount=2
-kerning first=67 second=50 amount=-3
-kerning first=67 second=92 amount=-1
-kerning first=67 second=47 amount=-1
-kerning first=67 second=71 amount=2
-kerning first=67 second=55 amount=-2
-kerning first=67 second=51 amount=-2
-kerning first=67 second=107 amount=2
-kerning first=67 second=66 amount=1
-kerning first=67 second=80 amount=1
-kerning first=67 second=49 amount=-5
-kerning first=67 second=40 amount=2
-kerning first=67 second=73 amount=1
-kerning first=67 second=33 amount=2
-kerning first=67 second=64 amount=1
-kerning first=67 second=79 amount=1
-kerning first=67 second=67 amount=3
-kerning first=67 second=105 amount=2
-kerning first=67 second=100 amount=2
-kerning first=67 second=113 amount=2
-kerning first=67 second=112 amount=2
-kerning first=67 second=98 amount=2
-kerning first=67 second=116 amount=3
-kerning first=67 second=103 amount=3
-kerning first=67 second=121 amount=3
-kerning first=67 second=119 amount=4
-kerning first=67 second=118 amount=4
-kerning first=67 second=110 amount=2
-kerning first=67 second=120 amount=2
-kerning first=67 second=114 amount=2
-kerning first=67 second=117 amount=3
-kerning first=67 second=109 amount=1
-kerning first=67 second=97 amount=2
-kerning first=67 second=111 amount=3
-kerning first=67 second=101 amount=2
-kerning first=67 second=99 amount=2
-kerning first=67 second=35 amount=1
-kerning first=67 second=34 amount=1
-kerning first=67 second=39 amount=1
-kerning first=67 second=44 amount=-2
-kerning first=105 second=106 amount=2
-kerning first=105 second=104 amount=2
-kerning first=105 second=102 amount=2
-kerning first=105 second=93 amount=2
-kerning first=105 second=63 amount=2
-kerning first=105 second=108 amount=2
-kerning first=105 second=50 amount=1
-kerning first=105 second=92 amount=2
-kerning first=105 second=47 amount=2
-kerning first=105 second=107 amount=2
-kerning first=105 second=49 amount=-4
-kerning first=105 second=40 amount=2
-kerning first=105 second=41 amount=2
-kerning first=105 second=33 amount=3
-kerning first=105 second=105 amount=2
-kerning first=105 second=100 amount=1
-kerning first=105 second=113 amount=1
-kerning first=105 second=112 amount=2
-kerning first=105 second=98 amount=2
-kerning first=105 second=116 amount=3
-kerning first=105 second=103 amount=1
-kerning first=105 second=121 amount=4
-kerning first=105 second=59 amount=3
-kerning first=105 second=119 amount=5
-kerning first=105 second=118 amount=4
-kerning first=105 second=122 amount=2
-kerning first=105 second=110 amount=2
-kerning first=105 second=120 amount=3
-kerning first=105 second=114 amount=3
-kerning first=105 second=117 amount=2
-kerning first=105 second=109 amount=2
-kerning first=105 second=97 amount=2
-kerning first=105 second=111 amount=2
-kerning first=105 second=101 amount=1
-kerning first=105 second=99 amount=1
-kerning first=105 second=115 amount=2
-kerning first=105 second=58 amount=2
-kerning first=105 second=35 amount=2
-kerning first=105 second=34 amount=2
-kerning first=105 second=39 amount=2
-kerning first=105 second=44 amount=3
-kerning first=105 second=46 amount=3
-kerning first=100 second=106 amount=1
-kerning first=100 second=102 amount=2
-kerning first=100 second=93 amount=1
-kerning first=100 second=63 amount=1
-kerning first=100 second=56 amount=-1
-kerning first=100 second=108 amount=2
-kerning first=100 second=92 amount=1
-kerning first=100 second=47 amount=2
-kerning first=100 second=107 amount=2
-kerning first=100 second=49 amount=-4
-kerning first=100 second=41 amount=1
-kerning first=100 second=33 amount=2
-kerning first=100 second=105 amount=1
-kerning first=100 second=113 amount=1
-kerning first=100 second=112 amount=1
-kerning first=100 second=98 amount=2
-kerning first=100 second=116 amount=3
-kerning first=100 second=103 amount=1
-kerning first=100 second=121 amount=2
-kerning first=100 second=59 amount=2
-kerning first=100 second=119 amount=3
-kerning first=100 second=118 amount=3
-kerning first=100 second=122 amount=2
-kerning first=100 second=110 amount=1
-kerning first=100 second=120 amount=3
-kerning first=100 second=114 amount=1
-kerning first=100 second=117 amount=1
-kerning first=100 second=97 amount=2
-kerning first=100 second=111 amount=1
-kerning first=100 second=99 amount=1
-kerning first=100 second=115 amount=2
-kerning first=100 second=58 amount=1
-kerning first=100 second=34 amount=2
-kerning first=100 second=39 amount=2
-kerning first=100 second=44 amount=2
-kerning first=100 second=46 amount=2
-kerning first=113 second=106 amount=6
-kerning first=113 second=104 amount=1
-kerning first=113 second=102 amount=2
-kerning first=113 second=108 amount=2
-kerning first=113 second=52 amount=1
-kerning first=113 second=92 amount=-4
-kerning first=113 second=47 amount=2
-kerning first=113 second=107 amount=2
-kerning first=113 second=49 amount=-7
-kerning first=113 second=40 amount=2
-kerning first=113 second=41 amount=1
-kerning first=113 second=33 amount=2
-kerning first=113 second=105 amount=2
-kerning first=113 second=100 amount=2
-kerning first=113 second=112 amount=2
-kerning first=113 second=98 amount=1
-kerning first=113 second=116 amount=3
-kerning first=113 second=103 amount=1
-kerning first=113 second=121 amount=3
-kerning first=113 second=59 amount=4
-kerning first=113 second=119 amount=4
-kerning first=113 second=118 amount=4
-kerning first=113 second=122 amount=2
-kerning first=113 second=110 amount=2
-kerning first=113 second=120 amount=2
-kerning first=113 second=114 amount=2
-kerning first=113 second=117 amount=2
-kerning first=113 second=109 amount=1
-kerning first=113 second=97 amount=2
-kerning first=113 second=111 amount=2
-kerning first=113 second=101 amount=1
-kerning first=113 second=99 amount=2
-kerning first=113 second=115 amount=2
-kerning first=113 second=58 amount=1
-kerning first=113 second=35 amount=1
-kerning first=113 second=44 amount=4
-kerning first=113 second=45 amount=1
-kerning first=113 second=46 amount=2
-kerning first=112 second=106 amount=1
-kerning first=112 second=104 amount=1
-kerning first=112 second=102 amount=2
-kerning first=112 second=93 amount=-2
-kerning first=112 second=63 amount=-2
-kerning first=112 second=108 amount=2
-kerning first=112 second=52 amount=2
-kerning first=112 second=50 amount=-1
-kerning first=112 second=92 amount=-6
-kerning first=112 second=107 amount=2
-kerning first=112 second=49 amount=-7
-kerning first=112 second=40 amount=2
-kerning first=112 second=33 amount=2
-kerning first=112 second=64 amount=1
-kerning first=112 second=105 amount=2
-kerning first=112 second=100 amount=2
-kerning first=112 second=113 amount=1
-kerning first=112 second=98 amount=1
-kerning first=112 second=116 amount=3
-kerning first=112 second=103 amount=2
-kerning first=112 second=59 amount=1
-kerning first=112 second=119 amount=3
-kerning first=112 second=118 amount=2
-kerning first=112 second=110 amount=2
-kerning first=112 second=120 amount=1
-kerning first=112 second=114 amount=2
-kerning first=112 second=117 amount=2
-kerning first=112 second=97 amount=2
-kerning first=112 second=111 amount=2
-kerning first=112 second=101 amount=2
-kerning first=112 second=99 amount=2
-kerning first=112 second=115 amount=2
-kerning first=112 second=35 amount=2
-kerning first=112 second=34 amount=-5
-kerning first=112 second=39 amount=-5
-kerning first=112 second=44 amount=-2
-kerning first=112 second=45 amount=2
-kerning first=98 second=102 amount=1
-kerning first=98 second=93 amount=-2
-kerning first=98 second=63 amount=-2
-kerning first=98 second=56 amount=-1
-kerning first=98 second=108 amount=1
-kerning first=98 second=52 amount=1
-kerning first=98 second=92 amount=-7
-kerning first=98 second=107 amount=1
-kerning first=98 second=49 amount=-7
-kerning first=98 second=40 amount=1
-kerning first=98 second=33 amount=1
-kerning first=98 second=105 amount=1
-kerning first=98 second=100 amount=1
-kerning first=98 second=113 amount=2
-kerning first=98 second=112 amount=1
-kerning first=98 second=116 amount=2
-kerning first=98 second=103 amount=2
-kerning first=98 second=119 amount=2
-kerning first=98 second=118 amount=2
-kerning first=98 second=110 amount=2
-kerning first=98 second=120 amount=2
-kerning first=98 second=114 amount=2
-kerning first=98 second=117 amount=2
-kerning first=98 second=97 amount=3
-kerning first=98 second=111 amount=2
-kerning first=98 second=101 amount=2
-kerning first=98 second=99 amount=2
-kerning first=98 second=115 amount=2
-kerning first=98 second=35 amount=1
-kerning first=98 second=34 amount=-6
-kerning first=98 second=39 amount=-6
-kerning first=98 second=45 amount=2
-kerning first=98 second=46 amount=1
-kerning first=116 second=106 amount=3
-kerning first=116 second=104 amount=3
-kerning first=116 second=102 amount=4
-kerning first=116 second=93 amount=-3
-kerning first=116 second=48 amount=2
-kerning first=116 second=63 amount=2
-kerning first=116 second=108 amount=3
-kerning first=116 second=52 amount=-1
-kerning first=116 second=50 amount=-1
-kerning first=116 second=92 amount=-2
-kerning first=116 second=55 amount=-2
-kerning first=116 second=107 amount=3
-kerning first=116 second=49 amount=-5
-kerning first=116 second=40 amount=3
-kerning first=116 second=33 amount=4
-kerning first=116 second=54 amount=1
-kerning first=116 second=57 amount=1
-kerning first=116 second=105 amount=3
-kerning first=116 second=100 amount=1
-kerning first=116 second=113 amount=2
-kerning first=116 second=112 amount=3
-kerning first=116 second=98 amount=3
-kerning first=116 second=116 amount=4
-kerning first=116 second=103 amount=2
-kerning first=116 second=121 amount=5
-kerning first=116 second=59 amount=2
-kerning first=116 second=119 amount=6
-kerning first=116 second=118 amount=5
-kerning first=116 second=122 amount=2
-kerning first=116 second=110 amount=3
-kerning first=116 second=120 amount=4
-kerning first=116 second=114 amount=4
-kerning first=116 second=117 amount=3
-kerning first=116 second=109 amount=3
-kerning first=116 second=97 amount=3
-kerning first=116 second=111 amount=2
-kerning first=116 second=101 amount=1
-kerning first=116 second=99 amount=1
-kerning first=116 second=115 amount=2
-kerning first=116 second=58 amount=1
-kerning first=116 second=35 amount=3
-kerning first=116 second=34 amount=2
-kerning first=116 second=39 amount=2
-kerning first=116 second=45 amount=-3
-kerning first=116 second=32 amount=2
-kerning first=103 second=106 amount=5
-kerning first=103 second=104 amount=1
-kerning first=103 second=102 amount=2
-kerning first=103 second=53 amount=1
-kerning first=103 second=108 amount=2
-kerning first=103 second=52 amount=1
-kerning first=103 second=92 amount=-4
-kerning first=103 second=47 amount=2
-kerning first=103 second=107 amount=2
-kerning first=103 second=49 amount=-6
-kerning first=103 second=40 amount=1
-kerning first=103 second=41 amount=2
-kerning first=103 second=33 amount=1
-kerning first=103 second=105 amount=2
-kerning first=103 second=100 amount=2
-kerning first=103 second=113 amount=1
-kerning first=103 second=112 amount=1
-kerning first=103 second=98 amount=2
-kerning first=103 second=116 amount=3
-kerning first=103 second=103 amount=2
-kerning first=103 second=121 amount=2
-kerning first=103 second=59 amount=5
-kerning first=103 second=119 amount=3
-kerning first=103 second=118 amount=3
-kerning first=103 second=122 amount=2
-kerning first=103 second=110 amount=2
-kerning first=103 second=120 amount=3
-kerning first=103 second=114 amount=2
-kerning first=103 second=117 amount=2
-kerning first=103 second=97 amount=3
-kerning first=103 second=111 amount=2
-kerning first=103 second=101 amount=2
-kerning first=103 second=99 amount=2
-kerning first=103 second=115 amount=2
-kerning first=103 second=58 amount=2
-kerning first=103 second=35 amount=1
-kerning first=103 second=34 amount=-1
-kerning first=103 second=44 amount=4
-kerning first=103 second=45 amount=1
-kerning first=103 second=46 amount=2
-kerning first=121 second=106 amount=2
-kerning first=121 second=104 amount=2
-kerning first=121 second=102 amount=3
-kerning first=121 second=93 amount=-6
-kerning first=121 second=108 amount=2
-kerning first=121 second=50 amount=-3
-kerning first=121 second=92 amount=-4
-kerning first=121 second=47 amount=-4
-kerning first=121 second=55 amount=-5
-kerning first=121 second=51 amount=-2
-kerning first=121 second=107 amount=2
-kerning first=121 second=49 amount=-7
-kerning first=121 second=40 amount=2
-kerning first=121 second=41 amount=-1
-kerning first=121 second=33 amount=2
-kerning first=121 second=64 amount=-1
-kerning first=121 second=105 amount=2
-kerning first=121 second=112 amount=2
-kerning first=121 second=98 amount=2
-kerning first=121 second=116 amount=4
-kerning first=121 second=121 amount=3
-kerning first=121 second=59 amount=1
-kerning first=121 second=119 amount=4
-kerning first=121 second=118 amount=4
-kerning first=121 second=110 amount=2
-kerning first=121 second=120 amount=3
-kerning first=121 second=114 amount=3
-kerning first=121 second=117 amount=2
-kerning first=121 second=109 amount=2
-kerning first=121 second=97 amount=2
-kerning first=121 second=111 amount=1
-kerning first=121 second=35 amount=2
-kerning first=121 second=44 amount=-4
-kerning first=121 second=46 amount=-4
-kerning first=121 second=32 amount=3
-kerning first=59 second=106 amount=1
-kerning first=59 second=87 amount=-1
-kerning first=59 second=84 amount=-4
-kerning first=59 second=102 amount=1
-kerning first=59 second=93 amount=-2
-kerning first=59 second=89 amount=-4
-kerning first=59 second=53 amount=-1
-kerning first=59 second=86 amount=-2
-kerning first=59 second=74 amount=-5
-kerning first=59 second=63 amount=-2
-kerning first=59 second=56 amount=-2
-kerning first=59 second=52 amount=-2
-kerning first=59 second=92 amount=-5
-kerning first=59 second=71 amount=1
-kerning first=59 second=51 amount=-3
-kerning first=59 second=49 amount=-8
-kerning first=59 second=33 amount=1
-kerning first=59 second=64 amount=-2
-kerning first=59 second=54 amount=-1
-kerning first=59 second=57 amount=-1
-kerning first=59 second=67 amount=1
-kerning first=59 second=105 amount=1
-kerning first=59 second=112 amount=1
-kerning first=59 second=116 amount=2
-kerning first=59 second=121 amount=2
-kerning first=59 second=59 amount=1
-kerning first=59 second=119 amount=3
-kerning first=59 second=118 amount=3
-kerning first=59 second=110 amount=1
-kerning first=59 second=120 amount=1
-kerning first=59 second=114 amount=2
-kerning first=59 second=117 amount=1
-kerning first=59 second=34 amount=-2
-kerning first=59 second=39 amount=-1
-kerning first=59 second=44 amount=2
-kerning first=59 second=45 amount=-3
-kerning first=119 second=106 amount=3
-kerning first=119 second=104 amount=2
-kerning first=119 second=102 amount=2
-kerning first=119 second=93 amount=-6
-kerning first=119 second=63 amount=2
-kerning first=119 second=108 amount=3
-kerning first=119 second=50 amount=-2
-kerning first=119 second=92 amount=-3
-kerning first=119 second=47 amount=-3
-kerning first=119 second=55 amount=-5
-kerning first=119 second=107 amount=3
-kerning first=119 second=49 amount=-6
-kerning first=119 second=40 amount=2
-kerning first=119 second=33 amount=3
-kerning first=119 second=64 amount=-2
-kerning first=119 second=105 amount=3
-kerning first=119 second=112 amount=3
-kerning first=119 second=98 amount=2
-kerning first=119 second=116 amount=3
-kerning first=119 second=121 amount=4
-kerning first=119 second=59 amount=2
-kerning first=119 second=119 amount=5
-kerning first=119 second=118 amount=5
-kerning first=119 second=110 amount=3
-kerning first=119 second=120 amount=3
-kerning first=119 second=114 amount=3
-kerning first=119 second=117 amount=3
-kerning first=119 second=109 amount=2
-kerning first=119 second=35 amount=2
-kerning first=119 second=34 amount=2
-kerning first=119 second=39 amount=2
-kerning first=119 second=44 amount=-4
-kerning first=119 second=46 amount=-4
-kerning first=118 second=106 amount=4
-kerning first=118 second=104 amount=3
-kerning first=118 second=102 amount=4
-kerning first=118 second=93 amount=-5
-kerning first=118 second=48 amount=2
-kerning first=118 second=63 amount=2
-kerning first=118 second=108 amount=3
-kerning first=118 second=50 amount=-1
-kerning first=118 second=92 amount=-2
-kerning first=118 second=47 amount=-2
-kerning first=118 second=55 amount=-4
-kerning first=118 second=107 amount=3
-kerning first=118 second=49 amount=-5
-kerning first=118 second=40 amount=3
-kerning first=118 second=33 amount=4
-kerning first=118 second=54 amount=1
-kerning first=118 second=57 amount=1
-kerning first=118 second=105 amount=4
-kerning first=118 second=100 amount=2
-kerning first=118 second=113 amount=2
-kerning first=118 second=112 amount=4
-kerning first=118 second=98 amount=3
-kerning first=118 second=116 amount=4
-kerning first=118 second=103 amount=2
-kerning first=118 second=121 amount=5
-kerning first=118 second=59 amount=3
-kerning first=118 second=119 amount=6
-kerning first=118 second=118 amount=6
-kerning first=118 second=122 amount=2
-kerning first=118 second=110 amount=4
-kerning first=118 second=120 amount=4
-kerning first=118 second=114 amount=4
-kerning first=118 second=117 amount=4
-kerning first=118 second=109 amount=3
-kerning first=118 second=97 amount=3
-kerning first=118 second=111 amount=2
-kerning first=118 second=101 amount=1
-kerning first=118 second=99 amount=1
-kerning first=118 second=115 amount=2
-kerning first=118 second=58 amount=2
-kerning first=118 second=35 amount=3
-kerning first=118 second=34 amount=2
-kerning first=118 second=39 amount=3
-kerning first=118 second=44 amount=-4
-kerning first=118 second=46 amount=-3
-kerning first=118 second=32 amount=2
-kerning first=122 second=106 amount=2
-kerning first=122 second=104 amount=1
-kerning first=122 second=102 amount=3
-kerning first=122 second=108 amount=2
-kerning first=122 second=52 amount=-2
-kerning first=122 second=50 amount=1
-kerning first=122 second=92 amount=-4
-kerning first=122 second=47 amount=3
-kerning first=122 second=107 amount=2
-kerning first=122 second=49 amount=-6
-kerning first=122 second=40 amount=2
-kerning first=122 second=41 amount=2
-kerning first=122 second=33 amount=2
-kerning first=122 second=105 amount=2
-kerning first=122 second=100 amount=1
-kerning first=122 second=113 amount=1
-kerning first=122 second=112 amount=2
-kerning first=122 second=98 amount=2
-kerning first=122 second=116 amount=4
-kerning first=122 second=103 amount=1
-kerning first=122 second=121 amount=3
-kerning first=122 second=59 amount=2
-kerning first=122 second=119 amount=4
-kerning first=122 second=118 amount=4
-kerning first=122 second=122 amount=2
-kerning first=122 second=110 amount=2
-kerning first=122 second=120 amount=3
-kerning first=122 second=114 amount=2
-kerning first=122 second=117 amount=2
-kerning first=122 second=109 amount=1
-kerning first=122 second=97 amount=3
-kerning first=122 second=111 amount=1
-kerning first=122 second=99 amount=1
-kerning first=122 second=115 amount=2
-kerning first=122 second=58 amount=2
-kerning first=122 second=35 amount=2
-kerning first=122 second=44 amount=1
-kerning first=122 second=45 amount=-2
-kerning first=122 second=46 amount=3
-kerning first=122 second=32 amount=2
-kerning first=110 second=106 amount=2
-kerning first=110 second=104 amount=1
-kerning first=110 second=102 amount=2
-kerning first=110 second=63 amount=-3
-kerning first=110 second=108 amount=2
-kerning first=110 second=52 amount=1
-kerning first=110 second=50 amount=1
-kerning first=110 second=92 amount=-6
-kerning first=110 second=47 amount=3
-kerning first=110 second=55 amount=1
-kerning first=110 second=107 amount=2
-kerning first=110 second=49 amount=-6
-kerning first=110 second=40 amount=1
-kerning first=110 second=41 amount=2
-kerning first=110 second=33 amount=2
-kerning first=110 second=105 amount=2
-kerning first=110 second=100 amount=2
-kerning first=110 second=113 amount=1
-kerning first=110 second=112 amount=2
-kerning first=110 second=98 amount=2
-kerning first=110 second=116 amount=3
-kerning first=110 second=103 amount=2
-kerning first=110 second=121 amount=2
-kerning first=110 second=59 amount=2
-kerning first=110 second=119 amount=3
-kerning first=110 second=118 amount=3
-kerning first=110 second=122 amount=2
-kerning first=110 second=110 amount=2
-kerning first=110 second=120 amount=3
-kerning first=110 second=114 amount=2
-kerning first=110 second=117 amount=2
-kerning first=110 second=97 amount=3
-kerning first=110 second=111 amount=2
-kerning first=110 second=101 amount=1
-kerning first=110 second=99 amount=2
-kerning first=110 second=115 amount=2
-kerning first=110 second=58 amount=2
-kerning first=110 second=35 amount=1
-kerning first=110 second=34 amount=-2
-kerning first=110 second=39 amount=-3
-kerning first=110 second=45 amount=2
-kerning first=110 second=46 amount=3
-kerning first=120 second=106 amount=3
-kerning first=120 second=104 amount=2
-kerning first=120 second=102 amount=1
-kerning first=120 second=93 amount=-1
-kerning first=120 second=53 amount=-1
-kerning first=120 second=63 amount=1
-kerning first=120 second=108 amount=3
-kerning first=120 second=52 amount=-3
-kerning first=120 second=92 amount=-3
-kerning first=120 second=47 amount=2
-kerning first=120 second=107 amount=3
-kerning first=120 second=49 amount=-6
-kerning first=120 second=40 amount=2
-kerning first=120 second=33 amount=3
-kerning first=120 second=64 amount=-3
-kerning first=120 second=105 amount=3
-kerning first=120 second=112 amount=3
-kerning first=120 second=98 amount=2
-kerning first=120 second=116 amount=2
-kerning first=120 second=121 amount=4
-kerning first=120 second=59 amount=2
-kerning first=120 second=119 amount=5
-kerning first=120 second=118 amount=5
-kerning first=120 second=122 amount=1
-kerning first=120 second=110 amount=3
-kerning first=120 second=120 amount=3
-kerning first=120 second=114 amount=3
-kerning first=120 second=117 amount=3
-kerning first=120 second=109 amount=2
-kerning first=120 second=97 amount=1
-kerning first=120 second=35 amount=2
-kerning first=120 second=34 amount=1
-kerning first=120 second=39 amount=2
-kerning first=120 second=44 amount=2
-kerning first=120 second=45 amount=-3
-kerning first=120 second=46 amount=2
-kerning first=120 second=32 amount=2
-kerning first=114 second=106 amount=3
-kerning first=114 second=104 amount=2
-kerning first=114 second=102 amount=2
-kerning first=114 second=93 amount=-5
-kerning first=114 second=48 amount=1
-kerning first=114 second=63 amount=2
-kerning first=114 second=108 amount=3
-kerning first=114 second=52 amount=-2
-kerning first=114 second=50 amount=-2
-kerning first=114 second=92 amount=-3
-kerning first=114 second=47 amount=-6
-kerning first=114 second=55 amount=-4
-kerning first=114 second=107 amount=3
-kerning first=114 second=49 amount=-6
-kerning first=114 second=40 amount=3
-kerning first=114 second=33 amount=3
-kerning first=114 second=64 amount=-2
-kerning first=114 second=105 amount=3
-kerning first=114 second=113 amount=1
-kerning first=114 second=112 amount=3
-kerning first=114 second=98 amount=2
-kerning first=114 second=116 amount=2
-kerning first=114 second=103 amount=1
-kerning first=114 second=121 amount=4
-kerning first=114 second=59 amount=2
-kerning first=114 second=119 amount=5
-kerning first=114 second=118 amount=5
-kerning first=114 second=122 amount=1
-kerning first=114 second=110 amount=3
-kerning first=114 second=120 amount=3
-kerning first=114 second=114 amount=3
-kerning first=114 second=117 amount=3
-kerning first=114 second=109 amount=3
-kerning first=114 second=97 amount=1
-kerning first=114 second=111 amount=1
-kerning first=114 second=35 amount=3
-kerning first=114 second=34 amount=3
-kerning first=114 second=39 amount=3
-kerning first=114 second=44 amount=-7
-kerning first=114 second=45 amount=-4
-kerning first=114 second=46 amount=-6
-kerning first=117 second=106 amount=2
-kerning first=117 second=104 amount=1
-kerning first=117 second=102 amount=2
-kerning first=117 second=93 amount=-2
-kerning first=117 second=63 amount=-2
-kerning first=117 second=56 amount=-1
-kerning first=117 second=108 amount=2
-kerning first=117 second=52 amount=1
-kerning first=117 second=50 amount=-1
-kerning first=117 second=92 amount=-4
-kerning first=117 second=51 amount=-1
-kerning first=117 second=107 amount=2
-kerning first=117 second=49 amount=-7
-kerning first=117 second=40 amount=2
-kerning first=117 second=33 amount=2
-kerning first=117 second=105 amount=2
-kerning first=117 second=100 amount=2
-kerning first=117 second=113 amount=1
-kerning first=117 second=112 amount=2
-kerning first=117 second=98 amount=1
-kerning first=117 second=116 amount=4
-kerning first=117 second=103 amount=1
-kerning first=117 second=121 amount=3
-kerning first=117 second=59 amount=1
-kerning first=117 second=119 amount=4
-kerning first=117 second=118 amount=4
-kerning first=117 second=110 amount=2
-kerning first=117 second=120 amount=2
-kerning first=117 second=114 amount=2
-kerning first=117 second=117 amount=2
-kerning first=117 second=109 amount=1
-kerning first=117 second=97 amount=2
-kerning first=117 second=111 amount=2
-kerning first=117 second=101 amount=1
-kerning first=117 second=99 amount=1
-kerning first=117 second=115 amount=1
-kerning first=117 second=35 amount=2
-kerning first=117 second=34 amount=-4
-kerning first=117 second=39 amount=-4
-kerning first=117 second=44 amount=-1
-kerning first=117 second=45 amount=1
-kerning first=109 second=106 amount=2
-kerning first=109 second=104 amount=1
-kerning first=109 second=102 amount=1
-kerning first=109 second=63 amount=-3
-kerning first=109 second=56 amount=-2
-kerning first=109 second=108 amount=3
-kerning first=109 second=50 amount=1
-kerning first=109 second=92 amount=-6
-kerning first=109 second=47 amount=3
-kerning first=109 second=55 amount=1
-kerning first=109 second=51 amount=-1
-kerning first=109 second=107 amount=2
-kerning first=109 second=49 amount=-6
-kerning first=109 second=41 amount=2
-kerning first=109 second=33 amount=2
-kerning first=109 second=54 amount=-1
-kerning first=109 second=57 amount=-1
-kerning first=109 second=105 amount=2
-kerning first=109 second=100 amount=1
-kerning first=109 second=112 amount=2
-kerning first=109 second=98 amount=2
-kerning first=109 second=116 amount=3
-kerning first=109 second=121 amount=2
-kerning first=109 second=59 amount=4
-kerning first=109 second=119 amount=3
-kerning first=109 second=118 amount=3
-kerning first=109 second=122 amount=2
-kerning first=109 second=110 amount=2
-kerning first=109 second=120 amount=3
-kerning first=109 second=114 amount=2
-kerning first=109 second=97 amount=3
-kerning first=109 second=111 amount=1
-kerning first=109 second=115 amount=1
-kerning first=109 second=58 amount=2
-kerning first=109 second=34 amount=-1
-kerning first=109 second=39 amount=-2
-kerning first=109 second=44 amount=3
-kerning first=109 second=46 amount=3
-kerning first=97 second=106 amount=2
-kerning first=97 second=104 amount=1
-kerning first=97 second=48 amount=-2
-kerning first=97 second=63 amount=-4
-kerning first=97 second=108 amount=2
-kerning first=97 second=50 amount=1
-kerning first=97 second=92 amount=-7
-kerning first=97 second=47 amount=3
-kerning first=97 second=55 amount=1
-kerning first=97 second=107 amount=2
-kerning first=97 second=49 amount=-6
-kerning first=97 second=41 amount=2
-kerning first=97 second=33 amount=2
-kerning first=97 second=54 amount=-2
-kerning first=97 second=57 amount=-1
-kerning first=97 second=105 amount=2
-kerning first=97 second=100 amount=1
-kerning first=97 second=112 amount=2
-kerning first=97 second=98 amount=2
-kerning first=97 second=116 amount=1
-kerning first=97 second=103 amount=1
-kerning first=97 second=59 amount=2
-kerning first=97 second=119 amount=1
-kerning first=97 second=118 amount=1
-kerning first=97 second=122 amount=2
-kerning first=97 second=110 amount=2
-kerning first=97 second=120 amount=3
-kerning first=97 second=114 amount=2
-kerning first=97 second=117 amount=1
-kerning first=97 second=97 amount=3
-kerning first=97 second=111 amount=1
-kerning first=97 second=99 amount=1
-kerning first=97 second=115 amount=2
-kerning first=97 second=58 amount=2
-kerning first=97 second=34 amount=-5
-kerning first=97 second=39 amount=-5
-kerning first=97 second=44 amount=2
-kerning first=97 second=46 amount=3
-kerning first=111 second=106 amount=2
-kerning first=111 second=104 amount=2
-kerning first=111 second=102 amount=2
-kerning first=111 second=93 amount=-1
-kerning first=111 second=53 amount=1
-kerning first=111 second=63 amount=-2
-kerning first=111 second=108 amount=2
-kerning first=111 second=52 amount=2
-kerning first=111 second=92 amount=-6
-kerning first=111 second=47 amount=1
-kerning first=111 second=107 amount=2
-kerning first=111 second=49 amount=-7
-kerning first=111 second=40 amount=2
-kerning first=111 second=33 amount=2
-kerning first=111 second=64 amount=1
-kerning first=111 second=105 amount=2
-kerning first=111 second=100 amount=3
-kerning first=111 second=113 amount=2
-kerning first=111 second=112 amount=2
-kerning first=111 second=98 amount=2
-kerning first=111 second=116 amount=4
-kerning first=111 second=103 amount=3
-kerning first=111 second=121 amount=2
-kerning first=111 second=59 amount=1
-kerning first=111 second=119 amount=3
-kerning first=111 second=118 amount=3
-kerning first=111 second=110 amount=2
-kerning first=111 second=120 amount=2
-kerning first=111 second=114 amount=2
-kerning first=111 second=117 amount=3
-kerning first=111 second=109 amount=1
-kerning first=111 second=97 amount=3
-kerning first=111 second=111 amount=3
-kerning first=111 second=101 amount=2
-kerning first=111 second=99 amount=2
-kerning first=111 second=115 amount=2
-kerning first=111 second=35 amount=2
-kerning first=111 second=34 amount=-5
-kerning first=111 second=39 amount=-4
-kerning first=111 second=45 amount=2
-kerning first=111 second=46 amount=1
-kerning first=101 second=106 amount=3
-kerning first=101 second=104 amount=3
-kerning first=101 second=102 amount=3
-kerning first=101 second=53 amount=3
-kerning first=101 second=63 amount=-1
-kerning first=101 second=56 amount=1
-kerning first=101 second=108 amount=3
-kerning first=101 second=52 amount=2
-kerning first=101 second=50 amount=2
-kerning first=101 second=92 amount=-5
-kerning first=101 second=47 amount=4
-kerning first=101 second=55 amount=2
-kerning first=101 second=51 amount=1
-kerning first=101 second=107 amount=3
-kerning first=101 second=49 amount=-5
-kerning first=101 second=40 amount=2
-kerning first=101 second=41 amount=3
-kerning first=101 second=33 amount=3
-kerning first=101 second=64 amount=2
-kerning first=101 second=57 amount=1
-kerning first=101 second=105 amount=3
-kerning first=101 second=100 amount=3
-kerning first=101 second=113 amount=2
-kerning first=101 second=112 amount=3
-kerning first=101 second=98 amount=3
-kerning first=101 second=116 amount=4
-kerning first=101 second=103 amount=3
-kerning first=101 second=121 amount=3
-kerning first=101 second=59 amount=3
-kerning first=101 second=119 amount=4
-kerning first=101 second=118 amount=4
-kerning first=101 second=122 amount=3
-kerning first=101 second=110 amount=3
-kerning first=101 second=120 amount=4
-kerning first=101 second=114 amount=3
-kerning first=101 second=117 amount=3
-kerning first=101 second=109 amount=2
-kerning first=101 second=97 amount=4
-kerning first=101 second=111 amount=3
-kerning first=101 second=101 amount=3
-kerning first=101 second=99 amount=3
-kerning first=101 second=115 amount=4
-kerning first=101 second=58 amount=3
-kerning first=101 second=35 amount=2
-kerning first=101 second=34 amount=-2
-kerning first=101 second=39 amount=-2
-kerning first=101 second=44 amount=2
-kerning first=101 second=45 amount=2
-kerning first=101 second=46 amount=3
-kerning first=99 second=106 amount=2
-kerning first=99 second=104 amount=2
-kerning first=99 second=102 amount=2
-kerning first=99 second=93 amount=-2
-kerning first=99 second=53 amount=2
-kerning first=99 second=63 amount=-3
-kerning first=99 second=108 amount=2
-kerning first=99 second=52 amount=1
-kerning first=99 second=50 amount=-1
-kerning first=99 second=92 amount=-7
-kerning first=99 second=107 amount=2
-kerning first=99 second=49 amount=-7
-kerning first=99 second=40 amount=1
-kerning first=99 second=33 amount=2
-kerning first=99 second=105 amount=2
-kerning first=99 second=100 amount=2
-kerning first=99 second=113 amount=2
-kerning first=99 second=112 amount=2
-kerning first=99 second=98 amount=2
-kerning first=99 second=116 amount=3
-kerning first=99 second=103 amount=2
-kerning first=99 second=121 amount=1
-kerning first=99 second=119 amount=2
-kerning first=99 second=118 amount=2
-kerning first=99 second=110 amount=2
-kerning first=99 second=120 amount=1
-kerning first=99 second=114 amount=2
-kerning first=99 second=117 amount=2
-kerning first=99 second=97 amount=3
-kerning first=99 second=111 amount=2
-kerning first=99 second=101 amount=2
-kerning first=99 second=99 amount=2
-kerning first=99 second=115 amount=3
-kerning first=99 second=58 amount=1
-kerning first=99 second=35 amount=1
-kerning first=99 second=34 amount=-4
-kerning first=99 second=39 amount=-4
-kerning first=99 second=45 amount=1
-kerning first=99 second=46 amount=2
-kerning first=115 second=106 amount=2
-kerning first=115 second=104 amount=1
-kerning first=115 second=102 amount=2
-kerning first=115 second=53 amount=2
-kerning first=115 second=63 amount=-2
-kerning first=115 second=108 amount=2
-kerning first=115 second=92 amount=-6
-kerning first=115 second=47 amount=2
-kerning first=115 second=107 amount=2
-kerning first=115 second=49 amount=-6
-kerning first=115 second=40 amount=2
-kerning first=115 second=41 amount=2
-kerning first=115 second=33 amount=2
-kerning first=115 second=105 amount=2
-kerning first=115 second=100 amount=2
-kerning first=115 second=113 amount=2
-kerning first=115 second=112 amount=2
-kerning first=115 second=98 amount=2
-kerning first=115 second=116 amount=3
-kerning first=115 second=103 amount=2
-kerning first=115 second=121 amount=2
-kerning first=115 second=59 amount=1
-kerning first=115 second=119 amount=3
-kerning first=115 second=118 amount=3
-kerning first=115 second=122 amount=2
-kerning first=115 second=110 amount=2
-kerning first=115 second=120 amount=3
-kerning first=115 second=114 amount=2
-kerning first=115 second=117 amount=2
-kerning first=115 second=109 amount=2
-kerning first=115 second=97 amount=3
-kerning first=115 second=111 amount=2
-kerning first=115 second=101 amount=2
-kerning first=115 second=99 amount=2
-kerning first=115 second=115 amount=3
-kerning first=115 second=58 amount=1
-kerning first=115 second=35 amount=1
-kerning first=115 second=34 amount=-4
-kerning first=115 second=39 amount=-3
-kerning first=115 second=46 amount=2
-kerning first=58 second=87 amount=-2
-kerning first=58 second=77 amount=-1
-kerning first=58 second=84 amount=-5
-kerning first=58 second=93 amount=-3
-kerning first=58 second=89 amount=-4
-kerning first=58 second=65 amount=-1
-kerning first=58 second=53 amount=-1
-kerning first=58 second=86 amount=-2
-kerning first=58 second=48 amount=-1
-kerning first=58 second=74 amount=-4
-kerning first=58 second=63 amount=-3
-kerning first=58 second=56 amount=-2
-kerning first=58 second=52 amount=-2
-kerning first=58 second=50 amount=-2
-kerning first=58 second=92 amount=-6
-kerning first=58 second=55 amount=-2
-kerning first=58 second=51 amount=-3
-kerning first=58 second=49 amount=-8
-kerning first=58 second=64 amount=-2
-kerning first=58 second=54 amount=-2
-kerning first=58 second=57 amount=-2
-kerning first=58 second=116 amount=2
-kerning first=58 second=121 amount=2
-kerning first=58 second=119 amount=3
-kerning first=58 second=118 amount=3
-kerning first=58 second=120 amount=1
-kerning first=58 second=114 amount=1
-kerning first=58 second=58 amount=-1
-kerning first=58 second=34 amount=-5
-kerning first=58 second=39 amount=-1
-kerning first=58 second=45 amount=-3
-kerning first=35 second=106 amount=1
-kerning first=35 second=81 amount=1
-kerning first=35 second=102 amount=2
-kerning first=35 second=93 amount=-5
-kerning first=35 second=90 amount=-5
-kerning first=35 second=88 amount=-3
-kerning first=35 second=89 amount=-2
-kerning first=35 second=65 amount=-3
-kerning first=35 second=53 amount=-1
-kerning first=35 second=85 amount=1
-kerning first=35 second=72 amount=1
-kerning first=35 second=74 amount=-2
-kerning first=35 second=63 amount=2
-kerning first=35 second=56 amount=-1
-kerning first=35 second=108 amount=1
-kerning first=35 second=50 amount=-3
-kerning first=35 second=92 amount=-3
-kerning first=35 second=47 amount=-5
-kerning first=35 second=71 amount=2
-kerning first=35 second=55 amount=-3
-kerning first=35 second=51 amount=-1
-kerning first=35 second=107 amount=1
-kerning first=35 second=49 amount=-7
-kerning first=35 second=40 amount=1
-kerning first=35 second=41 amount=-2
-kerning first=35 second=33 amount=2
-kerning first=35 second=79 amount=1
-kerning first=35 second=57 amount=-1
-kerning first=35 second=67 amount=2
-kerning first=35 second=105 amount=1
-kerning first=35 second=113 amount=1
-kerning first=35 second=112 amount=1
-kerning first=35 second=116 amount=3
-kerning first=35 second=103 amount=1
-kerning first=35 second=121 amount=3
-kerning first=35 second=119 amount=3
-kerning first=35 second=118 amount=3
-kerning first=35 second=122 amount=-1
-kerning first=35 second=110 amount=1
-kerning first=35 second=120 amount=2
-kerning first=35 second=114 amount=1
-kerning first=35 second=117 amount=2
-kerning first=35 second=109 amount=1
-kerning first=35 second=97 amount=1
-kerning first=35 second=111 amount=1
-kerning first=35 second=99 amount=1
-kerning first=35 second=34 amount=1
-kerning first=35 second=39 amount=1
-kerning first=35 second=44 amount=-10
-kerning first=35 second=46 amount=-5
-kerning first=42 second=93 amount=2
-kerning first=42 second=83 amount=3
-kerning first=42 second=113 amount=2
-kerning first=42 second=103 amount=2
-kerning first=34 second=106 amount=1
-kerning first=34 second=87 amount=2
-kerning first=34 second=84 amount=1
-kerning first=34 second=102 amount=-3
-kerning first=34 second=93 amount=2
-kerning first=34 second=90 amount=-2
-kerning first=34 second=88 amount=2
-kerning first=34 second=89 amount=1
-kerning first=34 second=65 amount=-6
-kerning first=34 second=75 amount=2
-kerning first=34 second=53 amount=-2
-kerning first=34 second=86 amount=3
-kerning first=34 second=85 amount=2
-kerning first=34 second=48 amount=-1
-kerning first=34 second=76 amount=2
-kerning first=34 second=74 amount=-9
-kerning first=34 second=63 amount=2
-kerning first=34 second=56 amount=-1
-kerning first=34 second=108 amount=2
-kerning first=34 second=82 amount=2
-kerning first=34 second=52 amount=-5
-kerning first=34 second=50 amount=-2
-kerning first=34 second=92 amount=3
-kerning first=34 second=47 amount=-3
-kerning first=34 second=51 amount=-1
-kerning first=34 second=107 amount=1
-kerning first=34 second=66 amount=2
-kerning first=34 second=80 amount=1
-kerning first=34 second=49 amount=-3
-kerning first=34 second=41 amount=1
-kerning first=34 second=73 amount=2
-kerning first=34 second=33 amount=2
-kerning first=34 second=64 amount=-7
-kerning first=34 second=54 amount=-2
-kerning first=34 second=57 amount=-1
-kerning first=34 second=105 amount=1
-kerning first=34 second=100 amount=-4
-kerning first=34 second=113 amount=-3
-kerning first=34 second=112 amount=1
-kerning first=34 second=98 amount=2
-kerning first=34 second=116 amount=-3
-kerning first=34 second=103 amount=-3
-kerning first=34 second=121 amount=3
-kerning first=34 second=119 amount=2
-kerning first=34 second=118 amount=3
-kerning first=34 second=122 amount=-2
-kerning first=34 second=110 amount=1
-kerning first=34 second=120 amount=2
-kerning first=34 second=117 amount=1
-kerning first=34 second=109 amount=1
-kerning first=34 second=97 amount=-3
-kerning first=34 second=111 amount=-2
-kerning first=34 second=101 amount=-4
-kerning first=34 second=99 amount=-3
-kerning first=34 second=115 amount=-3
-kerning first=34 second=35 amount=-3
-kerning first=34 second=34 amount=2
-kerning first=34 second=39 amount=2
-kerning first=34 second=44 amount=-5
-kerning first=34 second=45 amount=-3
-kerning first=34 second=46 amount=-4
-kerning first=39 second=87 amount=3
-kerning first=39 second=84 amount=2
-kerning first=39 second=104 amount=1
-kerning first=39 second=102 amount=-2
-kerning first=39 second=93 amount=2
-kerning first=39 second=90 amount=-2
-kerning first=39 second=88 amount=3
-kerning first=39 second=89 amount=2
-kerning first=39 second=65 amount=-6
-kerning first=39 second=75 amount=2
-kerning first=39 second=78 amount=1
-kerning first=39 second=53 amount=-1
-kerning first=39 second=86 amount=3
-kerning first=39 second=85 amount=2
-kerning first=39 second=68 amount=1
-kerning first=39 second=76 amount=2
-kerning first=39 second=74 amount=-9
-kerning first=39 second=63 amount=3
-kerning first=39 second=69 amount=1
-kerning first=39 second=108 amount=2
-kerning first=39 second=82 amount=2
-kerning first=39 second=52 amount=-4
-kerning first=39 second=50 amount=-2
-kerning first=39 second=92 amount=3
-kerning first=39 second=47 amount=-9
-kerning first=39 second=107 amount=2
-kerning first=39 second=66 amount=2
-kerning first=39 second=80 amount=2
-kerning first=39 second=49 amount=-3
-kerning first=39 second=41 amount=2
-kerning first=39 second=73 amount=2
-kerning first=39 second=33 amount=2
-kerning first=39 second=64 amount=-10
-kerning first=39 second=54 amount=-1
-kerning first=39 second=105 amount=2
-kerning first=39 second=100 amount=-4
-kerning first=39 second=113 amount=-4
-kerning first=39 second=98 amount=2
-kerning first=39 second=116 amount=-3
-kerning first=39 second=103 amount=-1
-kerning first=39 second=121 amount=3
-kerning first=39 second=59 amount=-2
-kerning first=39 second=118 amount=1
-kerning first=39 second=122 amount=-1
-kerning first=39 second=114 amount=-2
-kerning first=39 second=97 amount=-3
-kerning first=39 second=111 amount=-4
-kerning first=39 second=101 amount=-4
-kerning first=39 second=99 amount=-4
-kerning first=39 second=115 amount=-4
-kerning first=39 second=58 amount=-2
-kerning first=39 second=35 amount=-2
-kerning first=39 second=34 amount=2
-kerning first=39 second=39 amount=3
-kerning first=39 second=44 amount=-6
-kerning first=39 second=45 amount=-4
-kerning first=39 second=46 amount=-2
-kerning first=44 second=106 amount=3
-kerning first=44 second=87 amount=-5
-kerning first=44 second=81 amount=-4
-kerning first=44 second=84 amount=-3
-kerning first=44 second=102 amount=-2
-kerning first=44 second=90 amount=3
-kerning first=44 second=88 amount=3
-kerning first=44 second=89 amount=-6
-kerning first=44 second=65 amount=2
-kerning first=44 second=86 amount=-5
-kerning first=44 second=85 amount=-3
-kerning first=44 second=83 amount=-2
-kerning first=44 second=48 amount=-3
-kerning first=44 second=74 amount=-3
-kerning first=44 second=63 amount=-4
-kerning first=44 second=56 amount=-2
-kerning first=44 second=108 amount=2
-kerning first=44 second=52 amount=-5
-kerning first=44 second=50 amount=2
-kerning first=44 second=92 amount=-9
-kerning first=44 second=47 amount=3
-kerning first=44 second=71 amount=-3
-kerning first=44 second=55 amount=2
-kerning first=44 second=51 amount=-2
-kerning first=44 second=107 amount=2
-kerning first=44 second=80 amount=2
-kerning first=44 second=70 amount=1
-kerning first=44 second=49 amount=-6
-kerning first=44 second=41 amount=2
-kerning first=44 second=73 amount=1
-kerning first=44 second=33 amount=1
-kerning first=44 second=64 amount=-2
-kerning first=44 second=79 amount=-3
-kerning first=44 second=54 amount=-4
-kerning first=44 second=57 amount=-3
-kerning first=44 second=105 amount=1
-kerning first=44 second=113 amount=-2
-kerning first=44 second=98 amount=2
-kerning first=44 second=116 amount=-3
-kerning first=44 second=121 amount=-4
-kerning first=44 second=59 amount=4
-kerning first=44 second=119 amount=-1
-kerning first=44 second=118 amount=-3
-kerning first=44 second=122 amount=3
-kerning first=44 second=110 amount=1
-kerning first=44 second=120 amount=3
-kerning first=44 second=114 amount=2
-kerning first=44 second=109 amount=-2
-kerning first=44 second=97 amount=2
-kerning first=44 second=58 amount=2
-kerning first=44 second=35 amount=-5
-kerning first=44 second=34 amount=-5
-kerning first=44 second=39 amount=-8
-kerning first=44 second=44 amount=2
-kerning first=44 second=45 amount=-5
-kerning first=44 second=46 amount=2
-kerning first=45 second=87 amount=-2
-kerning first=45 second=81 amount=2
-kerning first=45 second=84 amount=-4
-kerning first=45 second=93 amount=-8
-kerning first=45 second=90 amount=-5
-kerning first=45 second=88 amount=-5
-kerning first=45 second=89 amount=-6
-kerning first=45 second=65 amount=-2
-kerning first=45 second=53 amount=-3
-kerning first=45 second=86 amount=-2
-kerning first=45 second=83 amount=-3
-kerning first=45 second=72 amount=2
-kerning first=45 second=63 amount=-2
-kerning first=45 second=56 amount=-4
-kerning first=45 second=108 amount=1
-kerning first=45 second=52 amount=2
-kerning first=45 second=50 amount=-9
-kerning first=45 second=92 amount=-8
-kerning first=45 second=47 amount=-4
-kerning first=45 second=71 amount=2
-kerning first=45 second=55 amount=-5
-kerning first=45 second=51 amount=-4
-kerning first=45 second=107 amount=1
-kerning first=45 second=49 amount=-8
-kerning first=45 second=40 amount=2
-kerning first=45 second=41 amount=-2
-kerning first=45 second=33 amount=1
-kerning first=45 second=79 amount=1
-kerning first=45 second=57 amount=-3
-kerning first=45 second=67 amount=2
-kerning first=45 second=105 amount=1
-kerning first=45 second=100 amount=2
-kerning first=45 second=113 amount=2
-kerning first=45 second=116 amount=2
-kerning first=45 second=103 amount=2
-kerning first=45 second=119 amount=2
-kerning first=45 second=118 amount=1
-kerning first=45 second=122 amount=-4
-kerning first=45 second=110 amount=1
-kerning first=45 second=120 amount=-1
-kerning first=45 second=114 amount=1
-kerning first=45 second=117 amount=2
-kerning first=45 second=111 amount=2
-kerning first=45 second=101 amount=1
-kerning first=45 second=99 amount=2
-kerning first=45 second=58 amount=-1
-kerning first=45 second=35 amount=2
-kerning first=45 second=34 amount=-3
-kerning first=45 second=39 amount=-2
-kerning first=45 second=44 amount=-6
-kerning first=45 second=45 amount=1
-kerning first=45 second=46 amount=-6
-kerning first=46 second=106 amount=1
-kerning first=46 second=87 amount=-4
-kerning first=46 second=84 amount=-3
-kerning first=46 second=104 amount=1
-kerning first=46 second=102 amount=-2
-kerning first=46 second=90 amount=3
-kerning first=46 second=88 amount=3
-kerning first=46 second=89 amount=-5
-kerning first=46 second=65 amount=2
-kerning first=46 second=53 amount=2
-kerning first=46 second=86 amount=-2
-kerning first=46 second=85 amount=-1
-kerning first=46 second=48 amount=-2
-kerning first=46 second=74 amount=-1
-kerning first=46 second=63 amount=-4
-kerning first=46 second=108 amount=2
-kerning first=46 second=52 amount=-6
-kerning first=46 second=50 amount=2
-kerning first=46 second=92 amount=-11
-kerning first=46 second=47 amount=3
-kerning first=46 second=55 amount=2
-kerning first=46 second=107 amount=2
-kerning first=46 second=80 amount=1
-kerning first=46 second=49 amount=-6
-kerning first=46 second=41 amount=2
-kerning first=46 second=73 amount=1
-kerning first=46 second=33 amount=1
-kerning first=46 second=79 amount=-1
-kerning first=46 second=54 amount=-2
-kerning first=46 second=105 amount=2
-kerning first=46 second=100 amount=2
-kerning first=46 second=112 amount=1
-kerning first=46 second=98 amount=1
-kerning first=46 second=116 amount=-3
-kerning first=46 second=103 amount=1
-kerning first=46 second=121 amount=-3
-kerning first=46 second=59 amount=2
-kerning first=46 second=118 amount=-2
-kerning first=46 second=122 amount=2
-kerning first=46 second=110 amount=2
-kerning first=46 second=120 amount=3
-kerning first=46 second=114 amount=2
-kerning first=46 second=117 amount=1
-kerning first=46 second=97 amount=3
-kerning first=46 second=111 amount=1
-kerning first=46 second=101 amount=1
-kerning first=46 second=99 amount=2
-kerning first=46 second=115 amount=3
-kerning first=46 second=58 amount=2
-kerning first=46 second=35 amount=-9
-kerning first=46 second=34 amount=-9
-kerning first=46 second=39 amount=-2
-kerning first=46 second=44 amount=1
-kerning first=46 second=45 amount=-4
-kerning first=46 second=46 amount=2
-kerning first=126 second=33 amount=-2
-kerning first=126 second=32 amount=-3
-kerning first=32 second=53 amount=-2
-kerning first=32 second=83 amount=1
-kerning first=32 second=123 amount=2
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.xnb
deleted file mode 100644
index 87d3c144..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/markerFelt.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.plist
deleted file mode 100644
index 55cdc217..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.plist
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- version
- 1
- textureFilename
- tuffy_bold_italic-charmap.png
- itemHeight
- 128
- itemWidth
- 96
- firstChar
- 32
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.xnb
deleted file mode 100644
index d8431907..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/hd/fonts/tuffy_bold_italic-charmap.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.plist
deleted file mode 100644
index 414f1b81..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.plist
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
- frames
-
- grossini_dance_generic_01.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {51, 109}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{2, 125}, {121, 85}}
- textureRotated
-
-
- grossini_dance_generic_02.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {63, 109}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{299, 2}, {85, 121}}
- textureRotated
-
-
- grossini_dance_generic_03.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {63, 109}}
- spriteOffset
- {-6, -1}
- spriteSize
- {63, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{2, 236}, {109, 63}}
- textureRotated
-
-
- grossini_dance_generic_04.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {75, 109}}
- spriteOffset
- {0, -1}
- spriteSize
- {75, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{202, 125}, {75, 109}}
- textureRotated
-
-
- grossini_dance_generic_05.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {75, 109}}
- spriteOffset
- {0, -1}
- spriteSize
- {75, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{125, 125}, {75, 109}}
- textureRotated
-
-
- grossini_dance_generic_06.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {63, 109}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{212, 2}, {85, 121}}
- textureRotated
-
-
- grossini_dance_generic_07.png
-
- aliases
-
- spriteColorRect
- {{5, 7}, {63, 109}}
- spriteOffset
- {-6, -1}
- spriteSize
- {63, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{279, 125}, {63, 109}}
- textureRotated
-
-
- grossini_dance_generic_08.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {51, 109}}
- spriteOffset
- {0, -1}
- spriteSize
- {51, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{409, 125}, {51, 109}}
- textureRotated
-
-
- grossini_dance_generic_09.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {51, 109}}
- spriteOffset
- {0, -1}
- spriteSize
- {51, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{224, 236}, {109, 51}}
- textureRotated
-
-
- grossini_dance_generic_10.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {63, 109}}
- spriteOffset
- {6, -1}
- spriteSize
- {63, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{344, 125}, {63, 109}}
- textureRotated
-
-
- grossini_dance_generic_11.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {63, 109}}
- spriteOffset
- {6, -1}
- spriteSize
- {63, 109}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{113, 236}, {109, 63}}
- textureRotated
-
-
- grossini_dance_generic_12.png
-
- aliases
-
- spriteColorRect
- {{17, 10}, {51, 107}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{2, 2}, {85, 121}}
- textureRotated
-
-
- grossini_dance_generic_13.png
-
- aliases
-
- spriteColorRect
- {{17, 7}, {51, 109}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{386, 2}, {121, 85}}
- textureRotated
-
-
- grossini_dance_generic_14.png
-
- aliases
-
- spriteColorRect
- {{17, 10}, {51, 107}}
- spriteOffset
- {0, 0}
- spriteSize
- {85, 121}
- spriteSourceSize
- {85, 121}
- spriteTrimmed
-
- textureRect
- {{89, 2}, {121, 85}}
- textureRotated
-
-
-
- metadata
-
- format
- 3
- size
- {512, 512}
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.xnb
deleted file mode 100644
index c1861be2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini-generic.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.plist b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.plist
deleted file mode 100644
index fa2810d2..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.plist
+++ /dev/null
@@ -1,197 +0,0 @@
-
-
-
- frames
-
- grossini_dance_01.png
-
- frame
- {{2, 125}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_02.png
-
- frame
- {{299, 2}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_03.png
-
- frame
- {{2, 236}, {63, 109}}
- offset
- {-6, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_04.png
-
- frame
- {{202, 125}, {75, 109}}
- offset
- {0, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_05.png
-
- frame
- {{125, 125}, {75, 109}}
- offset
- {0, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_06.png
-
- frame
- {{212, 2}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_07.png
-
- frame
- {{279, 125}, {63, 109}}
- offset
- {-6, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_08.png
-
- frame
- {{409, 125}, {51, 109}}
- offset
- {0, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_09.png
-
- frame
- {{224, 236}, {51, 109}}
- offset
- {0, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_10.png
-
- frame
- {{344, 125}, {63, 109}}
- offset
- {6, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_11.png
-
- frame
- {{113, 236}, {63, 109}}
- offset
- {6, -1}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_12.png
-
- frame
- {{2, 2}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_13.png
-
- frame
- {{386, 2}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
- grossini_dance_14.png
-
- frame
- {{89, 2}, {85, 121}}
- offset
- {0, 0}
- rotated
-
- sourceColorRect
- {85, 121}
- sourceSize
- {85, 121}
-
-
- metadata
-
- format
- 2
- size
- {512, 512}
-
-
-
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.xnb b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.xnb
deleted file mode 100644
index c1861be2..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Content/zwoptex/grossini.xnb and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Package.appxmanifest b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Package.appxmanifest
deleted file mode 100644
index 03d2200f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Package.appxmanifest
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
- cocos2d-mono.Tests.Uwp
- brand
- Assets\StoreLogo.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/AssemblyInfo.cs b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/AssemblyInfo.cs
deleted file mode 100644
index 145916cc..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Cocos2d-Mono Tests for Core UWP")]
-[assembly: AssemblyDescription("Cocos2D-Mono Tests for Core UWP (Windows Universal)")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Broken Walls Studios")]
-[assembly: AssemblyProduct("cocos2d-mono.Tests.Core.Uwp")]
-[assembly: AssemblyCopyright("Copyright © 2020 Cocos2D-Mono Team; Broken Walls Studios, LLC.")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-[assembly: ComVisible(false)]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.3.8.0")]
-[assembly: AssemblyFileVersion("2.3.8.0")]
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/Default.rd.xml b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/Default.rd.xml
deleted file mode 100644
index 80a960ce..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/Properties/Default.rd.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/cocos2d-mono.Tests.Core.Uwp.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/cocos2d-mono.Tests.Core.Uwp.csproj
deleted file mode 100644
index 06271368..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Uwp/cocos2d-mono.Tests.Core.Uwp.csproj
+++ /dev/null
@@ -1,1547 +0,0 @@
-
-
-
-
- Debug
- x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}
- AppContainerExe
- Properties
- cocos2d_mono.Tests.Core.Uwp
- cocos2d-mono.Tests.Core.Uwp
- en-US
- UAP
- 10.0.22621.0
- 10.0.16299.0
- 14
- true
- 512
- {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- cocos2d-mono.Tests.Uwp_TemporaryKey.pfx
- WindowsStoreApp
-
-
- true
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- ;2008
- full
- ARM
- false
- prompt
- true
-
-
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- ARM
- false
- prompt
- true
- true
-
-
- true
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- ;2008
- full
- x64
- false
- prompt
- true
-
-
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- x64
- false
- prompt
- true
- true
-
-
- true
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;WINDOWS;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP;CODE_ANALYSIS
- ;2008
- full
- x86
- false
- prompt
- true
-
-
- bin\Core\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- x86
- false
- prompt
- true
- true
-
-
- PackageReference
-
-
-
-
-
-
- Designer
-
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
-
-
-
-
-
-
-
-
-
- Always
-
-
- Always
-
-
-
-
-
- 6.2.7
-
-
-
-
-
- {acac14a0-8c2b-413c-875f-a2ad3c647800}
- box2d.Uwp
-
-
- {11382845-c53d-4d81-8f2e-a7f88c9bdad6}
- cocos2d.Core.Uwp
-
-
-
-
- Always
-
-
- Always
-
-
-
-
- 14.0
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/.config/dotnet-tools.json
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/cocos2d-mono.Tests.Core.Windows.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/cocos2d-mono.Tests.Core.Windows.csproj
index 2bf7f0cc..e0110b99 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/cocos2d-mono.Tests.Core.Windows.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.Windows/cocos2d-mono.Tests.Core.Windows.csproj
@@ -10,7 +10,7 @@
cocos2d-mono.Tests.Core.Windows
512
Windows
- net7.0-windows
+ net8.0-windows
true
@@ -70,7 +70,7 @@
-
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.iOS/cocos2d-mono.Tests.Core.iOS.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.iOS/cocos2d-mono.Tests.Core.iOS.csproj
index c6fa794a..492ff15c 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.iOS/cocos2d-mono.Tests.Core.iOS.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Core.iOS/cocos2d-mono.Tests.Core.iOS.csproj
@@ -4,7 +4,7 @@
iPhoneSimulator
{CE272322-EEA8-4CDF-86E9-4FAA85D0BB98}
Exe
- net7.0-ios
+ net8.0-ios
11.0
cocos2d_mono.Tests.Core.iOS
Resources
@@ -69,7 +69,7 @@
-
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/.config/dotnet-tools.json
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
index 69a48f5e..7036e018 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.Core.DesktopGL.csproj
@@ -10,7 +10,7 @@
cocos2d-mono.Tests.Core.DesktopGL
512
DesktopGL
- net7.0
+ net8.0
@@ -70,7 +70,7 @@
-
+
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.DesktopGL.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.DesktopGL.csproj
index a4981aa1..c505e52e 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.DesktopGL.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.DesktopGL/cocos2d-mono.Tests.DesktopGL.csproj
@@ -10,7 +10,7 @@
cocos2d-mono.Tests.DesktopGL
512
DesktopGL
- net7.0
+ net8.0
@@ -66,8 +66,8 @@
-
-
+
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/.config/dotnet-tools.json
deleted file mode 100644
index efabe22e..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/.config/dotnet-tools.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "version": 1,
- "isRoot": true,
- "tools": {
- "dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
- },
- "dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
- },
- "dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
- },
- "dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
- },
- "dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/LockScreenLogo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/LockScreenLogo.scale-200.png
deleted file mode 100644
index 735f57ad..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/LockScreenLogo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/SplashScreen.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/SplashScreen.scale-200.png
deleted file mode 100644
index 023e7f1f..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/SplashScreen.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square150x150Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square150x150Logo.scale-200.png
deleted file mode 100644
index af49fec1..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square150x150Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.scale-200.png
deleted file mode 100644
index ce342a2e..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
deleted file mode 100644
index f6c02ce9..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/StoreLogo.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/StoreLogo.png
deleted file mode 100644
index 7385b56c..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/StoreLogo.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Wide310x150Logo.scale-200.png b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Wide310x150Logo.scale-200.png
deleted file mode 100644
index 288995b3..00000000
Binary files a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Assets/Wide310x150Logo.scale-200.png and /dev/null differ
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Package.appxmanifest b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Package.appxmanifest
deleted file mode 100644
index 03d2200f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Package.appxmanifest
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
- cocos2d-mono.Tests.Uwp
- brand
- Assets\StoreLogo.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/AssemblyInfo.cs b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/AssemblyInfo.cs
deleted file mode 100644
index 404758a2..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Cocos2d-Mono Tests for UWP")]
-[assembly: AssemblyDescription("Cocos2D-Mono Tests for UWP (Windows Universal)")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Broken Walls Studios")]
-[assembly: AssemblyProduct("cocos2d-mono.Tests.Uwp")]
-[assembly: AssemblyCopyright("Copyright © 2020 Cocos2D-Mono Team; Broken Walls Studios, LLC.")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-[assembly: ComVisible(false)]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.3.8.0")]
-[assembly: AssemblyFileVersion("2.3.8.0")]
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/Default.rd.xml b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/Default.rd.xml
deleted file mode 100644
index 80a960ce..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/Properties/Default.rd.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.csproj
deleted file mode 100644
index f689da4f..00000000
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Uwp/cocos2d-mono.Tests.Uwp.csproj
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
-
- Debug
- x86
- {40C1898D-DD60-4112-BBCA-39FECD44C895}
- AppContainerExe
- Properties
- cocos2d_mono.Tests.Uwp
- cocos2d-mono.Tests.Uwp
- en-US
- UAP
- 10.0.22621.0
- 10.0.16299.0
- 14
- true
- 512
- {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- cocos2d-mono.Tests.Uwp_TemporaryKey.pfx
- WindowsStoreApp
-
-
- true
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- ;2008
- full
- ARM
- false
- prompt
- true
-
-
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- ARM
- false
- prompt
- true
- true
-
-
- true
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- ;2008
- full
- x64
- false
- prompt
- true
-
-
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- x64
- false
- prompt
- true
- true
-
-
- true
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;DEBUG;WINDOWS;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP;CODE_ANALYSIS
- ;2008
- full
- x86
- false
- prompt
- true
-
-
- bin\WindowsUniversal\$(Platform)\$(Configuration)\
- TRACE;NETFX_CORE;WINDOWS_UAP;CODE_ANALYSIS;WINDOWS_UWP
- true
- ;2008
- pdbonly
- x86
- false
- prompt
- true
- true
-
-
- PackageReference
-
-
-
-
-
-
- Designer
-
-
- Content\Content.mgcb
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 6.2.7
-
-
-
-
-
-
- {acac14a0-8c2b-413c-875f-a2ad3c647800}
- box2d.Uwp
-
-
- {11382845-c53d-4d81-8f2e-a7f88c9bdad6}
- cocos2d.Uwp
-
-
-
-
-
- 14.0
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/.config/dotnet-tools.json
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/cocos2d-mono.Tests.Windows.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/cocos2d-mono.Tests.Windows.csproj
index 4f0ce0ec..7da4d38a 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/cocos2d-mono.Tests.Windows.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.Windows/cocos2d-mono.Tests.Windows.csproj
@@ -1,4 +1,4 @@
-
+
Debug
AnyCPU
@@ -10,7 +10,7 @@
cocos2d-mono.Tests.Windows
512
Windows
- net7.0-windows
+ net8.0-windows
true
@@ -54,7 +54,6 @@
-
@@ -73,8 +72,7 @@
-
-
+
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/.config/dotnet-tools.json b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/.config/dotnet-tools.json
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/cocos2d-mono.Tests.iOS.csproj b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/cocos2d-mono.Tests.iOS.csproj
index fe6970c1..5b32e5ba 100644
--- a/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/cocos2d-mono.Tests.iOS.csproj
+++ b/Tests/cocos2d-mono.Tests/cocos2d-mono.Tests.iOS/cocos2d-mono.Tests.iOS.csproj
@@ -4,7 +4,7 @@
iPhoneSimulator
{CE272322-EEA8-4CDF-86E9-4FAA85D0BB98}
Exe
- net7.0-ios
+ net8.0-ios
11.0
cocos2d_mono.Tests.iOS
Resources
@@ -73,8 +73,8 @@
-
-
+
+
diff --git a/Tools/clean_builds.ps1 b/Tools/clean_builds.ps1
index c936f5c7..56a11bf6 100644
--- a/Tools/clean_builds.ps1
+++ b/Tools/clean_builds.ps1
@@ -4,14 +4,11 @@ $BuildPaths = "..\cocos2d-mono\cocos2d\cocos2d.Android\bin", "..\cocos2d-mono\co
"..\cocos2d-mono\cocos2d\cocos2d.Core.iOS\bin", "..\cocos2d-mono\cocos2d\cocos2d.Core.iOS\obj",
"..\cocos2d-mono\cocos2d\cocos2d.DesktopGL\bin", "..\cocos2d-mono\cocos2d\cocos2d.DesktopGL\obj",
"..\cocos2d-mono\cocos2d\cocos2d.Core.DesktopGL\bin", "..\cocos2d-mono\cocos2d\cocos2d.Core.DesktopGL\obj",
- "..\cocos2d-mono\cocos2d\cocos2d.UWP\bin", "..\cocos2d-mono\cocos2d\cocos2d.UWP\obj",
- "..\cocos2d-mono\cocos2d\cocos2d.Core.UWP\bin", "..\cocos2d-mono\cocos2d\cocos2d.Core.UWP\obj",
"..\cocos2d-mono\cocos2d\cocos2d.Windows\bin", "..\cocos2d-mono\cocos2d\cocos2d.Windows\obj",
"..\cocos2d-mono\cocos2d\cocos2d.Core.Windows\bin", "..\cocos2d-mono\cocos2d\cocos2d.Core.Windows\obj",
"..\cocos2d-mono\box2d\box2d.Android\bin", "..\cocos2d-mono\box2d\box2d.Android\obj",
"..\cocos2d-mono\box2d\box2d.iOS\bin", "..\cocos2d-mono\box2d\box2d.iOS\obj",
"..\cocos2d-mono\box2d\box2d.DesktopGL\bin", "..\cocos2d-mono\box2d\box2d.DesktopGL\obj",
- "..\cocos2d-mono\box2d\box2d.UWP\bin", "..\cocos2d-mono\box2d\box2d.UWP\obj",
"..\cocos2d-mono\box2d\box2d.Windows\bin", "..\cocos2d-mono\box2d\box2d.Windows\obj"
foreach($BuildPath in $BuildPaths)
{
diff --git a/box2d/box2d.Android/box2d.Android.csproj b/box2d/box2d.Android/box2d.Android.csproj
index 90e99e26..8e68bb22 100644
--- a/box2d/box2d.Android/box2d.Android.csproj
+++ b/box2d/box2d.Android/box2d.Android.csproj
@@ -5,7 +5,7 @@
Box2D
512
Off
- net7.0-android33.0
+ net8.0-android
false
obj\Android\Debug
false
@@ -47,7 +47,7 @@
4
-
+
-
+
\ No newline at end of file
diff --git a/box2d/box2d.DesktopGL/box2d.DesktopGL.csproj b/box2d/box2d.DesktopGL/box2d.DesktopGL.csproj
index b10e125b..e2267744 100644
--- a/box2d/box2d.DesktopGL/box2d.DesktopGL.csproj
+++ b/box2d/box2d.DesktopGL/box2d.DesktopGL.csproj
@@ -6,7 +6,7 @@
Library
Box2D
Box2D
- net7.0
+ net8.0
512
true
@@ -55,12 +55,13 @@
4
-
+
True
-
+
+
diff --git a/box2d/box2d.Uwp/Properties/AssemblyInfo.cs b/box2d/box2d.Uwp/Properties/AssemblyInfo.cs
deleted file mode 100644
index b240bc27..00000000
--- a/box2d/box2d.Uwp/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using System;
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("box2d for UWP")]
-[assembly: AssemblyDescription("Box2D for UWP (Windows Universal)")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Broken Walls Studios")]
-[assembly: AssemblyProduct("box2d")]
-[assembly: AssemblyCopyright("Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Mark the assembly as CLS compliant so it can be safely used in other .NET languages
-[assembly: CLSCompliant(true)]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("18aafe9f-27fd-4b00-9aac-14612319ea91")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.4.8.2")]
-[assembly: AssemblyFileVersion("2.4.8.2")]
diff --git a/box2d/box2d.Uwp/box2d.Uwp.csproj b/box2d/box2d.Uwp/box2d.Uwp.csproj
deleted file mode 100644
index e5365c30..00000000
--- a/box2d/box2d.Uwp/box2d.Uwp.csproj
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}
- Library
- Properties
- Box2D
- Box2D
- en-US
- UAP
- 10.0.20348.0
- 10.0.16299.0
- 14
- 512
- {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
-
-
- AnyCPU
- true
- full
- false
- bin\Uwp\Debug\
- obj\Uwp\Debug
- obj\Uwp\Debug
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Uwp\Release\
- obj\Uwp\Release
- obj\Uwp\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- prompt
- 4
-
-
- x86
- true
- bin\Uwp\x86\Debug\
- obj\Uwp\x86\Debug
- obj\Uwp\x86\Debug
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- ;2008
- full
- false
- prompt
-
-
- x86
- bin\Uwp\x86\Release\
- obj\Uwp\x86\Release
- obj\Uwp\x86\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- ARM
- true
- bin\Uwp\ARM\Debug\
- obj\Uwp\ARM\Debug
- obj\Uwp\ARM\Debug
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- ;2008
- full
- false
- prompt
-
-
- ARM
- bin\Uwp\ARM\Release\
- obj\Uwp\ARM\Release
- obj\Uwp\ARM\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- ARM64
- true
- bin\Uwp\ARM64\Debug\
- obj\Uwp\ARM64\Debug
- obj\Uwp\ARM64\Debug
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- ;2008
- full
- false
- prompt
-
-
- ARM64
- bin\Uwp\ARM64\Release\
- obj\Uwp\ARM64\Release
- obj\Uwp\ARM64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- x64
- true
- bin\Uwp\x64\Debug\
- obj\Uwp\x64\Debug
- obj\Uwp\x64\Debug
- DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
- ;2008
- full
- false
- prompt
-
-
- x64
- bin\Uwp\x64\Release\
- obj\Uwp\x64\Release
- obj\Uwp\x64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- PackageReference
-
-
-
-
-
-
- 6.2.11
-
-
-
-
-
- 14.0
-
-
-
-
\ No newline at end of file
diff --git a/box2d/box2d.Windows/box2d.Windows.csproj b/box2d/box2d.Windows/box2d.Windows.csproj
index dead7376..ab2495e5 100644
--- a/box2d/box2d.Windows/box2d.Windows.csproj
+++ b/box2d/box2d.Windows/box2d.Windows.csproj
@@ -6,7 +6,7 @@
Library
Box2D
Box2D
- net7.0-windows7.0
+ net8.0-windows
512
true
true
@@ -56,7 +56,7 @@
false
-
+
\ No newline at end of file
diff --git a/box2d/box2d.iOS/box2d.iOS.csproj b/box2d/box2d.iOS/box2d.iOS.csproj
index 4fcec891..66357f20 100644
--- a/box2d/box2d.iOS/box2d.iOS.csproj
+++ b/box2d/box2d.iOS/box2d.iOS.csproj
@@ -1,10 +1,10 @@
- net7.0-ios16.1
+ net8.0-ios
11.0
Library
box2d.iOS
- false
+ false
Resources
box2d.iOS
box2d for iOS
@@ -42,7 +42,7 @@
false
-
+
-
+
\ No newline at end of file
diff --git a/cocos2d-mono.All/cocos2d-mono.All.sln b/cocos2d-mono.All/cocos2d-mono.All.sln
index 06afb9ac..c2804ac6 100644
--- a/cocos2d-mono.All/cocos2d-mono.All.sln
+++ b/cocos2d-mono.All/cocos2d-mono.All.sln
@@ -11,8 +11,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "box2d.DesktopGL", "..\box2d
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "box2d.iOS", "..\box2d\box2d.iOS\box2d.iOS.csproj", "{8AC4C3CC-9BCD-405C-BE0B-5C217A054B78}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "box2d.Uwp", "..\box2d\box2d.Uwp\box2d.Uwp.csproj", "{ACAC14A0-8C2B-413C-875F-A2AD3C647800}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "box2d.Windows", "..\box2d\box2d.Windows\box2d.Windows.csproj", "{F0F33689-AED5-4D53-9BE7-8E8F9306CF26}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d", "..\cocos2d\cocos2d.shproj", "{AFED60A6-F61D-4C4E-BB3B-20FFDA06B990}"
@@ -23,8 +21,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "cocos2d.DesktopGL", "..\coc
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "cocos2d.iOS", "..\cocos2d\cocos2d.iOS\cocos2d.iOS.csproj", "{E71F3053-056C-4381-9638-048ED73BDFF6}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d.Uwp", "..\cocos2d\cocos2d.Uwp\cocos2d.Uwp.csproj", "{11382845-C53D-4D81-8F2E-A7F88C9BDAD6}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "cocos2d.Windows", "..\cocos2d\cocos2d.Windows\cocos2d.Windows.csproj", "{E3CF514A-3539-4F29-9E16-0AEA2EDEF311}"
EndProject
Global
diff --git a/cocos2d-mono.Uwp/cocos2d-mono.Core.Uwp.sln b/cocos2d-mono.Uwp/cocos2d-mono.Core.Uwp.sln
deleted file mode 100644
index fd3c530a..00000000
--- a/cocos2d-mono.Uwp/cocos2d-mono.Core.Uwp.sln
+++ /dev/null
@@ -1,81 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28307.421
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "box2d", "..\box2d\box2d.shproj", "{02F4E1C8-8A0D-49DE-9B39-A966E126ACC3}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "box2d.Uwp", "..\box2d\box2d.Uwp\box2d.Uwp.csproj", "{ACAC14A0-8C2B-413C-875F-A2AD3C647800}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d.Core.Uwp", "..\cocos2d\cocos2d.Core.Uwp\cocos2d.Core.Uwp.csproj", "{11382845-C53D-4D81-8F2E-A7F88C9BDAD6}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d", "..\cocos2d\cocos2d.shproj", "{AFED60A6-F61D-4C4E-BB3B-20FFDA06B990}"
-EndProject
-Global
- GlobalSection(SharedMSBuildProjectFiles) = preSolution
- ..\box2d\box2d.projitems*{02f4e1c8-8a0d-49de-9b39-a966e126acc3}*SharedItemsImports = 13
- ..\cocos2d\cocos2d.projitems*{11382845-c53d-4d81-8f2e-a7f88c9bdad6}*SharedItemsImports = 4
- ..\box2d\box2d.projitems*{acac14a0-8c2b-413c-875f-a2ad3c647800}*SharedItemsImports = 4
- ..\cocos2d\cocos2d.projitems*{afed60a6-f61d-4c4e-bb3b-20ffda06b990}*SharedItemsImports = 13
- EndGlobalSection
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|ARM = Debug|ARM
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|ARM = Release|ARM
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.ActiveCfg = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.Build.0 = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.Build.0 = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.ActiveCfg = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.Build.0 = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.ActiveCfg = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.Build.0 = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.Build.0 = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.ActiveCfg = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.Build.0 = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.ActiveCfg = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.Build.0 = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.ActiveCfg = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.Build.0 = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.ActiveCfg = Release|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.Build.0 = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.ActiveCfg = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.Build.0 = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.Build.0 = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.ActiveCfg = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.Build.0 = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.ActiveCfg = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.Build.0 = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.Build.0 = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.ActiveCfg = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.Build.0 = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.ActiveCfg = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.Build.0 = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.ActiveCfg = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.Build.0 = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.ActiveCfg = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.Build.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {1783037A-D838-4838-AEFC-74DFC5F3E1A9}
- EndGlobalSection
-EndGlobal
diff --git a/cocos2d-mono.Uwp/cocos2d-mono.Uwp.sln b/cocos2d-mono.Uwp/cocos2d-mono.Uwp.sln
deleted file mode 100644
index 5bd3f367..00000000
--- a/cocos2d-mono.Uwp/cocos2d-mono.Uwp.sln
+++ /dev/null
@@ -1,81 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28307.421
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "box2d", "..\box2d\box2d.shproj", "{02F4E1C8-8A0D-49DE-9B39-A966E126ACC3}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "box2d.Uwp", "..\box2d\box2d.Uwp\box2d.Uwp.csproj", "{ACAC14A0-8C2B-413C-875F-A2AD3C647800}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cocos2d.Uwp", "..\cocos2d\cocos2d.Uwp\cocos2d.Uwp.csproj", "{11382845-C53D-4D81-8F2E-A7F88C9BDAD6}"
-EndProject
-Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "cocos2d", "..\cocos2d\cocos2d.shproj", "{AFED60A6-F61D-4C4E-BB3B-20FFDA06B990}"
-EndProject
-Global
- GlobalSection(SharedMSBuildProjectFiles) = preSolution
- ..\box2d\box2d.projitems*{02f4e1c8-8a0d-49de-9b39-a966e126acc3}*SharedItemsImports = 13
- ..\cocos2d\cocos2d.projitems*{11382845-c53d-4d81-8f2e-a7f88c9bdad6}*SharedItemsImports = 4
- ..\box2d\box2d.projitems*{acac14a0-8c2b-413c-875f-a2ad3c647800}*SharedItemsImports = 4
- ..\cocos2d\cocos2d.projitems*{afed60a6-f61d-4c4e-bb3b-20ffda06b990}*SharedItemsImports = 13
- EndGlobalSection
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|ARM = Debug|ARM
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|ARM = Release|ARM
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.ActiveCfg = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM.Build.0 = Debug|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|ARM64.Build.0 = Debug|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.ActiveCfg = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x64.Build.0 = Debug|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.ActiveCfg = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Debug|x86.Build.0 = Debug|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|Any CPU.Build.0 = Release|Any CPU
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.ActiveCfg = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM.Build.0 = Release|ARM
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.ActiveCfg = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|ARM64.Build.0 = Release|ARM64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.ActiveCfg = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x64.Build.0 = Release|x64
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.ActiveCfg = Release|x86
- {ACAC14A0-8C2B-413C-875F-A2AD3C647800}.Release|x86.Build.0 = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.ActiveCfg = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM.Build.0 = Debug|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|ARM64.Build.0 = Debug|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.ActiveCfg = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x64.Build.0 = Debug|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.ActiveCfg = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Debug|x86.Build.0 = Debug|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|Any CPU.Build.0 = Release|Any CPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.ActiveCfg = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM.Build.0 = Release|ARM
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.ActiveCfg = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|ARM64.Build.0 = Release|ARM64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.ActiveCfg = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x64.Build.0 = Release|x64
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.ActiveCfg = Release|x86
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}.Release|x86.Build.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {1783037A-D838-4838-AEFC-74DFC5F3E1A9}
- EndGlobalSection
-EndGlobal
diff --git a/cocos2d/Properties/AssemblyInfo.Uwp.cs b/cocos2d/Properties/AssemblyInfo.Uwp.cs
deleted file mode 100644
index 271838ad..00000000
--- a/cocos2d/Properties/AssemblyInfo.Uwp.cs
+++ /dev/null
@@ -1,7 +0,0 @@
-using System.Reflection;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("cocos2d-mono for UWP")]
-[assembly: AssemblyDescription("Cocos2D-Mono for UWP (Windows Universal)")]
diff --git a/cocos2d/cocos2d.Android/.config/dotnet-tools.json b/cocos2d/cocos2d.Android/.config/dotnet-tools.json
index efabe22e..bcc75831 100644
--- a/cocos2d/cocos2d.Android/.config/dotnet-tools.json
+++ b/cocos2d/cocos2d.Android/.config/dotnet-tools.json
@@ -3,34 +3,24 @@
"isRoot": true,
"tools": {
"dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb"]
},
"dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor"]
},
"dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-linux"]
},
"dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-windows"]
},
"dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
+ "version": "3.8.2.1105",
+ "commands": ["mgcb-editor-mac"]
}
}
-}
\ No newline at end of file
+}
diff --git a/cocos2d/cocos2d.Android/cocos2d.Android.csproj b/cocos2d/cocos2d.Android/cocos2d.Android.csproj
index 6b42e8f7..66491ec8 100644
--- a/cocos2d/cocos2d.Android/cocos2d.Android.csproj
+++ b/cocos2d/cocos2d.Android/cocos2d.Android.csproj
@@ -5,9 +5,9 @@
Cocos2D
512
false
- false
+ false
false
- net7.0-android33.0
+ net8.0-android
obj\Android\Debug
- CCDrawManager reset width and height on Init
@@ -54,14 +54,14 @@
-
-
+
+
-
+
-
-
+
+
\ No newline at end of file
diff --git a/cocos2d/cocos2d.Core.Android/cocos2d.Core.Android.csproj b/cocos2d/cocos2d.Core.Android/cocos2d.Core.Android.csproj
index fe233510..c584f255 100644
--- a/cocos2d/cocos2d.Core.Android/cocos2d.Core.Android.csproj
+++ b/cocos2d/cocos2d.Core.Android/cocos2d.Core.Android.csproj
@@ -7,7 +7,7 @@
false
false
false
- net7.0-android33.0
+ net8.0-android
obj\Core\Android\Debug
- CCDrawManager reset width and height on Init
@@ -54,7 +54,7 @@
-
+
diff --git a/cocos2d/cocos2d.Core.DesktopGL/cocos2d.Core.DesktopGL.csproj b/cocos2d/cocos2d.Core.DesktopGL/cocos2d.Core.DesktopGL.csproj
index 5a08c4f6..f85878b3 100644
--- a/cocos2d/cocos2d.Core.DesktopGL/cocos2d.Core.DesktopGL.csproj
+++ b/cocos2d/cocos2d.Core.DesktopGL/cocos2d.Core.DesktopGL.csproj
@@ -6,7 +6,7 @@
Library
cocos2d_mono.Core.DesktopGL
cocos2d_mono.Core.DesktopGL
- net7.0
+ net8.0
512
true
@@ -56,7 +56,7 @@
true
-
+
diff --git a/cocos2d/cocos2d.Core.Uwp/Properties/AssemblyInfo.cs b/cocos2d/cocos2d.Core.Uwp/Properties/AssemblyInfo.cs
deleted file mode 100644
index c126e2cf..00000000
--- a/cocos2d/cocos2d.Core.Uwp/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("cocos2d-mono for Core UWP")]
-[assembly: AssemblyDescription("Cocos2D-Mono for Core UWP (Windows Universal)")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Broken Walls Studios")]
-[assembly: AssemblyProduct("cocos2d-mono")]
-[assembly: AssemblyCopyright("Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("01382ad1-179c-4322-91c4-e4fac0ca6c84")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.4.8.2")]
-[assembly: AssemblyFileVersion("2.4.8.2")]
diff --git a/cocos2d/cocos2d.Core.Uwp/cocos2d.Core.Uwp.csproj b/cocos2d/cocos2d.Core.Uwp/cocos2d.Core.Uwp.csproj
deleted file mode 100644
index 3db27234..00000000
--- a/cocos2d/cocos2d.Core.Uwp/cocos2d.Core.Uwp.csproj
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}
- Library
- Properties
- cocos2d_mono.Core.Uwp
- cocos2d_mono.Core.Uwp
- en-US
- UAP
- 10.0.20348.0
- 10.0.16299.0
- 14
- 512
- {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
-
-
- AnyCPU
- true
- full
- false
- bin\Core\Uwp\Debug\
- obj\Core\Uwp\Debug
- obj\Core\Uwp\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- prompt
- 4
- true
-
-
- AnyCPU
- pdbonly
- true
- bin\Core\Uwp\Release\
- obj\Core\Uwp\Release
- obj\Core\Uwp\Release
- TRACE;NETFX_CORE;WINDOWS_UWP;WINDOWS
- prompt
- 4
- true
-
-
- x86
- true
- bin\Core\Uwp\x86\Debug\
- obj\Core\Uwp\x86\Debug
- obj\Core\Uwp\x86\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- x86
- bin\Core\Uwp\x86\Release\
- obj\Core\Uwp\x86\Release
- obj\Core\Uwp\x86\Release
- TRACE;NETFX_CORE;WINDOWS_UWP;WINDOWS
- true
- ;2008
- pdbonly
- false
- prompt
- true
-
-
- ARM
- true
- bin\Core\Uwp\ARM\Debug\
- obj\Core\Uwp\ARM\Debug
- obj\Core\Uwp\ARM\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- ARM
- bin\Core\Uwp\ARM\Release\
- obj\Core\Uwp\ARM\Release
- obj\Core\Uwp\ARM\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- ARM64
- true
- bin\Core\Uwp\ARM64\Debug\
- obj\Core\Uwp\ARM64\Debug
- obj\Core\Uwp\ARM64\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- ARM64
- bin\Core\Uwp\ARM64\Release\
- obj\Core\Uwp\ARM64\Release
- obj\Core\Uwp\ARM64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- x64
- true
- bin\Core\Uwp\x64\Debug\
- obj\Core\Uwp\x64\Debug
- obj\Core\Uwp\x64\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- x64
- bin\Core\Uwp\x64\Release\
- obj\Core\Uwp\x64\Release
- obj\Core\Uwp\x64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- PackageReference
-
-
-
-
-
-
- 6.2.11
-
-
-
- 4.0.1
-
-
- 1.3.3
-
-
-
-
-
- {acac14a0-8c2b-413c-875f-a2ad3c647800}
- box2d.Uwp
-
-
-
-
- 14.0
-
-
-
\ No newline at end of file
diff --git a/cocos2d/cocos2d.Core.Windows/cocos2d.Core.Windows.csproj b/cocos2d/cocos2d.Core.Windows/cocos2d.Core.Windows.csproj
index 6e713b13..d58d4db0 100644
--- a/cocos2d/cocos2d.Core.Windows/cocos2d.Core.Windows.csproj
+++ b/cocos2d/cocos2d.Core.Windows/cocos2d.Core.Windows.csproj
@@ -6,7 +6,7 @@
Library
cocos2d_mono.Windows
cocos2d_mono.Windows
- net7.0-windows7.0
+ net8.0-windows7.0
512
true
true
@@ -58,7 +58,7 @@
-
+
diff --git a/cocos2d/cocos2d.Core.iOS/cocos2d.Core.iOS.csproj b/cocos2d/cocos2d.Core.iOS/cocos2d.Core.iOS.csproj
index a8114827..253b598e 100644
--- a/cocos2d/cocos2d.Core.iOS/cocos2d.Core.iOS.csproj
+++ b/cocos2d/cocos2d.Core.iOS/cocos2d.Core.iOS.csproj
@@ -1,6 +1,6 @@
- net7.0-ios16.1
+ net8.0-ios
11.0
Library
cocos2d_mono.Core.iOS
@@ -55,7 +55,7 @@
-
+
diff --git a/cocos2d/cocos2d.DesktopGL/cocos2d.DesktopGL.csproj b/cocos2d/cocos2d.DesktopGL/cocos2d.DesktopGL.csproj
index 1dc1c615..ca7af200 100644
--- a/cocos2d/cocos2d.DesktopGL/cocos2d.DesktopGL.csproj
+++ b/cocos2d/cocos2d.DesktopGL/cocos2d.DesktopGL.csproj
@@ -6,7 +6,7 @@
Library
cocos2d_mono.DesktopGL
cocos2d_mono.DesktopGL
- net7.0
+ net8.0
512
true
@@ -56,11 +56,11 @@
true
-
-
+
+
-
+
@@ -71,7 +71,8 @@
True
-
+
+
diff --git a/cocos2d/cocos2d.Uwp/.config/dotnet-tools.json b/cocos2d/cocos2d.Uwp/.config/dotnet-tools.json
deleted file mode 100644
index efabe22e..00000000
--- a/cocos2d/cocos2d.Uwp/.config/dotnet-tools.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "version": 1,
- "isRoot": true,
- "tools": {
- "dotnet-mgcb": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb"
- ]
- },
- "dotnet-mgcb-editor": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor"
- ]
- },
- "dotnet-mgcb-editor-linux": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-linux"
- ]
- },
- "dotnet-mgcb-editor-windows": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-windows"
- ]
- },
- "dotnet-mgcb-editor-mac": {
- "version": "3.8.1.303",
- "commands": [
- "mgcb-editor-mac"
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/cocos2d/cocos2d.Uwp/Properties/AssemblyInfo.cs b/cocos2d/cocos2d.Uwp/Properties/AssemblyInfo.cs
deleted file mode 100644
index d3071741..00000000
--- a/cocos2d/cocos2d.Uwp/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("cocos2d-mono for UWP")]
-[assembly: AssemblyDescription("Cocos2D-Mono for UWP (Windows Universal)")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Broken Walls Studios")]
-[assembly: AssemblyProduct("cocos2d-mono")]
-[assembly: AssemblyCopyright("Copyright © 2024 Cocos2D-Mono Team; Broken Walls Studios, LLC.")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("01382ad1-179c-4322-91c4-e4fac0ca6c84")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.4.8.2")]
-[assembly: AssemblyFileVersion("2.4.8.2")]
diff --git a/cocos2d/cocos2d.Uwp/cocos2d.Uwp.csproj b/cocos2d/cocos2d.Uwp/cocos2d.Uwp.csproj
deleted file mode 100644
index 714192ca..00000000
--- a/cocos2d/cocos2d.Uwp/cocos2d.Uwp.csproj
+++ /dev/null
@@ -1,184 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {11382845-C53D-4D81-8F2E-A7F88C9BDAD6}
- Library
- Properties
- Cocos2D
- Cocos2D
- en-US
- UAP
- 10.0.20348.0
- 10.0.16299.0
- 14
- 512
- {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
-
-
- AnyCPU
- true
- full
- false
- bin\Uwp\Debug\
- obj\Uwp\Debug
- obj\Uwp\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- prompt
- 4
- true
-
-
- AnyCPU
- pdbonly
- true
- bin\Uwp\Release\
- obj\Uwp\Release
- obj\Uwp\Release
- TRACE;NETFX_CORE;WINDOWS_UWP;WINDOWS
- prompt
- 4
- true
-
-
- x86
- true
- bin\Uwp\x86\Debug\
- obj\Uwp\x86\Debug
- obj\Uwp\x86\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- x86
- bin\Uwp\x86\Release\
- obj\Uwp\x86\Release
- obj\Uwp\x86\Release
- TRACE;NETFX_CORE;WINDOWS_UWP;WINDOWS
- true
- ;2008
- pdbonly
- false
- prompt
- true
-
-
- ARM
- true
- bin\Uwp\ARM\Debug\
- obj\Uwp\ARM\Debug
- obj\Uwp\ARM\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- ARM
- bin\Uwp\ARM\Release\
- obj\Uwp\ARM\Release
- obj\Uwp\ARM\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- ARM64
- true
- bin\Uwp\ARM64\Debug\
- obj\Uwp\ARM64\Debug
- obj\Uwp\ARM64\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- ARM64
- bin\Uwp\ARM64\Release\
- obj\Uwp\ARM64\Release
- obj\Uwp\ARM64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- x64
- true
- bin\Uwp\x64\Debug\
- obj\Uwp\x64\Debug
- obj\Uwp\x64\Debug
- TRACE;DEBUG;NETFX_CORE;WINDOWS_UWP;WINDOWS
- ;2008
- full
- false
- prompt
- true
-
-
- x64
- bin\Uwp\x64\Release\
- obj\Uwp\x64\Release
- obj\Uwp\x64\Release
- TRACE;NETFX_CORE;WINDOWS_UWP
- true
- ;2008
- pdbonly
- false
- prompt
-
-
- PackageReference
-
-
-
-
-
-
- 6.2.11
-
-
-
-
- 4.0.1
-
-
- 1.3.3
-
-
-
-
-
- {acac14a0-8c2b-413c-875f-a2ad3c647800}
- box2d.Uwp
-
-
-
-
- 14.0
-
-
-
-
\ No newline at end of file
diff --git a/cocos2d/cocos2d.Windows/cocos2d.Windows.csproj b/cocos2d/cocos2d.Windows/cocos2d.Windows.csproj
index 84c888d6..0d2ede95 100644
--- a/cocos2d/cocos2d.Windows/cocos2d.Windows.csproj
+++ b/cocos2d/cocos2d.Windows/cocos2d.Windows.csproj
@@ -6,7 +6,7 @@
Library
Cocos2D
Cocos2D
- net7.0-windows7.0
+ net8.0-windows
512
true
true
@@ -58,10 +58,10 @@
-
-
+
+
-
+
@@ -72,7 +72,8 @@
True
-
+
+
diff --git a/cocos2d/cocos2d.iOS/cocos2d.iOS.csproj b/cocos2d/cocos2d.iOS/cocos2d.iOS.csproj
index 2d93d40b..a61d64ce 100644
--- a/cocos2d/cocos2d.iOS/cocos2d.iOS.csproj
+++ b/cocos2d/cocos2d.iOS/cocos2d.iOS.csproj
@@ -1,12 +1,12 @@
- net7.0-ios16.1
+ net8.0-ios
11.0
Library
cocos2d_mono.iOS
Resources
cocos2d-mono.iOS
- false
+ false
obj\iOS\Debug
- CCDrawManager reset width and height on Init
@@ -55,8 +55,8 @@
-
-
+
+
@@ -65,4 +65,4 @@
-
+
\ No newline at end of file
diff --git a/docs/docs/developing/migrating-to-2.4.0.md b/docs/docs/developing/migrating-to-2.4.0.md
index 8351717b..2d0e98e0 100644
--- a/docs/docs/developing/migrating-to-2.4.0.md
+++ b/docs/docs/developing/migrating-to-2.4.0.md
@@ -20,8 +20,8 @@ Edit your csproj file to change your `TargetFramework`:
Then edit your Cocos2D-Mono PackageReference to point to 2.4.0 & MonoGame PackageReference to point to 3.8.1:
-
-
+
+
## iOS/iPadOS, and Android
.NET 6 introduced breaking changes in how csproj are defined for iOS/iPadOS and Android. We recommand that you create new projects using the [Cocos2D-Mono 2.4.0 Project Templates](https://marketplace.visualstudio.com/items?itemName=Cocos2D-MonoTeamBrokenWallsStudios.cocos2dmonoprojecttemplates) and that you copy over your project files there.
diff --git a/docs/docs/getting-started/introduction.md b/docs/docs/getting-started/introduction.md
index 1049f049..9315c682 100644
--- a/docs/docs/getting-started/introduction.md
+++ b/docs/docs/getting-started/introduction.md
@@ -15,7 +15,6 @@ Cocos2D-Mono focuses more on the MonoGame Framework and removes the limitations
[![DesktopGL (Windows/Linux/macOS)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/desktopgl_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/desktopgl_build.yml)
[![Windows](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/windows_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/windows_build.yml)
[![Android](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/android_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/android_build.yml)
-[![UWP](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/uwp_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/uwp_build.yml)
[![iOS](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/ios_build.yml/badge.svg)](https://github.com/brandmooffin/cocos2d-mono/actions/workflows/ios_build.yml)
# Supported Platforms
@@ -23,24 +22,20 @@ Cocos2D-Mono focuses more on the MonoGame Framework and removes the limitations
We support a growing list of platforms across the desktop, mobile, and console space. If there is a platform we don't support, please [make a request](https://github.com/brandmooffin/cocos2d-mono/issues).
- Desktop PCs
- - Windows 10 Store Apps (UWP)
- - Windows Win32 (OpenGL & DirectX)
+ - Windows (OpenGL & DirectX)
- Linux (OpenGL)
- macOS (OpenGL)
- Mobile/Tablet Devices
- Android (OpenGL)
- iOS (OpenGL)
- - Windows Phone 10 (UWP)
-- Consoles
- - Xbox One (UWP)
- Coming Soon
- iOS (Metal)
- tvOS (Metal)
- macOS (Metal)
- - Xbox One (XDK)
+ - Xbox (XDK)
- Nintendo Switch
- - PlayStation Vita
- PlayStation 4
+ - PlayStation 5
# Support & Contributing
@@ -58,8 +53,6 @@ You can find those in the [Tests directory](https://github.com/brandmooffin/coco
- cocos2d-mono.Tests.Windows
-- cocos2d-mono.Tests.Uwp
-
- cocos2d-mono.Tests.DesktopGL
- cocos2d-mono.Tests.iOS