diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.0.3.0_Test/MentorSystemWebRTC.zip b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.0.3.0_Test/MentorSystemWebRTC.zip new file mode 100644 index 0000000..ec3027c Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.0.3.0_Test/MentorSystemWebRTC.zip differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.ps1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.ps1 new file mode 100644 index 0000000..90b6d7c --- /dev/null +++ b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.ps1 @@ -0,0 +1,749 @@ +# +# Add-AppxDevPackage.ps1 is a PowerShell script designed to install app +# packages created by Visual Studio for developers. To run this script from +# Explorer, right-click on its icon and choose "Run with PowerShell". +# +# Visual Studio supplies this script in the folder generated with its +# "Prepare Package" command. The same folder will also contain the app +# package (a .appx file), the signing certificate (a .cer file), and a +# "Dependencies" subfolder containing all the framework packages used by the +# app. +# +# This script simplifies installing these packages by automating the +# following functions: +# 1. Find the app package and signing certificate in the script directory +# 2. Prompt the user to acquire a developer license and to install the +# certificate if necessary +# 3. Find dependency packages that are applicable to the operating system's +# CPU architecture +# 4. Install the package along with all applicable dependencies +# +# All command line parameters are reserved for use internally by the script. +# Users should launch this script from Explorer. +# + +# .Link +# http://go.microsoft.com/fwlink/?LinkId=243053 + +param( + [switch]$Force = $false, + [switch]$GetDeveloperLicense = $false, + [string]$CertificatePath = $null +) + +$ErrorActionPreference = "Stop" + +# The language resources for this script are placed in the +# "Add-AppDevPackage.resources" subfolder alongside the script. Since the +# current working directory might not be the directory that contains the +# script, we need to create the full path of the resources directory to +# pass into Import-LocalizedData +$ScriptPath = $null +try +{ + $ScriptPath = (Get-Variable MyInvocation).Value.MyCommand.Path + $ScriptDir = Split-Path -Parent $ScriptPath +} +catch {} + +if (!$ScriptPath) +{ + PrintMessageAndExit $UiStrings.ErrorNoScriptPath $ErrorCodes.NoScriptPath +} + +$LocalizedResourcePath = Join-Path $ScriptDir "Add-AppDevPackage.resources" +Import-LocalizedData -BindingVariable UiStrings -BaseDirectory $LocalizedResourcePath + +$ErrorCodes = Data { + ConvertFrom-StringData @' + Success = 0 + NoScriptPath = 1 + NoPackageFound = 2 + ManyPackagesFound = 3 + NoCertificateFound = 4 + ManyCertificatesFound = 5 + BadCertificate = 6 + PackageUnsigned = 7 + CertificateMismatch = 8 + ForceElevate = 9 + LaunchAdminFailed = 10 + GetDeveloperLicenseFailed = 11 + InstallCertificateFailed = 12 + AddPackageFailed = 13 + ForceDeveloperLicense = 14 + CertUtilInstallFailed = 17 + CertIsCA = 18 + BannedEKU = 19 + NoBasicConstraints = 20 + NoCodeSigningEku = 21 + InstallCertificateCancelled = 22 + BannedKeyUsage = 23 + ExpiredCertificate = 24 +'@ +} + +function PrintMessageAndExit($ErrorMessage, $ReturnCode) +{ + Write-Host $ErrorMessage + if (!$Force) + { + Pause + } + exit $ReturnCode +} + +# +# Warns the user about installing certificates, and presents a Yes/No prompt +# to confirm the action. The default is set to No. +# +function ConfirmCertificateInstall +{ + $Answer = $host.UI.PromptForChoice( + "", + $UiStrings.WarningInstallCert, + [System.Management.Automation.Host.ChoiceDescription[]]@($UiStrings.PromptYesString, $UiStrings.PromptNoString), + 1) + + return $Answer -eq 0 +} + +# +# Validates whether a file is a valid certificate using CertUtil. +# This needs to be done before calling Get-PfxCertificate on the file, otherwise +# the user will get a cryptic "Password: " prompt for invalid certs. +# +function ValidateCertificateFormat($FilePath) +{ + # certutil -verify prints a lot of text that we don't need, so it's redirected to $null here + certutil.exe -verify $FilePath > $null + if ($LastExitCode -lt 0) + { + PrintMessageAndExit ($UiStrings.ErrorBadCertificate -f $FilePath, $LastExitCode) $ErrorCodes.BadCertificate + } + + # Check if certificate is expired + $cert = Get-PfxCertificate $FilePath + if (($cert.NotBefore -gt (Get-Date)) -or ($cert.NotAfter -lt (Get-Date))) + { + PrintMessageAndExit ($UiStrings.ErrorExpiredCertificate -f $FilePath) $ErrorCodes.ExpiredCertificate + } +} + +# +# Verify that the developer certificate meets the following restrictions: +# - The certificate must contain a Basic Constraints extension, and its +# Certificate Authority (CA) property must be false. +# - The certificate's Key Usage extension must be either absent, or set to +# only DigitalSignature. +# - The certificate must contain an Extended Key Usage (EKU) extension with +# Code Signing usage. +# - The certificate must NOT contain any other EKU except Code Signing and +# Lifetime Signing. +# +# These restrictions are enforced to decrease security risks that arise from +# trusting digital certificates. +# +function CheckCertificateRestrictions +{ + Set-Variable -Name BasicConstraintsExtensionOid -Value "2.5.29.19" -Option Constant + Set-Variable -Name KeyUsageExtensionOid -Value "2.5.29.15" -Option Constant + Set-Variable -Name EkuExtensionOid -Value "2.5.29.37" -Option Constant + Set-Variable -Name CodeSigningEkuOid -Value "1.3.6.1.5.5.7.3.3" -Option Constant + Set-Variable -Name LifetimeSigningEkuOid -Value "1.3.6.1.4.1.311.10.3.13" -Option Constant + + $CertificateExtensions = (Get-PfxCertificate $CertificatePath).Extensions + $HasBasicConstraints = $false + $HasCodeSigningEku = $false + + foreach ($Extension in $CertificateExtensions) + { + # Certificate must contain the Basic Constraints extension + if ($Extension.oid.value -eq $BasicConstraintsExtensionOid) + { + # CA property must be false + if ($Extension.CertificateAuthority) + { + PrintMessageAndExit $UiStrings.ErrorCertIsCA $ErrorCodes.CertIsCA + } + $HasBasicConstraints = $true + } + + # If key usage is present, it must be set to digital signature + elseif ($Extension.oid.value -eq $KeyUsageExtensionOid) + { + if ($Extension.KeyUsages -ne "DigitalSignature") + { + PrintMessageAndExit ($UiStrings.ErrorBannedKeyUsage -f $Extension.KeyUsages) $ErrorCodes.BannedKeyUsage + } + } + + elseif ($Extension.oid.value -eq $EkuExtensionOid) + { + # Certificate must contain the Code Signing EKU + $EKUs = $Extension.EnhancedKeyUsages.Value + if ($EKUs -contains $CodeSigningEkuOid) + { + $HasCodeSigningEKU = $True + } + + # EKUs other than code signing and lifetime signing are not allowed + foreach ($EKU in $EKUs) + { + if ($EKU -ne $CodeSigningEkuOid -and $EKU -ne $LifetimeSigningEkuOid) + { + PrintMessageAndExit ($UiStrings.ErrorBannedEKU -f $EKU) $ErrorCodes.BannedEKU + } + } + } + } + + if (!$HasBasicConstraints) + { + PrintMessageAndExit $UiStrings.ErrorNoBasicConstraints $ErrorCodes.NoBasicConstraints + } + if (!$HasCodeSigningEKU) + { + PrintMessageAndExit $UiStrings.ErrorNoCodeSigningEku $ErrorCodes.NoCodeSigningEku + } +} + +# +# Performs operations that require administrative privileges: +# - Prompt the user to obtain a developer license +# - Install the developer certificate (if -Force is not specified, also prompts the user to confirm) +# +function DoElevatedOperations +{ + if ($GetDeveloperLicense) + { + Write-Host $UiStrings.GettingDeveloperLicense + + if ($Force) + { + PrintMessageAndExit $UiStrings.ErrorForceDeveloperLicense $ErrorCodes.ForceDeveloperLicense + } + try + { + Show-WindowsDeveloperLicenseRegistration + } + catch + { + $Error[0] # Dump details about the last error + PrintMessageAndExit $UiStrings.ErrorGetDeveloperLicenseFailed $ErrorCodes.GetDeveloperLicenseFailed + } + } + + if ($CertificatePath) + { + Write-Host $UiStrings.InstallingCertificate + + # Make sure certificate format is valid and usage constraints are followed + ValidateCertificateFormat $CertificatePath + CheckCertificateRestrictions + + # If -Force is not specified, warn the user and get consent + if ($Force -or (ConfirmCertificateInstall)) + { + # Add cert to store + certutil.exe -addstore TrustedPeople $CertificatePath + if ($LastExitCode -lt 0) + { + PrintMessageAndExit ($UiStrings.ErrorCertUtilInstallFailed -f $LastExitCode) $ErrorCodes.CertUtilInstallFailed + } + } + else + { + PrintMessageAndExit $UiStrings.ErrorInstallCertificateCancelled $ErrorCodes.InstallCertificateCancelled + } + } +} + +# +# Checks whether the machine is missing a valid developer license. +# +function CheckIfNeedDeveloperLicense +{ + $Result = $true + try + { + $Result = (Get-WindowsDeveloperLicense | Where-Object { $_.IsValid } | Measure-Object).Count -eq 0 + } + catch {} + + return $Result +} + +# +# Launches an elevated process running the current script to perform tasks +# that require administrative privileges. This function waits until the +# elevated process terminates, and checks whether those tasks were successful. +# +function LaunchElevated +{ + # Set up command line arguments to the elevated process + $RelaunchArgs = '-ExecutionPolicy Unrestricted -file "' + $ScriptPath + '"' + + if ($Force) + { + $RelaunchArgs += ' -Force' + } + if ($NeedDeveloperLicense) + { + $RelaunchArgs += ' -GetDeveloperLicense' + } + if ($NeedInstallCertificate) + { + $RelaunchArgs += ' -CertificatePath "' + $DeveloperCertificatePath.FullName + '"' + } + + # Launch the process and wait for it to finish + try + { + $AdminProcess = Start-Process "$PsHome\PowerShell.exe" -Verb RunAs -ArgumentList $RelaunchArgs -PassThru + } + catch + { + $Error[0] # Dump details about the last error + PrintMessageAndExit $UiStrings.ErrorLaunchAdminFailed $ErrorCodes.LaunchAdminFailed + } + + while (!($AdminProcess.HasExited)) + { + Start-Sleep -Seconds 2 + } + + # Check if all elevated operations were successful + if ($NeedDeveloperLicense) + { + if (CheckIfNeedDeveloperLicense) + { + PrintMessageAndExit $UiStrings.ErrorGetDeveloperLicenseFailed $ErrorCodes.GetDeveloperLicenseFailed + } + else + { + Write-Host $UiStrings.AcquireLicenseSuccessful + } + } + if ($NeedInstallCertificate) + { + $Signature = Get-AuthenticodeSignature $DeveloperPackagePath -Verbose + if ($Signature.Status -ne "Valid") + { + PrintMessageAndExit ($UiStrings.ErrorInstallCertificateFailed -f $Signature.Status) $ErrorCodes.InstallCertificateFailed + } + else + { + Write-Host $UiStrings.InstallCertificateSuccessful + } + } +} + +# +# Finds all applicable dependency packages according to OS architecture, and +# installs the developer package with its dependencies. The expected layout +# of dependencies is: +# +# +# \Dependencies +# .appx +# \x86 +# .appx +# \x64 +# .appx +# \arm +# .appx +# +function InstallPackageWithDependencies +{ + $DependencyPackagesDir = (Join-Path $ScriptDir "Dependencies") + $DependencyPackages = @() + if (Test-Path $DependencyPackagesDir) + { + # Get architecture-neutral dependencies + $DependencyPackages += Get-ChildItem (Join-Path $DependencyPackagesDir "*.appx") | Where-Object { $_.Mode -NotMatch "d" } + + # Get architecture-specific dependencies + if (($Env:Processor_Architecture -eq "x86" -or $Env:Processor_Architecture -eq "amd64") -and (Test-Path (Join-Path $DependencyPackagesDir "x86"))) + { + $DependencyPackages += Get-ChildItem (Join-Path $DependencyPackagesDir "x86\*.appx") | Where-Object { $_.Mode -NotMatch "d" } + } + if (($Env:Processor_Architecture -eq "amd64") -and (Test-Path (Join-Path $DependencyPackagesDir "x64"))) + { + $DependencyPackages += Get-ChildItem (Join-Path $DependencyPackagesDir "x64\*.appx") | Where-Object { $_.Mode -NotMatch "d" } + } + if (($Env:Processor_Architecture -eq "arm") -and (Test-Path (Join-Path $DependencyPackagesDir "arm"))) + { + $DependencyPackages += Get-ChildItem (Join-Path $DependencyPackagesDir "arm\*.appx") | Where-Object { $_.Mode -NotMatch "d" } + } + } + Write-Host $UiStrings.InstallingPackage + + $AddPackageSucceeded = $False + try + { + if ($DependencyPackages.FullName.Count -gt 0) + { + Write-Host $UiStrings.DependenciesFound + $DependencyPackages.FullName + Add-AppxPackage -Path $DeveloperPackagePath.FullName -DependencyPath $DependencyPackages.FullName -ForceApplicationShutdown + } + else + { + Add-AppxPackage -Path $DeveloperPackagePath.FullName -ForceApplicationShutdown + } + $AddPackageSucceeded = $? + } + catch + { + $Error[0] # Dump details about the last error + } + + if (!$AddPackageSucceeded) + { + if ($NeedInstallCertificate) + { + PrintMessageAndExit $UiStrings.ErrorAddPackageFailedWithCert $ErrorCodes.AddPackageFailed + } + else + { + PrintMessageAndExit $UiStrings.ErrorAddPackageFailed $ErrorCodes.AddPackageFailed + } + } +} + +# +# Main script logic when the user launches the script without parameters. +# +function DoStandardOperations +{ + # List all .appx files in the script directory + $PackagePath = Get-ChildItem (Join-Path $ScriptDir "*.appx") | Where-Object { $_.Mode -NotMatch "d" } + $PackageCount = ($PackagePath | Measure-Object).Count + + # List all .appxbundle files in the script directory + $BundlePath = Get-ChildItem (Join-Path $ScriptDir "*.appxbundle") | Where-Object { $_.Mode -NotMatch "d" } + $BundleCount = ($BundlePath | Measure-Object).Count + + # List all .eappx files in the script directory + $EncryptedPackagePath = Get-ChildItem (Join-Path $ScriptDir "*.eappx") | Where-Object { $_.Mode -NotMatch "d" } + $EncryptedPackageCount = ($EncryptedPackagePath | Measure-Object).Count + + # List all .eappxbundle files in the script directory + $EncryptedBundlePath = Get-ChildItem (Join-Path $ScriptDir "*.eappxbundle") | Where-Object { $_.Mode -NotMatch "d" } + $EncryptedBundleCount = ($EncryptedBundlePath | Measure-Object).Count + + $NumberOfPackagesAndBundles = $PackageCount + $BundleCount + $EncryptedPackageCount + $EncryptedBundleCount + + # There must be exactly 1 package/bundle + if ($NumberOfPackagesAndBundles -lt 1) + { + PrintMessageAndExit $UiStrings.ErrorNoPackageFound $ErrorCodes.NoPackageFound + } + elseif ($NumberOfPackagesAndBundles -gt 1) + { + PrintMessageAndExit $UiStrings.ErrorManyPackagesFound $ErrorCodes.ManyPackagesFound + } + + if ($PackageCount -eq 1) + { + $DeveloperPackagePath = $PackagePath + Write-Host ($UiStrings.PackageFound -f $DeveloperPackagePath.FullName) + } + elseif ($BundleCount -eq 1) + { + $DeveloperPackagePath = $BundlePath + Write-Host ($UiStrings.BundleFound -f $DeveloperPackagePath.FullName) + } + elseif ($EncryptedPackageCount -eq 1) + { + $DeveloperPackagePath = $EncryptedPackagePath + Write-Host ($UiStrings.EncryptedPackageFound -f $DeveloperPackagePath.FullName) + } + elseif ($EncryptedBundleCount -eq 1) + { + $DeveloperPackagePath = $EncryptedBundlePath + Write-Host ($UiStrings.EncryptedBundleFound -f $DeveloperPackagePath.FullName) + } + + # The package must be signed + $PackageSignature = Get-AuthenticodeSignature $DeveloperPackagePath + $PackageCertificate = $PackageSignature.SignerCertificate + if (!$PackageCertificate) + { + PrintMessageAndExit $UiStrings.ErrorPackageUnsigned $ErrorCodes.PackageUnsigned + } + + # Test if the package signature is trusted. If not, the corresponding certificate + # needs to be present in the current directory and needs to be installed. + $NeedInstallCertificate = ($PackageSignature.Status -ne "Valid") + + if ($NeedInstallCertificate) + { + # List all .cer files in the script directory + $DeveloperCertificatePath = Get-ChildItem (Join-Path $ScriptDir "*.cer") | Where-Object { $_.Mode -NotMatch "d" } + $DeveloperCertificateCount = ($DeveloperCertificatePath | Measure-Object).Count + + # There must be exactly 1 certificate + if ($DeveloperCertificateCount -lt 1) + { + PrintMessageAndExit $UiStrings.ErrorNoCertificateFound $ErrorCodes.NoCertificateFound + } + elseif ($DeveloperCertificateCount -gt 1) + { + PrintMessageAndExit $UiStrings.ErrorManyCertificatesFound $ErrorCodes.ManyCertificatesFound + } + + Write-Host ($UiStrings.CertificateFound -f $DeveloperCertificatePath.FullName) + + # The .cer file must have the format of a valid certificate + ValidateCertificateFormat $DeveloperCertificatePath + + # The package signature must match the certificate file + if ($PackageCertificate -ne (Get-PfxCertificate $DeveloperCertificatePath)) + { + PrintMessageAndExit $UiStrings.ErrorCertificateMismatch $ErrorCodes.CertificateMismatch + } + } + + $NeedDeveloperLicense = CheckIfNeedDeveloperLicense + + # Relaunch the script elevated with the necessary parameters if needed + if ($NeedDeveloperLicense -or $NeedInstallCertificate) + { + Write-Host $UiStrings.ElevateActions + if ($NeedDeveloperLicense) + { + Write-Host $UiStrings.ElevateActionDevLicense + } + if ($NeedInstallCertificate) + { + Write-Host $UiStrings.ElevateActionCertificate + } + + $IsAlreadyElevated = ([Security.Principal.WindowsIdentity]::GetCurrent().Groups.Value -contains "S-1-5-32-544") + if ($IsAlreadyElevated) + { + if ($Force -and $NeedDeveloperLicense) + { + PrintMessageAndExit $UiStrings.ErrorForceDeveloperLicense $ErrorCodes.ForceDeveloperLicense + } + if ($Force -and $NeedInstallCertificate) + { + Write-Warning $UiStrings.WarningInstallCert + } + } + else + { + if ($Force) + { + PrintMessageAndExit $UiStrings.ErrorForceElevate $ErrorCodes.ForceElevate + } + else + { + Write-Host $UiStrings.ElevateActionsContinue + Pause + } + } + + LaunchElevated + } + + InstallPackageWithDependencies +} + +# +# Main script entry point +# +if ($GetDeveloperLicense -or $CertificatePath) +{ + DoElevatedOperations +} +else +{ + DoStandardOperations + PrintMessageAndExit $UiStrings.Success $ErrorCodes.Success +} + +# SIG # Begin signature block +# MIIh0wYJKoZIhvcNAQcCoIIhxDCCIcACAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAnYmBUpv/sjF9s +# UpSJeaz8bsgho4m0HYf/wsPXcJL9raCCC1YwggTeMIIDxqADAgECAhMzAAABzLVb +# QhcHYBMRAAAAAAHMMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTAwHhcNMTcwOTEyMTgwNzA2WhcNMTgwOTEyMTgwNzA2WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQCpkHWajIMyG+isxN7HWH5SZZnnaBLtBXRLEpiJMDY/cSmbclWZF6E+H3v0HvLo +# hCALULWOtm+3EjbVybEjYo5+Qi7pDLBgdmiHLEjUkxt8N5VlUIdpp9Apb4hl4pnC +# MAyXYLAap4sKZFjds1GyrnH2V08otBfl1mCwK4Z5KCtZ9Bu+XDn0tM38OzmQaRl/ +# Z0xLO7qfWVUaBj/spPvlkKr+nungSu5JMg8xScKSzfkHNMcrADAQ/RDKGewkY+rd +# rYqT9caaCJQiz0KjQKdtzCxd1fFBx5N1yi9+K25guWjyqjBFNfnvkuF1JIlAXJ6m +# CZM33hi8CbRtRZpCwrlzMHGLAgMBAAGjggFdMIIBWTAfBgNVHSUEGDAWBgorBgEE +# AYI3PQYBBggrBgEFBQcDAzAdBgNVHQ4EFgQUWVXEgo8svduWnjnVL9Gj/TICsn8w +# NAYDVR0RBC0wK6QpMCcxDTALBgNVBAsTBE1PUFIxFjAUBgNVBAUTDTIzMDg2NSsy +# NDI0MDYwHwYDVR0jBBgwFoAU5vxfe7siAFjkck619CF0IzLm76wwVgYDVR0fBE8w +# TTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVj +# dHMvTWljQ29kU2lnUENBXzIwMTAtMDctMDYuY3JsMFoGCCsGAQUFBwEBBE4wTDBK +# BggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9N +# aWNDb2RTaWdQQ0FfMjAxMC0wNy0wNi5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG +# 9w0BAQsFAAOCAQEA0ZPuJ7HuV62ZGYwja2MQzDn3VRhyWDvxqbfO4MqWMFFTzJjw +# ElMYK+gamKQJtQHRI0ahePf/Zc5OWx5gLnN+sAl6SufXfXcCf9HFEYmwPzLthrfz +# EAnbjhHTVh30hVcCKf7quFG/Q+58VJ8fuZ3J4AwMThjQOPePqnDwKhu08ythe3CK +# Fu8799o79p+eLqW/hGUJJTmx0iAJ2rjZD+QnfUqDAXXsgnfQuaBDK6Y+pR71SwN0 +# JYijYGIlzY069pEKGwO9Z0LJo6uak/16Wu5R1vmGbkznAFgsQ9P6RMgDHp/vxMzh +# zbDJ6/pdCNpHgVcRJ25xwcZPfkQIrxzuq5UOozCCBnAwggRYoAMCAQICCmEMUkwA +# AAAAAAMwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX +# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg +# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl +# IEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwNjIwNDAxN1oXDTI1MDcwNjIwNTAxN1ow +# fjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl +# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMf +# TWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMDCCASIwDQYJKoZIhvcNAQEB +# BQADggEPADCCAQoCggEBAOkOZFB5Z7XE4/0JAEyelKz3VmjqRNjPxVhPqaV2fG1F +# utM5krSkHvn5ZYLkF9KP/UScCOhlk84sVYS/fQjjLiuoQSsYt6JLbklMaxUH3tHS +# wokecZTNtX9LtK8I2MyI1msXlDqTziY/7Ob+NJhX1R1dSfayKi7VhbtZP/iQtCuD +# dMorsztG4/BGScEXZlTJHL0dxFViV3L4Z7klIDTeXaallV6rKIDN1bKe5QO1Y9Oy +# FMjByIomCll/B+z/Du2AEjVMEqa+Ulv1ptrgiwtId9aFR9UQucboqu6Lai0FXGDG +# tCpbnCMcX0XjGhQebzfLGTOAaolNo2pmY3iT1TDPlR8CAwEAAaOCAeMwggHfMBAG +# CSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTm/F97uyIAWORyTrX0IXQjMubvrDAZ +# BgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ +# BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8E +# TzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9k +# dWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUHAQEETjBM +# MEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRz +# L01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBnQYDVR0gBIGVMIGSMIGPBgkr +# BgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +# bS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABl +# AGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJ +# KoZIhvcNAQELBQADggIBABp071dPKXvEFoV4uFDTIvwJnayCl/g0/yosl5US5eS/ +# z7+TyOM0qduBuNweAL7SNW+v5X95lXflAtTx69jNTh4bYaLCWiMa8IyoYlFFZwjj +# Pzwek/gwhRfIOUCm1w6zISnlpaFpjCKTzHSY56FHQ/JTrMAPMGl//tIlIG1vYdPf +# B9XZcgAsaYZ2PVHbpjlIyTdhbQfdUxnLp9Zhwr/ig6sP4GubldZ9KFGwiUpRpJps +# yLcfShoOaanX3MF+0Ulwqratu3JHYxf6ptaipobsqBBEm2O2smmJBsdGhnoYP+jF +# HSHVe/kCIy3FQcu/HUzIFu+xnH/8IktJim4V46Z/dlvRU3mRhZ3V0ts9czXzPK5U +# slJHasCqE5XSjhHamWdeMoz7N4XR3HWFnIfGWleFwr/dDY+Mmy3rtO7PJ9O1Xmn6 +# pBYEAackZ3PPTU+23gVWl3r36VJN9HcFT4XG2Avxju1CCdENduMjVngiJja+yrGM +# bqod5IXaRzNij6TJkTNfcR5Ar5hlySLoQiElihwtYNk3iUGJKhYP12E8lGhgUu/W +# R5mggEDuFYF3PpzgUxgaUB04lZseZjMTJzkXeIc2zk7DX7L1PUdTtuDl2wthPSrX +# kizON1o+QEIxpB8QCMJWnL8kXVECnWp50hfT2sGUjgd7JXFEqwZq5tTG3yOalnXF +# MYIV0zCCFc8CAQEwgZUwfjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMAIT +# MwAAAcy1W0IXB2ATEQAAAAABzDANBglghkgBZQMEAgEFAKCBwjAZBgkqhkiG9w0B +# CQMxDAYKKwYBBAGCNwIBBDAcBgorBgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAv +# BgkqhkiG9w0BCQQxIgQgzqwaCX0QjcEocY9opGCsXU79tW/zLu1Bm6otXPLysWIw +# VgYKKwYBBAGCNwIBDDFIMEagLIAqAEEAZABkAC0AQQBwAHAARABlAHYAUABhAGMA +# awBhAGcAZQAuAHAAcwAxoRaAFGh0dHA6Ly9taWNyb3NvZnQuY29tMA0GCSqGSIb3 +# DQEBAQUABIIBAFcndnQlRHOfKMcusesyIOnXq6VZSQ37nv5Hj+7OQh5ynYO8Hhhp +# J9ekfx4E+nhm9NuRZ0WzFm1Ups+QApGVj53wdIGYCeC8+a4wztaWCi6XCqda/DtQ +# VUU7r458+/1GGQPAlNVvpEoAAwd34Sjf2PH8ZgCOEGFI/8+D8NNZthSGmzKyUjW2 +# NKS4JVuu5/wBuJ8kauHfNmkUgfDiFCA3OVHAEoZeIL4QoDiAXL6TL6rJobVVvaYc +# AtyGReTSjXb1YtGt/v8ueKnCDilkfCiUPCThba6PBNpB13TZo9Ys+vxs9V48fkTw +# QZfUxALs0bSceM1oocVJ69/GBwQH08mDVRuhghNJMIITRQYKKwYBBAGCNwMDATGC +# EzUwghMxBgkqhkiG9w0BBwKgghMiMIITHgIBAzEPMA0GCWCGSAFlAwQCAQUAMIIB +# PAYLKoZIhvcNAQkQAQSgggErBIIBJzCCASMCAQEGCisGAQQBhFkKAwEwMTANBglg +# hkgBZQMEAgEFAAQgGY2BBegSvni/9ayUWJVzK0fChTbwkjUB7gcLBtHsoNQCBlqy +# m9F0bBgTMjAxODA0MDMyMTIxMTEuNzQ4WjAHAgEBgAIB9KCBuKSBtTCBsjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEMMAoGA1UECxMDQU9DMScw +# JQYDVQQLEx5uQ2lwaGVyIERTRSBFU046N0FCNS0yREYyLURBM0YxJTAjBgNVBAMT +# HE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2Wggg7NMIIGcTCCBFmgAwIBAgIK +# YQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV +# BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv +# c29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm +# aWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcNMjUwNzAxMjE0 +# NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIwDQYJKoZIhvcN +# AQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0VBDVpQoAgoX7 +# 7XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEwRA/xYIiEVEMM +# 1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQedGFnkV+BVLHP +# k0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKxXf13Hz3wV3Ws +# vYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4GkbaICDXoeByw +# 6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEAAaOCAeYwggHi +# MBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7fEYbxTNoWoVt +# VTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0T +# AQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBWBgNV +# HR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9w +# cm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUHAQEE +# TjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2Nl +# cnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0gAQH/BIGVMIGS +# MIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93d3cubWljcm9z +# b2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYBBQUHAgIwNB4y +# IB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUAbQBlAG4AdAAu +# IB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOhIW+z66bM9TG+ +# zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS+7lTjMz0YBKK +# dsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlKkVIArzgPF/Uv +# eYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon/VWvL/625Y4z +# u2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOiPPp/fZZqkHim +# bdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/fmNZJQ96LjlX +# dqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCIIYdqwUB5vvfHh +# AN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0cs0d9LiFAR6A +# +xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7aKLixqduWsqdC +# osnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQcdeh0sVV42ne +# V8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+NR4Iuto229Nf +# j950iEkSMIIE2TCCA8GgAwIBAgITMwAAAKteQJ3uRt8sbAAAAAAAqzANBgkqhkiG +# 9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G +# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYw +# JAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0xNjA5MDcx +# NzU2NTRaFw0xODA5MDcxNzU2NTRaMIGyMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMQwwCgYDVQQLEwNBT0MxJzAlBgNVBAsTHm5DaXBoZXIgRFNF +# IEVTTjo3QUI1LTJERjItREEzRjElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3Rh +# bXAgU2VydmljZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALPmflCY +# oEYJsGYBJoo00ynJfZg1mgws3TPKA88OAtcL77vhyC5JpNPQ2dxz07tFhZxd5QH1 +# /CumYpvhgAKn8zcoRUs13ri6bvuGkO3hqxDyOPB3wlvPQBPuOUob0ip6HvyLAfip +# vJqPeQPD43DRrADzpsDLId101NSHhCiBrRpZUmLe7P3MxQOJTE0Hs6DUHp57AcI6 +# zWNpCZCIE5PDLZShLAQpuDfVSrUxiuS+bpEz23zuzDJ8XMEt4biw1iKJISokeeLk +# o88uGdZVyUgRJKSoyfVIyFLCMZKQ+mY2APmhMBpoD61pZEta8etpn3OGerZgH5SR +# Xo4gvdTfDiqQyEsCAwEAAaOCARswggEXMB0GA1UdDgQWBBQNx0fQHGDL6cBrlMxf +# Bg5iuNhqpzAfBgNVHSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8E +# TzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9k +# dWN0cy9NaWNUaW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBM +# MEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRz +# L01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1Ud +# JQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IBAQA/n/66LmHxciqtqhVm +# laAES32zwkbd0OtbQDz0jHUFraGBbyR7DS7So4m68DYr+cjFdw56uHzeVOL9DyZf +# PAx2LfoY0aIQqIheSypZlchfd3/+RCS4ApmEkZSvAsemKoaEsYv4kSTH0G6jNr/7 +# +LgHmm8+ae228ZthZ1StNujb8trlYqY7yG3MQ5omIvNEjOstRyZ108Lmm9aKnRVP +# k+iAIM4OLZUDU/NA4BrcaVxMIddKEygvRdWC/aTB3yE7yes/OKU/MvrNBku4H7yb +# GrORsZNd4v95oRbRuDX24ZHK93Hs/f6Kw+BlNVjLpF4PluanIq9o8z7P3qSNqtju +# EqTioYIDdzCCAl8CAQEwgeKhgbikgbUwgbIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xDDAKBgNVBAsTA0FPQzEnMCUGA1UECxMebkNpcGhlciBE +# U0UgRVNOOjdBQjUtMkRGMi1EQTNGMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T +# dGFtcCBTZXJ2aWNloiUKAQEwCQYFKw4DAhoFAAMVAMnsu0gtNdmUvraO9yapMW6K +# h44yoIHBMIG+pIG7MIG4MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMQwwCgYDVQQLEwNBT0MxJzAlBgNVBAsTHm5DaXBoZXIgTlRTIEVTTjoyNjY1 +# LTRDM0YtQzVERTErMCkGA1UEAxMiTWljcm9zb2Z0IFRpbWUgU291cmNlIE1hc3Rl +# ciBDbG9jazANBgkqhkiG9w0BAQUFAAIFAN5ty40wIhgPMjAxODA0MDMwOTQ0NDVa +# GA8yMDE4MDQwNDA5NDQ0NVowdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA3m3LjQIB +# ADAKAgEAAgINqgIB/zAHAgEAAgIaVDAKAgUA3m8dDQIBADA2BgorBgEEAYRZCgQC +# MSgwJjAMBgorBgEEAYRZCgMBoAowCAIBAAIDFuNgoQowCAIBAAIDB6EgMA0GCSqG +# SIb3DQEBBQUAA4IBAQBHe3W69oqVtg2VurBY+FU5QhETBgRxdboyr8cCQ1lnpj7W +# G9pDF7+CXryijr4K1fvf3uC6lCA3eBoiv6VL8Lc/TGJPMgox8ONfKP52xNK3q4I5 +# V71DO+SXmFdrYnahHPIFSHeD+pyhaN8F6446GPOwrAbaU3hFrYC9mTZSKjFA0FWU +# 5CU2KUt51pSzp/fuOpeAKVwSpy+eCy/H1njcPSQO2G79foGNIIaw5qC8GpH7QFZ+ +# SjqDPzu7f1LKfws6IFrmI2CQYB8f1+LsuqhWnAsfdmpHu7TKowLW0dT4fNeWEHO/ +# dZ+pfyfVeHwpeNlCfl3aXoP/k8gu5SCo0GS49/cXMYIC9TCCAvECAQEwgZMwfDEL +# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWlj +# cm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAACrXkCd7kbfLGwAAAAAAKsw +# DQYJYIZIAWUDBAIBBQCgggEyMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAv +# BgkqhkiG9w0BCQQxIgQgdBSHtxgTryyfOfT5bK8TQJ3J157h4n96B0jIHh2o9CUw +# geIGCyqGSIb3DQEJEAIMMYHSMIHPMIHMMIGxBBTJ7LtILTXZlL62jvcmqTFuioeO +# MjCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAw +# DgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x +# JjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAAAq15A +# ne5G3yxsAAAAAACrMBYEFKDoGoGiVUmWbBluFeNftHVskSx6MA0GCSqGSIb3DQEB +# CwUABIIBABwjv1Y9ECsSIdMR4q4Pz1AVH6yUzeQW0lRs14wm/ll+gOo3CzFZ64my +# e7XeF05DKt714NROS3snw/oTabFsfmbo617KkgFHTXA0Kic6YtfkDbBWtTaXoFQF +# dev2xgEC4DMI6+w+h9uwDtHo7A7fsTR9vUa0MHHyssHJnAn9xgIS/Q+GCpU9O/tl +# kDGKZmQyEI4+G01lxg7XEQfC9w28q8M4XQ6I7skB31ur5Nz0AiXdM1MbUrqmYkJK +# uIJbX3cb38wbEqQ1JCezwumroAmPtsdcWy3A82+0w9u7zp8mUcpDyS/N1YydanPF +# VasOmwcKWHBL9IaF6FRPlwxSK0q5sCk= +# SIG # End signature block diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..89c0d41 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..2526efa Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..b84bf08 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..89c0d41 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..cf277b7 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..13b8559 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..20e94e6 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..f4661a9 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..5573475 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..92673d2 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..f81f589 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..56a4a38 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..2e61dc7 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..74fb4fd Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1 b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1 new file mode 100644 index 0000000..0437598 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1 differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.NET.CoreRuntime.1.1.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.NET.CoreRuntime.1.1.appx new file mode 100644 index 0000000..722085c Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.NET.CoreRuntime.1.1.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.VCLibs.ARM.14.00.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.VCLibs.ARM.14.00.appx new file mode 100644 index 0000000..41b4a8f Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/ARM/Microsoft.VCLibs.ARM.14.00.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.NET.CoreRuntime.1.1.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.NET.CoreRuntime.1.1.appx new file mode 100644 index 0000000..2c5fa52 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.NET.CoreRuntime.1.1.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.VCLibs.x64.14.00.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.VCLibs.x64.14.00.appx new file mode 100644 index 0000000..770a1ee Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x64/Microsoft.VCLibs.x64.14.00.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.NET.CoreRuntime.1.1.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.NET.CoreRuntime.1.1.appx new file mode 100644 index 0000000..5477be4 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.NET.CoreRuntime.1.1.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.VCLibs.x86.14.00.appx b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.VCLibs.x86.14.00.appx new file mode 100644 index 0000000..5b0e640 Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/Dependencies/x86/Microsoft.VCLibs.x86.14.00.appx differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxbundle b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxbundle new file mode 100644 index 0000000..6e0ac3b Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxbundle differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxsym b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxsym new file mode 100644 index 0000000..e8e47eb Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.appxsym differ diff --git a/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.cer b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.cer new file mode 100644 index 0000000..b00bb2d Binary files /dev/null and b/App/MentorSystemWebRTC/AppPackages/MentorSystemWebRTC_1.1.0.0_Test/MentorSystemWebRTC_1.1.0.0_x86.cer differ diff --git a/App/MentorSystemWebRTC/Assembly-CSharp.dll b/App/MentorSystemWebRTC/Assembly-CSharp.dll index 98b8901..b8b8aad 100644 Binary files a/App/MentorSystemWebRTC/Assembly-CSharp.dll and b/App/MentorSystemWebRTC/Assembly-CSharp.dll differ diff --git a/App/MentorSystemWebRTC/BundleArtifacts/x86.txt b/App/MentorSystemWebRTC/BundleArtifacts/x86.txt index bde619a..1dcbc57 100644 --- a/App/MentorSystemWebRTC/BundleArtifacts/x86.txt +++ b/App/MentorSystemWebRTC/BundleArtifacts/x86.txt @@ -1,2 +1,2 @@ -MainPackage=C:\Users\Holol\OneDrive\Documents\Unity Projects\MentorSystemUWPWebRTC\App\MentorSystemWebRTC\bin\x86\Release\MentorSystemWebRTC_1.0.3.0_x86.appx -SymbolPackage=C:\Users\Holol\OneDrive\Documents\Unity Projects\MentorSystemUWPWebRTC\App\MentorSystemWebRTC\AppPackages\MentorSystemWebRTC_1.0.3.0_Test\MentorSystemWebRTC_1.0.3.0_x86.appxsym +MainPackage=C:\Users\Holol\OneDrive\Documents\Unity Projects\MentorSystemUWPWebRTC\App\MentorSystemWebRTC\bin\x86\Release\MentorSystemWebRTC_1.1.0.0_x86.appx +SymbolPackage=C:\Users\Holol\OneDrive\Documents\Unity Projects\MentorSystemUWPWebRTC\App\MentorSystemWebRTC\AppPackages\MentorSystemWebRTC_1.1.0.0_Test\MentorSystemWebRTC_1.1.0.0_x86.appxsym diff --git a/App/MentorSystemWebRTC/Data/globalgamemanagers b/App/MentorSystemWebRTC/Data/globalgamemanagers index 912d96f..c8724a4 100644 Binary files a/App/MentorSystemWebRTC/Data/globalgamemanagers and b/App/MentorSystemWebRTC/Data/globalgamemanagers differ diff --git a/App/MentorSystemWebRTC/Data/level0 b/App/MentorSystemWebRTC/Data/level0 index b1a4f2d..4f9cc17 100644 Binary files a/App/MentorSystemWebRTC/Data/level0 and b/App/MentorSystemWebRTC/Data/level0 differ diff --git a/App/MentorSystemWebRTC/EngineIoClientDotNet.dll b/App/MentorSystemWebRTC/EngineIoClientDotNet.dll index 8b19030..a8edc68 100644 Binary files a/App/MentorSystemWebRTC/EngineIoClientDotNet.dll and b/App/MentorSystemWebRTC/EngineIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/HoloPoseClientCore.dll b/App/MentorSystemWebRTC/HoloPoseClientCore.dll index cad254d..60ae028 100644 Binary files a/App/MentorSystemWebRTC/HoloPoseClientCore.dll and b/App/MentorSystemWebRTC/HoloPoseClientCore.dll differ diff --git a/App/MentorSystemWebRTC/Newtonsoft.Json.dll b/App/MentorSystemWebRTC/Newtonsoft.Json.dll index df4d9e2..7ba65fd 100644 Binary files a/App/MentorSystemWebRTC/Newtonsoft.Json.dll and b/App/MentorSystemWebRTC/Newtonsoft.Json.dll differ diff --git a/App/MentorSystemWebRTC/Package.appxmanifest b/App/MentorSystemWebRTC/Package.appxmanifest index 6ddbdad..20df770 100644 --- a/App/MentorSystemWebRTC/Package.appxmanifest +++ b/App/MentorSystemWebRTC/Package.appxmanifest @@ -1,6 +1,6 @@  - + MentorSystemWebRTC diff --git a/App/MentorSystemWebRTC/SocketIoClientDotNet.dll b/App/MentorSystemWebRTC/SocketIoClientDotNet.dll index 05bc050..ad962b4 100644 Binary files a/App/MentorSystemWebRTC/SocketIoClientDotNet.dll and b/App/MentorSystemWebRTC/SocketIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/Unity.Analytics.DataPrivacy.dll b/App/MentorSystemWebRTC/Unity.Analytics.DataPrivacy.dll index 90b44c2..c3dc126 100644 Binary files a/App/MentorSystemWebRTC/Unity.Analytics.DataPrivacy.dll and b/App/MentorSystemWebRTC/Unity.Analytics.DataPrivacy.dll differ diff --git a/App/MentorSystemWebRTC/Unity.Analytics.StandardEvents.dll b/App/MentorSystemWebRTC/Unity.Analytics.StandardEvents.dll index ae74c0d..1913dbb 100644 Binary files a/App/MentorSystemWebRTC/Unity.Analytics.StandardEvents.dll and b/App/MentorSystemWebRTC/Unity.Analytics.StandardEvents.dll differ diff --git a/App/MentorSystemWebRTC/Unity.Analytics.Tracker.dll b/App/MentorSystemWebRTC/Unity.Analytics.Tracker.dll index a518a14..b833e3b 100644 Binary files a/App/MentorSystemWebRTC/Unity.Analytics.Tracker.dll and b/App/MentorSystemWebRTC/Unity.Analytics.Tracker.dll differ diff --git a/App/MentorSystemWebRTC/Unity.TextMeshPro.dll b/App/MentorSystemWebRTC/Unity.TextMeshPro.dll index 11560e1..3e7e4cd 100644 Binary files a/App/MentorSystemWebRTC/Unity.TextMeshPro.dll and b/App/MentorSystemWebRTC/Unity.TextMeshPro.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.AIModule.dll b/App/MentorSystemWebRTC/UnityEngine.AIModule.dll index 7e087df..99171f1 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.AIModule.dll and b/App/MentorSystemWebRTC/UnityEngine.AIModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.ARModule.dll b/App/MentorSystemWebRTC/UnityEngine.ARModule.dll index 923a3ac..1430721 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.ARModule.dll and b/App/MentorSystemWebRTC/UnityEngine.ARModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.AccessibilityModule.dll b/App/MentorSystemWebRTC/UnityEngine.AccessibilityModule.dll index 25cd97e..6c82025 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.AccessibilityModule.dll and b/App/MentorSystemWebRTC/UnityEngine.AccessibilityModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.AnimationModule.dll b/App/MentorSystemWebRTC/UnityEngine.AnimationModule.dll index 4fa032b..be8b678 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.AnimationModule.dll and b/App/MentorSystemWebRTC/UnityEngine.AnimationModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.AssetBundleModule.dll b/App/MentorSystemWebRTC/UnityEngine.AssetBundleModule.dll index d6c7c1a..24e8a24 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.AssetBundleModule.dll and b/App/MentorSystemWebRTC/UnityEngine.AssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.AudioModule.dll b/App/MentorSystemWebRTC/UnityEngine.AudioModule.dll index e77091c..4ab75fc 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.AudioModule.dll and b/App/MentorSystemWebRTC/UnityEngine.AudioModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.ClothModule.dll b/App/MentorSystemWebRTC/UnityEngine.ClothModule.dll index 1d29f97..a8283cc 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.ClothModule.dll and b/App/MentorSystemWebRTC/UnityEngine.ClothModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.CoreModule.dll b/App/MentorSystemWebRTC/UnityEngine.CoreModule.dll index 3e08b80..71f8393 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.CoreModule.dll and b/App/MentorSystemWebRTC/UnityEngine.CoreModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.CrashReportingModule.dll b/App/MentorSystemWebRTC/UnityEngine.CrashReportingModule.dll index 6685074..12d0a3d 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.CrashReportingModule.dll and b/App/MentorSystemWebRTC/UnityEngine.CrashReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.DirectorModule.dll b/App/MentorSystemWebRTC/UnityEngine.DirectorModule.dll index 0073440..ba57567 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.DirectorModule.dll and b/App/MentorSystemWebRTC/UnityEngine.DirectorModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.GameCenterModule.dll b/App/MentorSystemWebRTC/UnityEngine.GameCenterModule.dll index 5e34b64..6cfa301 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.GameCenterModule.dll and b/App/MentorSystemWebRTC/UnityEngine.GameCenterModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.GridModule.dll b/App/MentorSystemWebRTC/UnityEngine.GridModule.dll index 97c6e1c..c867b22 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.GridModule.dll and b/App/MentorSystemWebRTC/UnityEngine.GridModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.IMGUIModule.dll b/App/MentorSystemWebRTC/UnityEngine.IMGUIModule.dll index 06a92a1..f05033f 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.IMGUIModule.dll and b/App/MentorSystemWebRTC/UnityEngine.IMGUIModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.ImageConversionModule.dll b/App/MentorSystemWebRTC/UnityEngine.ImageConversionModule.dll index 7e69774..50186be 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.ImageConversionModule.dll and b/App/MentorSystemWebRTC/UnityEngine.ImageConversionModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.InputModule.dll b/App/MentorSystemWebRTC/UnityEngine.InputModule.dll index 6d2c98c..b114220 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.InputModule.dll and b/App/MentorSystemWebRTC/UnityEngine.InputModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.JSONSerializeModule.dll b/App/MentorSystemWebRTC/UnityEngine.JSONSerializeModule.dll index a844617..0f3e6c2 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.JSONSerializeModule.dll and b/App/MentorSystemWebRTC/UnityEngine.JSONSerializeModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.LocalizationModule.dll b/App/MentorSystemWebRTC/UnityEngine.LocalizationModule.dll index e60e770..b23a6bd 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.LocalizationModule.dll and b/App/MentorSystemWebRTC/UnityEngine.LocalizationModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.Networking.dll b/App/MentorSystemWebRTC/UnityEngine.Networking.dll index d78096a..3eade27 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.Networking.dll and b/App/MentorSystemWebRTC/UnityEngine.Networking.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.ParticleSystemModule.dll b/App/MentorSystemWebRTC/UnityEngine.ParticleSystemModule.dll index c655cd9..547b424 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.ParticleSystemModule.dll and b/App/MentorSystemWebRTC/UnityEngine.ParticleSystemModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.PerformanceReportingModule.dll b/App/MentorSystemWebRTC/UnityEngine.PerformanceReportingModule.dll index 9e4bca5..930acac 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.PerformanceReportingModule.dll and b/App/MentorSystemWebRTC/UnityEngine.PerformanceReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.Physics2DModule.dll b/App/MentorSystemWebRTC/UnityEngine.Physics2DModule.dll index 0a201f6..83122e0 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.Physics2DModule.dll and b/App/MentorSystemWebRTC/UnityEngine.Physics2DModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.PhysicsModule.dll b/App/MentorSystemWebRTC/UnityEngine.PhysicsModule.dll index da6ad24..293bf7b 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.PhysicsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.PhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.ScreenCaptureModule.dll b/App/MentorSystemWebRTC/UnityEngine.ScreenCaptureModule.dll index 14add87..e6f2cbb 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.ScreenCaptureModule.dll and b/App/MentorSystemWebRTC/UnityEngine.ScreenCaptureModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.SharedInternalsModule.dll b/App/MentorSystemWebRTC/UnityEngine.SharedInternalsModule.dll index 9dc214d..42df987 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.SharedInternalsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.SharedInternalsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.SpatialTracking.dll b/App/MentorSystemWebRTC/UnityEngine.SpatialTracking.dll index cc949f9..b8e4ba7 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.SpatialTracking.dll and b/App/MentorSystemWebRTC/UnityEngine.SpatialTracking.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.SpriteMaskModule.dll b/App/MentorSystemWebRTC/UnityEngine.SpriteMaskModule.dll index 677c6df..af36f17 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.SpriteMaskModule.dll and b/App/MentorSystemWebRTC/UnityEngine.SpriteMaskModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.SpriteShapeModule.dll b/App/MentorSystemWebRTC/UnityEngine.SpriteShapeModule.dll index 8ddcce3..1817b64 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.SpriteShapeModule.dll and b/App/MentorSystemWebRTC/UnityEngine.SpriteShapeModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.StreamingModule.dll b/App/MentorSystemWebRTC/UnityEngine.StreamingModule.dll index 651931f..78450b2 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.StreamingModule.dll and b/App/MentorSystemWebRTC/UnityEngine.StreamingModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.StyleSheetsModule.dll b/App/MentorSystemWebRTC/UnityEngine.StyleSheetsModule.dll index c7b0bb8..5bdcf18 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.StyleSheetsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.StyleSheetsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.SubstanceModule.dll b/App/MentorSystemWebRTC/UnityEngine.SubstanceModule.dll index 59b22a2..a64593b 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.SubstanceModule.dll and b/App/MentorSystemWebRTC/UnityEngine.SubstanceModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.TerrainModule.dll b/App/MentorSystemWebRTC/UnityEngine.TerrainModule.dll index 7ba8d6e..71e74fa 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.TerrainModule.dll and b/App/MentorSystemWebRTC/UnityEngine.TerrainModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.TerrainPhysicsModule.dll b/App/MentorSystemWebRTC/UnityEngine.TerrainPhysicsModule.dll index 60ce8ee..23290b8 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.TerrainPhysicsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.TerrainPhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.TextCoreModule.dll b/App/MentorSystemWebRTC/UnityEngine.TextCoreModule.dll index 328cc1b..d33662b 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.TextCoreModule.dll and b/App/MentorSystemWebRTC/UnityEngine.TextCoreModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.TextRenderingModule.dll b/App/MentorSystemWebRTC/UnityEngine.TextRenderingModule.dll index b69a203..06ec074 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.TextRenderingModule.dll and b/App/MentorSystemWebRTC/UnityEngine.TextRenderingModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.TilemapModule.dll b/App/MentorSystemWebRTC/UnityEngine.TilemapModule.dll index eed95b3..eb653e5 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.TilemapModule.dll and b/App/MentorSystemWebRTC/UnityEngine.TilemapModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.Timeline.dll b/App/MentorSystemWebRTC/UnityEngine.Timeline.dll index 2c49afc..1d26211 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.Timeline.dll and b/App/MentorSystemWebRTC/UnityEngine.Timeline.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UI.dll b/App/MentorSystemWebRTC/UnityEngine.UI.dll index ac2cdf0..ac0b462 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UI.dll and b/App/MentorSystemWebRTC/UnityEngine.UI.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UIElementsModule.dll b/App/MentorSystemWebRTC/UnityEngine.UIElementsModule.dll index f4a124e..5d37605 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UIElementsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UIElementsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UIModule.dll b/App/MentorSystemWebRTC/UnityEngine.UIModule.dll index b4debfb..e525cb0 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UIModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UIModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UNETModule.dll b/App/MentorSystemWebRTC/UnityEngine.UNETModule.dll index ea82179..75f9a53 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UNETModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UNETModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityAnalyticsModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityAnalyticsModule.dll index 0e335bd..892b659 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityAnalyticsModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityAnalyticsModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityConnectModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityConnectModule.dll index 52424c8..6efc777 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityConnectModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityConnectModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAssetBundleModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAssetBundleModule.dll index 114a793..9212aba 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAssetBundleModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAudioModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAudioModule.dll index 02fcfdf..30c82b7 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAudioModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestAudioModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestModule.dll index f921abb..a251ff3 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestTextureModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestTextureModule.dll index c5b86b7..05c44f4 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestTextureModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestTextureModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestWWWModule.dll b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestWWWModule.dll index 8751ce2..a0f258a 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestWWWModule.dll and b/App/MentorSystemWebRTC/UnityEngine.UnityWebRequestWWWModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.VFXModule.dll b/App/MentorSystemWebRTC/UnityEngine.VFXModule.dll index 45267bb..761ebef 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.VFXModule.dll and b/App/MentorSystemWebRTC/UnityEngine.VFXModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.VRModule.dll b/App/MentorSystemWebRTC/UnityEngine.VRModule.dll index 3dfa53f..7b6771f 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.VRModule.dll and b/App/MentorSystemWebRTC/UnityEngine.VRModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.VehiclesModule.dll b/App/MentorSystemWebRTC/UnityEngine.VehiclesModule.dll index b3588e0..cab7ea7 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.VehiclesModule.dll and b/App/MentorSystemWebRTC/UnityEngine.VehiclesModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.VideoModule.dll b/App/MentorSystemWebRTC/UnityEngine.VideoModule.dll index 6d1a954..a036fa0 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.VideoModule.dll and b/App/MentorSystemWebRTC/UnityEngine.VideoModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.WindModule.dll b/App/MentorSystemWebRTC/UnityEngine.WindModule.dll index 95d89b7..b358dc6 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.WindModule.dll and b/App/MentorSystemWebRTC/UnityEngine.WindModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.XRModule.dll b/App/MentorSystemWebRTC/UnityEngine.XRModule.dll index 653c2f8..7b4c4f3 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.XRModule.dll and b/App/MentorSystemWebRTC/UnityEngine.XRModule.dll differ diff --git a/App/MentorSystemWebRTC/UnityEngine.dll b/App/MentorSystemWebRTC/UnityEngine.dll index 335fd73..4d4b677 100644 Binary files a/App/MentorSystemWebRTC/UnityEngine.dll and b/App/MentorSystemWebRTC/UnityEngine.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Assembly-CSharp.dll b/App/MentorSystemWebRTC/Unprocessed/Assembly-CSharp.dll index 13ce1ca..4edb5ab 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Assembly-CSharp.dll and b/App/MentorSystemWebRTC/Unprocessed/Assembly-CSharp.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/EngineIoClientDotNet.dll b/App/MentorSystemWebRTC/Unprocessed/EngineIoClientDotNet.dll index ec967c2..2f0bcf4 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/EngineIoClientDotNet.dll and b/App/MentorSystemWebRTC/Unprocessed/EngineIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/HoloPoseClientCore.dll b/App/MentorSystemWebRTC/Unprocessed/HoloPoseClientCore.dll index 0a4575b..e534180 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/HoloPoseClientCore.dll and b/App/MentorSystemWebRTC/Unprocessed/HoloPoseClientCore.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Newtonsoft.Json.dll b/App/MentorSystemWebRTC/Unprocessed/Newtonsoft.Json.dll index 9bc7dfe..7234e19 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Newtonsoft.Json.dll and b/App/MentorSystemWebRTC/Unprocessed/Newtonsoft.Json.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/SocketIoClientDotNet.dll b/App/MentorSystemWebRTC/Unprocessed/SocketIoClientDotNet.dll index 4c84c58..b4eabd3 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/SocketIoClientDotNet.dll and b/App/MentorSystemWebRTC/Unprocessed/SocketIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.DataPrivacy.dll b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.DataPrivacy.dll index e4d78be..b5b40f2 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.DataPrivacy.dll and b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.DataPrivacy.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.StandardEvents.dll b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.StandardEvents.dll index 3c010a5..2e81399 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.StandardEvents.dll and b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.StandardEvents.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.Tracker.dll b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.Tracker.dll index 3b5fcef..731b6b7 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.Tracker.dll and b/App/MentorSystemWebRTC/Unprocessed/Unity.Analytics.Tracker.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/Unity.TextMeshPro.dll b/App/MentorSystemWebRTC/Unprocessed/Unity.TextMeshPro.dll index 2e7330b..0fc7dc2 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/Unity.TextMeshPro.dll and b/App/MentorSystemWebRTC/Unprocessed/Unity.TextMeshPro.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AIModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AIModule.dll index 5bf08f4..9e5b4fa 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AIModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AIModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ARModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ARModule.dll index 2bc4e39..9ae85b2 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ARModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ARModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AccessibilityModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AccessibilityModule.dll index e9aa52f..4ccf4a8 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AccessibilityModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AccessibilityModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AnimationModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AnimationModule.dll index 1250cc8..67701e1 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AnimationModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AnimationModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AssetBundleModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AssetBundleModule.dll index c149833..7f367aa 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AssetBundleModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AudioModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AudioModule.dll index d6af750..77ffa3e 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AudioModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.AudioModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ClothModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ClothModule.dll index da0e7f3..1266ce8 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ClothModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ClothModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CoreModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CoreModule.dll index eec4d58..9e1f91c 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CoreModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CoreModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CrashReportingModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CrashReportingModule.dll index 0499a91..91fb263 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CrashReportingModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.CrashReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.DirectorModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.DirectorModule.dll index 99e2c61..08bbe15 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.DirectorModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.DirectorModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GameCenterModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GameCenterModule.dll index 2a8895c..fd2fa6a 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GameCenterModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GameCenterModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GridModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GridModule.dll index ef811ae..86219fc 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GridModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.GridModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.IMGUIModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.IMGUIModule.dll index 6c502f6..4112564 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.IMGUIModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.IMGUIModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ImageConversionModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ImageConversionModule.dll index 25e9ab8..ad4dc27 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ImageConversionModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ImageConversionModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.InputModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.InputModule.dll index a701491..cc707f7 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.InputModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.InputModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.JSONSerializeModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.JSONSerializeModule.dll index 8ccfc7b..278520b 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.JSONSerializeModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.JSONSerializeModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.LocalizationModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.LocalizationModule.dll index 393f73e..cc82df6 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.LocalizationModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.LocalizationModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Networking.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Networking.dll index 4a8081a..d7395a2 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Networking.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Networking.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ParticleSystemModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ParticleSystemModule.dll index 4fcbb6a..4369c9a 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ParticleSystemModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ParticleSystemModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PerformanceReportingModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PerformanceReportingModule.dll index ba145cf..5ace634 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PerformanceReportingModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PerformanceReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Physics2DModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Physics2DModule.dll index 3cbb2d5..bf6d9cd 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Physics2DModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Physics2DModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PhysicsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PhysicsModule.dll index 3d8dae3..f66c541 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PhysicsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.PhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ScreenCaptureModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ScreenCaptureModule.dll index 552a119..98bdd56 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ScreenCaptureModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.ScreenCaptureModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SharedInternalsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SharedInternalsModule.dll index 48dda68..a4441c6 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SharedInternalsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SharedInternalsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpatialTracking.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpatialTracking.dll index a2e4b64..00e686a 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpatialTracking.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpatialTracking.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteMaskModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteMaskModule.dll index 546d723..453744d 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteMaskModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteMaskModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteShapeModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteShapeModule.dll index 56f38af..eb3c64b 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteShapeModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SpriteShapeModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StreamingModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StreamingModule.dll index ab0a976..85e00df 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StreamingModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StreamingModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StyleSheetsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StyleSheetsModule.dll index 53b6d85..a6d4170 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StyleSheetsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.StyleSheetsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SubstanceModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SubstanceModule.dll index b9be731..7730473 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SubstanceModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.SubstanceModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainModule.dll index 382d4a8..aec2514 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainPhysicsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainPhysicsModule.dll index ed92991..d3bb0d3 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainPhysicsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TerrainPhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextCoreModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextCoreModule.dll index cc4201a..e24ba3c 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextCoreModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextCoreModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextRenderingModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextRenderingModule.dll index 2305457..71447b7 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextRenderingModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TextRenderingModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TilemapModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TilemapModule.dll index ec0f92d..414d115 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TilemapModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.TilemapModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Timeline.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Timeline.dll index 79fafe2..dbdcec1 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Timeline.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.Timeline.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UI.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UI.dll index 7a01033..fc90a4e 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UI.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UI.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIElementsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIElementsModule.dll index 4ddf4da..25d35fd 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIElementsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIElementsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIModule.dll index 0c40bdb..f27006d 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UIModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UNETModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UNETModule.dll index 04f7709..564dcca 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UNETModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UNETModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityAnalyticsModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityAnalyticsModule.dll index e541f8e..2c559c0 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityAnalyticsModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityAnalyticsModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityConnectModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityConnectModule.dll index a5ceb3a..f5439cd 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityConnectModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityConnectModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAssetBundleModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAssetBundleModule.dll index 463bdbf..48fd5f2 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAssetBundleModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAudioModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAudioModule.dll index 4aac78b..89267cf 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAudioModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestAudioModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestModule.dll index 288f9ad..93be100 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestTextureModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestTextureModule.dll index 773ed1d..8c8eac0 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestTextureModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestTextureModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestWWWModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestWWWModule.dll index c1ff279..ed64682 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestWWWModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.UnityWebRequestWWWModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VFXModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VFXModule.dll index 5acd774..e4f614a 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VFXModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VFXModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VRModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VRModule.dll index fbc6587..322cfa6 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VRModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VRModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VehiclesModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VehiclesModule.dll index 580e7b8..000ea34 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VehiclesModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VehiclesModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VideoModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VideoModule.dll index 651b2d1..a7e8572 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VideoModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.VideoModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.WindModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.WindModule.dll index 5b62723..79d0334 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.WindModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.WindModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.XRModule.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.XRModule.dll index 05e9cf2..653b604 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.XRModule.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.XRModule.dll differ diff --git a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.dll b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.dll index 335fd73..4d4b677 100644 Binary files a/App/MentorSystemWebRTC/Unprocessed/UnityEngine.dll and b/App/MentorSystemWebRTC/Unprocessed/UnityEngine.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Assembly-CSharp.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Assembly-CSharp.dll index 98b8901..ff782d5 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Assembly-CSharp.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Assembly-CSharp.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/globalgamemanagers b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/globalgamemanagers index 912d96f..c8724a4 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/globalgamemanagers and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/globalgamemanagers differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/level0 b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/level0 index b1a4f2d..4f9cc17 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/level0 and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Data/level0 differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/EngineIoClientDotNet.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/EngineIoClientDotNet.dll index 8b19030..a83e426 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/EngineIoClientDotNet.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/EngineIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/HoloPoseClientCore.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/HoloPoseClientCore.dll index cad254d..6851190 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/HoloPoseClientCore.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/HoloPoseClientCore.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Newtonsoft.Json.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Newtonsoft.Json.dll index df4d9e2..b72d0ee 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Newtonsoft.Json.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Newtonsoft.Json.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/SocketIoClientDotNet.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/SocketIoClientDotNet.dll index 05bc050..05959e2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/SocketIoClientDotNet.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/SocketIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.DataPrivacy.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.DataPrivacy.dll index 90b44c2..fc9c631 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.DataPrivacy.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.DataPrivacy.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.StandardEvents.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.StandardEvents.dll index ae74c0d..e5d60a7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.StandardEvents.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.StandardEvents.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.Tracker.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.Tracker.dll index a518a14..c6635e1 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.Tracker.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.Analytics.Tracker.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.TextMeshPro.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.TextMeshPro.dll index 11560e1..1e00d08 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.TextMeshPro.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/Unity.TextMeshPro.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AIModule.dll index 7e087df..21b922b 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ARModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ARModule.dll index 923a3ac..1fbc996 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ARModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ARModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AccessibilityModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AccessibilityModule.dll index 25cd97e..773903c 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AccessibilityModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AccessibilityModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AnimationModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AnimationModule.dll index 4fa032b..1f474cf 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AnimationModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AnimationModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AssetBundleModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AssetBundleModule.dll index d6c7c1a..2d65c8c 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AssetBundleModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AudioModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AudioModule.dll index e77091c..defec38 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AudioModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.AudioModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ClothModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ClothModule.dll index 1d29f97..0524750 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ClothModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ClothModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CoreModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CoreModule.dll index 3e08b80..6d337e3 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CoreModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CoreModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CrashReportingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CrashReportingModule.dll index 6685074..c308c4e 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CrashReportingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.CrashReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.DirectorModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.DirectorModule.dll index 0073440..5f84772 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.DirectorModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.DirectorModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GameCenterModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GameCenterModule.dll index 5e34b64..e3e03f4 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GameCenterModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GameCenterModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GridModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GridModule.dll index 97c6e1c..d6d4c00 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GridModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.GridModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.IMGUIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.IMGUIModule.dll index 06a92a1..9dc7c33 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.IMGUIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.IMGUIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ImageConversionModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ImageConversionModule.dll index 7e69774..fc9a510 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ImageConversionModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ImageConversionModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.InputModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.InputModule.dll index 6d2c98c..b1cdb00 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.InputModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.InputModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.JSONSerializeModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.JSONSerializeModule.dll index a844617..94b1ecd 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.JSONSerializeModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.JSONSerializeModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.LocalizationModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.LocalizationModule.dll index e60e770..64602fc 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.LocalizationModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.LocalizationModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Networking.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Networking.dll index d78096a..639b5e7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Networking.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Networking.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ParticleSystemModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ParticleSystemModule.dll index c655cd9..9e66886 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ParticleSystemModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ParticleSystemModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PerformanceReportingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PerformanceReportingModule.dll index 9e4bca5..459d1b2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PerformanceReportingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PerformanceReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Physics2DModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Physics2DModule.dll index 0a201f6..32562a3 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Physics2DModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Physics2DModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PhysicsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PhysicsModule.dll index da6ad24..231b321 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PhysicsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.PhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ScreenCaptureModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ScreenCaptureModule.dll index 14add87..bd13b65 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ScreenCaptureModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.ScreenCaptureModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SharedInternalsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SharedInternalsModule.dll index 9dc214d..98792d2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SharedInternalsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SharedInternalsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpatialTracking.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpatialTracking.dll index cc949f9..a703db4 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpatialTracking.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpatialTracking.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteMaskModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteMaskModule.dll index 677c6df..070ae8c 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteMaskModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteMaskModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteShapeModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteShapeModule.dll index 8ddcce3..585c9cf 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteShapeModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SpriteShapeModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StreamingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StreamingModule.dll index 651931f..4ec03cd 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StreamingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StreamingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StyleSheetsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StyleSheetsModule.dll index c7b0bb8..b3be086 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StyleSheetsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.StyleSheetsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SubstanceModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SubstanceModule.dll index 59b22a2..fde608e 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SubstanceModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.SubstanceModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainModule.dll index 7ba8d6e..128fb94 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainPhysicsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainPhysicsModule.dll index 60ce8ee..ab24a3e 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainPhysicsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TerrainPhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextCoreModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextCoreModule.dll index 328cc1b..1888fdf 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextCoreModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextCoreModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextRenderingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextRenderingModule.dll index b69a203..1d0ffeb 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextRenderingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TextRenderingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TilemapModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TilemapModule.dll index eed95b3..8e4fdda 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TilemapModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.TilemapModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Timeline.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Timeline.dll index 2c49afc..791caa7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Timeline.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.Timeline.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UI.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UI.dll index ac2cdf0..cced658 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UI.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UI.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIElementsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIElementsModule.dll index f4a124e..a3e5d36 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIElementsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIElementsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIModule.dll index b4debfb..49d61d4 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UNETModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UNETModule.dll index ea82179..3898663 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UNETModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UNETModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityAnalyticsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityAnalyticsModule.dll index 0e335bd..8480270 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityAnalyticsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityAnalyticsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityConnectModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityConnectModule.dll index 52424c8..0849baa 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityConnectModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityConnectModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAssetBundleModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAssetBundleModule.dll index 114a793..29d4856 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAssetBundleModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAudioModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAudioModule.dll index 02fcfdf..31afc07 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAudioModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestAudioModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestModule.dll index f921abb..0d1bbbc 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestTextureModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestTextureModule.dll index c5b86b7..d48d8f8 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestTextureModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestTextureModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestWWWModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestWWWModule.dll index 8751ce2..1b0f983 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestWWWModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.UnityWebRequestWWWModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VFXModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VFXModule.dll index 45267bb..4a1976d 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VFXModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VFXModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VRModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VRModule.dll index 3dfa53f..cd96a71 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VRModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VRModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VehiclesModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VehiclesModule.dll index b3588e0..f91cdd5 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VehiclesModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VehiclesModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VideoModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VideoModule.dll index 6d1a954..a20a979 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VideoModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.VideoModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.WindModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.WindModule.dll index 95d89b7..7c3951a 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.WindModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.WindModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.XRModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.XRModule.dll index 653c2f8..c08a90f 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.XRModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.XRModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.dll b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.dll index 335fd73..4d4b677 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.dll and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/UnityEngine.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/entrypoint/MentorSystemWebRTC.exe b/App/MentorSystemWebRTC/bin/x86/Release/AppX/entrypoint/MentorSystemWebRTC.exe index 5625650..205d7ad 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/AppX/entrypoint/MentorSystemWebRTC.exe and b/App/MentorSystemWebRTC/bin/x86/Release/AppX/entrypoint/MentorSystemWebRTC.exe differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppX/vs.appxrecipe b/App/MentorSystemWebRTC/bin/x86/Release/AppX/vs.appxrecipe index eaafbff..1d879ad 100644 --- a/App/MentorSystemWebRTC/bin/x86/Release/AppX/vs.appxrecipe +++ b/App/MentorSystemWebRTC/bin/x86/Release/AppX/vs.appxrecipe @@ -31,13 +31,13 @@ AppxManifest.xml true - 2019-10-18T19:54:20.043 + 2019-10-18T23:20:02.616 entrypoint\MentorSystemWebRTC.exe - 2019-10-18T19:53:36.908 + 2019-10-18T23:19:20.376 Microsoft.ApplicationInsights.dll @@ -557,11 +557,11 @@ Resource.res - 2019-10-18T19:32:52.199 + 2019-10-18T23:17:54.266 StoreManifest.xml - 2019-10-18T19:32:29.373 + 2019-10-18T23:17:36.706 Properties\Default.rd.xml @@ -640,15 +640,15 @@ Data\boot.config - 2019-10-18T19:32:25.848 + 2019-10-18T23:17:34.626 Data\globalgamemanagers - 2019-10-18T19:32:16.892 + 2019-10-18T23:17:27.821 Data\level0 - 2019-10-18T19:32:11.588 + 2019-10-18T23:17:23.366 Data\Resources\unity default resources @@ -656,39 +656,39 @@ Data\Resources\unity_builtin_extra - 2019-10-18T19:32:25.838 + 2019-10-18T23:17:34.606 Data\globalgamemanagers.assets - 2019-10-18T19:32:17.802 + 2019-10-18T23:17:28.636 Data\resources.assets - 2019-10-18T19:32:17.872 + 2019-10-18T23:17:28.710 Data\sharedassets0.assets - 2019-10-18T19:32:20.542 + 2019-10-18T23:17:30.276 Data\level0.resS - 2019-10-18T19:32:11.578 + 2019-10-18T23:17:23.360 Data\resources.assets.resS - 2019-10-18T19:32:17.869 + 2019-10-18T23:17:28.706 Data\sharedassets0.assets.resS - 2019-10-18T19:32:20.532 + 2019-10-18T23:17:30.276 Data\managedAssemblies.txt - 2019-10-18T19:32:52.028 + 2019-10-18T23:17:54.120 Data\nativePlugins.txt - 2019-10-18T19:32:52.039 + 2019-10-18T23:17:54.126 WinMetadata\Windows.winmd @@ -701,259 +701,259 @@ Assembly-CSharp.dll - 2019-10-18T19:54:12.317 + 2019-10-18T23:19:56.838 UnityEngine.SpriteMaskModule.dll - 2019-10-18T19:54:12.381 + 2019-10-18T23:19:56.889 UnityEngine.SpriteShapeModule.dll - 2019-10-18T19:54:12.403 + 2019-10-18T23:19:56.936 UnityEngine.StreamingModule.dll - 2019-10-18T19:54:12.423 + 2019-10-18T23:19:56.956 UnityEngine.StyleSheetsModule.dll - 2019-10-18T19:54:12.445 + 2019-10-18T23:19:57.016 UnityEngine.SubstanceModule.dll - 2019-10-18T19:54:12.495 + 2019-10-18T23:19:57.041 UnityEngine.TerrainModule.dll - 2019-10-18T19:54:12.570 + 2019-10-18T23:19:57.076 UnityEngine.TerrainPhysicsModule.dll - 2019-10-18T19:54:12.622 + 2019-10-18T23:19:57.129 UnityEngine.TextCoreModule.dll - 2019-10-18T19:54:12.663 + 2019-10-18T23:19:57.156 UnityEngine.TextRenderingModule.dll - 2019-10-18T19:54:12.702 + 2019-10-18T23:19:57.220 UnityEngine.TilemapModule.dll - 2019-10-18T19:54:12.726 + 2019-10-18T23:19:57.300 UnityEngine.UIElementsModule.dll - 2019-10-18T19:54:13.045 + 2019-10-18T23:19:57.576 UnityEngine.UIModule.dll - 2019-10-18T19:54:13.068 + 2019-10-18T23:19:57.600 UnityEngine.UNETModule.dll - 2019-10-18T19:54:13.107 + 2019-10-18T23:19:57.640 UnityEngine.UnityAnalyticsModule.dll - 2019-10-18T19:54:13.127 + 2019-10-18T23:19:57.736 UnityEngine.UnityConnectModule.dll - 2019-10-18T19:54:13.172 + 2019-10-18T23:19:57.790 UnityEngine.UnityWebRequestAssetBundleModule.dll - 2019-10-18T19:54:13.188 + 2019-10-18T23:19:57.820 UnityEngine.UnityWebRequestAudioModule.dll - 2019-10-18T19:54:13.205 + 2019-10-18T23:19:57.885 UnityEngine.UnityWebRequestModule.dll - 2019-10-18T19:54:13.299 + 2019-10-18T23:19:57.916 UnityEngine.UnityWebRequestTextureModule.dll - 2019-10-18T19:54:13.362 + 2019-10-18T23:19:57.967 UnityEngine.UnityWebRequestWWWModule.dll - 2019-10-18T19:54:13.381 + 2019-10-18T23:19:58.016 UnityEngine.VehiclesModule.dll - 2019-10-18T19:54:13.397 + 2019-10-18T23:19:58.036 UnityEngine.VFXModule.dll - 2019-10-18T19:54:13.469 + 2019-10-18T23:19:58.106 UnityEngine.VideoModule.dll - 2019-10-18T19:54:13.494 + 2019-10-18T23:19:58.167 UnityEngine.VRModule.dll - 2019-10-18T19:54:13.548 + 2019-10-18T23:19:58.226 UnityEngine.WindModule.dll - 2019-10-18T19:54:13.599 + 2019-10-18T23:19:58.269 UnityEngine.XRModule.dll - 2019-10-18T19:54:13.630 + 2019-10-18T23:19:58.316 UnityEngine.SharedInternalsModule.dll - 2019-10-18T19:54:13.652 + 2019-10-18T23:19:58.339 UnityEngine.ScreenCaptureModule.dll - 2019-10-18T19:54:13.702 + 2019-10-18T23:19:58.389 UnityEngine.Physics2DModule.dll - 2019-10-18T19:54:13.752 + 2019-10-18T23:19:58.436 Unity.Analytics.DataPrivacy.dll - 2019-10-18T19:54:13.807 + 2019-10-18T23:19:58.486 Unity.TextMeshPro.dll - 2019-10-18T19:54:13.997 + 2019-10-18T23:19:58.636 UnityEngine.AccessibilityModule.dll - 2019-10-18T19:54:14.015 + 2019-10-18T23:19:58.689 UnityEngine.AIModule.dll - 2019-10-18T19:54:14.048 + 2019-10-18T23:19:58.716 UnityEngine.AnimationModule.dll - 2019-10-18T19:54:14.100 + 2019-10-18T23:19:58.767 UnityEngine.ARModule.dll - 2019-10-18T19:54:14.151 + 2019-10-18T23:19:58.819 UnityEngine.AssetBundleModule.dll - 2019-10-18T19:54:14.211 + 2019-10-18T23:19:58.874 UnityEngine.AudioModule.dll - 2019-10-18T19:54:14.249 + 2019-10-18T23:19:58.906 UnityEngine.ClothModule.dll - 2019-10-18T19:54:14.309 + 2019-10-18T23:19:58.955 UnityEngine.CoreModule.dll - 2019-10-18T19:54:15.225 + 2019-10-18T23:19:59.996 UnityEngine.CrashReportingModule.dll - 2019-10-18T19:54:15.282 + 2019-10-18T23:20:00.059 UnityEngine.DirectorModule.dll - 2019-10-18T19:54:15.301 + 2019-10-18T23:20:00.074 UnityEngine.dll - 2019-10-18T19:32:39.523 + 2019-10-18T23:17:43.446 UnityEngine.GameCenterModule.dll - 2019-10-18T19:54:15.326 + 2019-10-18T23:20:00.106 UnityEngine.GridModule.dll - 2019-10-18T19:54:15.343 + 2019-10-18T23:20:00.120 UnityEngine.ImageConversionModule.dll - 2019-10-18T19:54:15.362 + 2019-10-18T23:20:00.140 UnityEngine.IMGUIModule.dll - 2019-10-18T19:54:15.439 + 2019-10-18T23:20:00.206 UnityEngine.InputModule.dll - 2019-10-18T19:54:15.497 + 2019-10-18T23:20:00.226 UnityEngine.JSONSerializeModule.dll - 2019-10-18T19:54:15.551 + 2019-10-18T23:20:00.288 UnityEngine.LocalizationModule.dll - 2019-10-18T19:54:15.604 + 2019-10-18T23:20:00.359 UnityEngine.ParticleSystemModule.dll - 2019-10-18T19:54:15.671 + 2019-10-18T23:20:00.456 UnityEngine.PerformanceReportingModule.dll - 2019-10-18T19:54:15.725 + 2019-10-18T23:20:00.516 UnityEngine.PhysicsModule.dll - 2019-10-18T19:54:15.854 + 2019-10-18T23:20:00.556 HoloPoseClientCore.dll - 2019-10-18T19:54:15.915 + 2019-10-18T23:20:00.588 Newtonsoft.Json.dll - 2019-10-18T19:54:16.006 + 2019-10-18T23:20:00.675 UnityEngine.Timeline.dll - 2019-10-18T19:54:16.084 + 2019-10-18T23:20:00.746 SocketIoClientDotNet.dll - 2019-10-18T19:54:16.104 + 2019-10-18T23:20:00.770 UnityEngine.UI.dll - 2019-10-18T19:54:16.266 + 2019-10-18T23:20:00.926 UnityEngine.SpatialTracking.dll - 2019-10-18T19:54:16.286 + 2019-10-18T23:20:00.946 Unity.Analytics.Tracker.dll - 2019-10-18T19:54:16.310 + 2019-10-18T23:20:00.972 EngineIoClientDotNet.dll - 2019-10-18T19:54:16.348 + 2019-10-18T23:20:01.016 Unity.Analytics.StandardEvents.dll - 2019-10-18T19:54:16.371 + 2019-10-18T23:20:01.040 UnityEngine.Networking.dll - 2019-10-18T19:54:16.488 + 2019-10-18T23:20:01.160 MentorSystemWebRTC.exe - 2019-10-18T19:54:20.035 + 2019-10-18T23:20:02.598 diff --git a/App/MentorSystemWebRTC/bin/x86/Release/AppxManifest.xml b/App/MentorSystemWebRTC/bin/x86/Release/AppxManifest.xml index c23ffeb..b0a3c8d 100644 --- a/App/MentorSystemWebRTC/bin/x86/Release/AppxManifest.xml +++ b/App/MentorSystemWebRTC/bin/x86/Release/AppxManifest.xml @@ -7,7 +7,7 @@ For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727 --> - + MentorSystemWebRTC diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Assembly-CSharp.dll b/App/MentorSystemWebRTC/bin/x86/Release/Assembly-CSharp.dll index 13ce1ca..4edb5ab 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Assembly-CSharp.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Assembly-CSharp.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Core/AppxManifest.xml b/App/MentorSystemWebRTC/bin/x86/Release/Core/AppxManifest.xml index f1a622b..df83ffe 100644 --- a/App/MentorSystemWebRTC/bin/x86/Release/Core/AppxManifest.xml +++ b/App/MentorSystemWebRTC/bin/x86/Release/Core/AppxManifest.xml @@ -7,7 +7,7 @@ For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727 --> - + MentorSystemWebRTC diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Core/ForBundle/AppxManifest.xml b/App/MentorSystemWebRTC/bin/x86/Release/Core/ForBundle/AppxManifest.xml index 6df1e04..447d6c1 100644 --- a/App/MentorSystemWebRTC/bin/x86/Release/Core/ForBundle/AppxManifest.xml +++ b/App/MentorSystemWebRTC/bin/x86/Release/Core/ForBundle/AppxManifest.xml @@ -7,7 +7,7 @@ For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727 --> - + MentorSystemWebRTC diff --git a/App/MentorSystemWebRTC/bin/x86/Release/EngineIoClientDotNet.dll b/App/MentorSystemWebRTC/bin/x86/Release/EngineIoClientDotNet.dll index ec967c2..2f0bcf4 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/EngineIoClientDotNet.dll and b/App/MentorSystemWebRTC/bin/x86/Release/EngineIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/HoloPoseClientCore.dll b/App/MentorSystemWebRTC/bin/x86/Release/HoloPoseClientCore.dll index 0a4575b..e534180 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/HoloPoseClientCore.dll and b/App/MentorSystemWebRTC/bin/x86/Release/HoloPoseClientCore.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC.exe b/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC.exe index 5625650..7c13607 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC.exe and b/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC.exe differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC_1.1.0.0_x86.appx b/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC_1.1.0.0_x86.appx new file mode 100644 index 0000000..2c43992 Binary files /dev/null and b/App/MentorSystemWebRTC/bin/x86/Release/MentorSystemWebRTC_1.1.0.0_x86.appx differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Newtonsoft.Json.dll b/App/MentorSystemWebRTC/bin/x86/Release/Newtonsoft.Json.dll index 9bc7dfe..7234e19 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Newtonsoft.Json.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Newtonsoft.Json.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/SocketIoClientDotNet.dll b/App/MentorSystemWebRTC/bin/x86/Release/SocketIoClientDotNet.dll index 4c84c58..b4eabd3 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/SocketIoClientDotNet.dll and b/App/MentorSystemWebRTC/bin/x86/Release/SocketIoClientDotNet.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.DataPrivacy.dll b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.DataPrivacy.dll index e4d78be..b5b40f2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.DataPrivacy.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.DataPrivacy.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.StandardEvents.dll b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.StandardEvents.dll index 3c010a5..2e81399 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.StandardEvents.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.StandardEvents.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.Tracker.dll b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.Tracker.dll index 3b5fcef..731b6b7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.Tracker.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Unity.Analytics.Tracker.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/Unity.TextMeshPro.dll b/App/MentorSystemWebRTC/bin/x86/Release/Unity.TextMeshPro.dll index 2e7330b..0fc7dc2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/Unity.TextMeshPro.dll and b/App/MentorSystemWebRTC/bin/x86/Release/Unity.TextMeshPro.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AIModule.dll index 5bf08f4..9e5b4fa 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ARModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ARModule.dll index 2bc4e39..9ae85b2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ARModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ARModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AccessibilityModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AccessibilityModule.dll index e9aa52f..4ccf4a8 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AccessibilityModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AccessibilityModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AnimationModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AnimationModule.dll index 1250cc8..67701e1 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AnimationModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AnimationModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AssetBundleModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AssetBundleModule.dll index c149833..7f367aa 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AssetBundleModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AudioModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AudioModule.dll index d6af750..77ffa3e 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AudioModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.AudioModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ClothModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ClothModule.dll index da0e7f3..1266ce8 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ClothModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ClothModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CoreModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CoreModule.dll index eec4d58..9e1f91c 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CoreModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CoreModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CrashReportingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CrashReportingModule.dll index 0499a91..91fb263 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CrashReportingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.CrashReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.DirectorModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.DirectorModule.dll index 99e2c61..08bbe15 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.DirectorModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.DirectorModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GameCenterModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GameCenterModule.dll index 2a8895c..fd2fa6a 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GameCenterModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GameCenterModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GridModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GridModule.dll index ef811ae..86219fc 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GridModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.GridModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.IMGUIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.IMGUIModule.dll index 6c502f6..4112564 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.IMGUIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.IMGUIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ImageConversionModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ImageConversionModule.dll index 25e9ab8..ad4dc27 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ImageConversionModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ImageConversionModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.InputModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.InputModule.dll index a701491..cc707f7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.InputModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.InputModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.JSONSerializeModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.JSONSerializeModule.dll index 8ccfc7b..278520b 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.JSONSerializeModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.JSONSerializeModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.LocalizationModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.LocalizationModule.dll index 393f73e..cc82df6 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.LocalizationModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.LocalizationModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Networking.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Networking.dll index 4a8081a..d7395a2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Networking.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Networking.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ParticleSystemModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ParticleSystemModule.dll index 4fcbb6a..4369c9a 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ParticleSystemModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ParticleSystemModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PerformanceReportingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PerformanceReportingModule.dll index ba145cf..5ace634 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PerformanceReportingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PerformanceReportingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Physics2DModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Physics2DModule.dll index 3cbb2d5..bf6d9cd 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Physics2DModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Physics2DModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PhysicsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PhysicsModule.dll index 3d8dae3..f66c541 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PhysicsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.PhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ScreenCaptureModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ScreenCaptureModule.dll index 552a119..98bdd56 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ScreenCaptureModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.ScreenCaptureModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SharedInternalsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SharedInternalsModule.dll index 48dda68..a4441c6 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SharedInternalsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SharedInternalsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpatialTracking.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpatialTracking.dll index a2e4b64..00e686a 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpatialTracking.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpatialTracking.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteMaskModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteMaskModule.dll index 546d723..453744d 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteMaskModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteMaskModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteShapeModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteShapeModule.dll index 56f38af..eb3c64b 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteShapeModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SpriteShapeModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StreamingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StreamingModule.dll index ab0a976..85e00df 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StreamingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StreamingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StyleSheetsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StyleSheetsModule.dll index 53b6d85..a6d4170 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StyleSheetsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.StyleSheetsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SubstanceModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SubstanceModule.dll index b9be731..7730473 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SubstanceModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.SubstanceModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainModule.dll index 382d4a8..aec2514 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainPhysicsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainPhysicsModule.dll index ed92991..d3bb0d3 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainPhysicsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TerrainPhysicsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextCoreModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextCoreModule.dll index cc4201a..e24ba3c 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextCoreModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextCoreModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextRenderingModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextRenderingModule.dll index 2305457..71447b7 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextRenderingModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TextRenderingModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TilemapModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TilemapModule.dll index ec0f92d..414d115 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TilemapModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.TilemapModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Timeline.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Timeline.dll index 79fafe2..dbdcec1 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Timeline.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.Timeline.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UI.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UI.dll index 7a01033..fc90a4e 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UI.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UI.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIElementsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIElementsModule.dll index 4ddf4da..25d35fd 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIElementsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIElementsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIModule.dll index 0c40bdb..f27006d 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UIModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UNETModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UNETModule.dll index 04f7709..564dcca 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UNETModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UNETModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityAnalyticsModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityAnalyticsModule.dll index e541f8e..2c559c0 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityAnalyticsModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityAnalyticsModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityConnectModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityConnectModule.dll index a5ceb3a..f5439cd 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityConnectModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityConnectModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAssetBundleModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAssetBundleModule.dll index 463bdbf..48fd5f2 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAssetBundleModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAssetBundleModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAudioModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAudioModule.dll index 4aac78b..89267cf 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAudioModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestAudioModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestModule.dll index 288f9ad..93be100 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestTextureModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestTextureModule.dll index 773ed1d..8c8eac0 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestTextureModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestTextureModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestWWWModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestWWWModule.dll index c1ff279..ed64682 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestWWWModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.UnityWebRequestWWWModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VFXModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VFXModule.dll index 5acd774..e4f614a 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VFXModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VFXModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VRModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VRModule.dll index fbc6587..322cfa6 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VRModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VRModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VehiclesModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VehiclesModule.dll index 580e7b8..000ea34 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VehiclesModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VehiclesModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VideoModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VideoModule.dll index 651b2d1..a7e8572 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VideoModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.VideoModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.WindModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.WindModule.dll index 5b62723..79d0334 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.WindModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.WindModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.XRModule.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.XRModule.dll index 05e9cf2..653b604 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.XRModule.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.XRModule.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.dll b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.dll index 335fd73..4d4b677 100644 Binary files a/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.dll and b/App/MentorSystemWebRTC/bin/x86/Release/UnityEngine.dll differ diff --git a/App/MentorSystemWebRTC/bin/x86/Release/ValidationResult.xml b/App/MentorSystemWebRTC/bin/x86/Release/ValidationResult.xml index 9dab11c..446ac39 100644 --- a/App/MentorSystemWebRTC/bin/x86/Release/ValidationResult.xml +++ b/App/MentorSystemWebRTC/bin/x86/Release/ValidationResult.xml @@ -1,76 +1,76 @@  - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - + - + - + @@ -100,11 +100,11 @@ - + - + @@ -112,66 +112,66 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -179,12 +179,12 @@ - + - + - + MentorSystemWebRTC @@ -265,9 +265,9 @@ - + - + @@ -280,218 +280,218 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -1057,6 +1057,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1298,6 +1340,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1361,11245 +1480,675 @@ - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + - + + + + + + + + - + + + + + - - - - - + + + + + - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -13783,6 +3332,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13833,111 +3453,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -14104,71 +3619,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -15435,301 +4885,29 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -15978,7 +5156,7 @@ - + @@ -16229,45 +5407,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -16330,32 +5469,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -16514,78 +5627,52 @@ - + - - - - - - - - - - + + + - - - - - - - - - - - - + - - + + - - - - - - - - - - + + @@ -16600,11 +5687,14 @@ - - + + + + + @@ -16643,6 +5733,389 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17151,7 +6624,38 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17159,14 +6663,12 @@ + - - - @@ -17179,6 +6681,7 @@ + @@ -17479,41 +6982,24 @@ - + - - - - - - - - - - - - - - - + + - - - - @@ -17524,11 +7010,6 @@ - - - - - @@ -17570,45 +7051,340 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -17617,72 +7393,31 @@ - - - - - + - - - - - - + - - - - - - - - - + + + + - - - - + + + - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -17691,46 +7426,31 @@ - - + - - + + + + - - - - - - - - - - - - - - - - - - - - + + + - + + + - @@ -17979,7 +7699,41 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17988,10 +7742,13 @@ + + + - + @@ -17999,16 +7756,27 @@ - - - + + + + + + + + + + + + + + @@ -18021,48 +7789,15 @@ - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -18220,40 +7955,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -18263,10 +7965,11 @@ - + + @@ -18280,156 +7983,15 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -18448,542 +8010,144 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + + + - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - + + + + + + + + + + - + - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - @@ -18993,344 +8157,164 @@ - - + + - + + + - - - - - - - + + - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -19661,36 +8645,77 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + - - - + + + - + + + @@ -19704,8 +8729,13 @@ + + + + + - + @@ -20312,166 +9342,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -63006,6 +51876,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -63241,39 +52169,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -63424,59 +52319,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -63871,174 +52713,68 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -64294,6 +53030,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -64330,45 +53095,95 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -64377,11 +53192,121 @@ + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -64480,177 +53405,676 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + - - - - + + + + + - - - - + + + + + - - - - - - - - - - - - - - + + + + + + + + + + - + + + + + + + + + + + - - - - + - + + - + + + + + + - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -65124,95 +54548,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -65250,476 +54623,334 @@ - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - + + - - + + - - - - - + + + - - - + + + + + - - - - - - - - - - + - - - + - - + + + + - + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - + + + + - - - - - - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - + - - + + + + - - - + + - - - - - - - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -65729,334 +54960,562 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + - + + + + + + - + + + + - - - + + + + - + + + - + + - + + - - - - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + + + - + + + + + + + + + + + + + + - + + + - + + + + + + + + + + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -66065,24 +55524,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -67231,6 +56889,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -68857,6 +58546,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -69263,110 +58983,85 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -69379,101 +59074,80 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - + - - - - + + + + - - - + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + - - - - - - + + @@ -69487,156 +59161,46 @@ + + + + - - + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - - - - - - - - - - - - @@ -69649,32 +59213,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -69918,6 +59456,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -70847,50 +60440,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -71089,117 +60638,264 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - + - - - - + - - @@ -71214,8 +60910,6 @@ - - @@ -71345,73 +61039,480 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - - - - - @@ -71419,30 +61520,30 @@ - - - - + + + + + + + + - + + + + - - + - - - - - - - + @@ -71454,382 +61555,215 @@ - - - - - - - - - - - - - - - - + + - + + + + + + - - - + + + + + - - + + + + + + + + + + - + - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + - - + - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + - - - + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + + + - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + @@ -71838,21 +61772,50 @@ + + + + + + + + + + + + + - + + + + + + + + + + + - - + + + + - + + + + + @@ -71861,8 +61824,15 @@ + + + + + + + @@ -71871,30 +61841,44 @@ - - + + + + + + + + + + + + + + + - - - + + + + @@ -71902,21 +61886,29 @@ - + + + + + + + + + @@ -71928,121 +61920,310 @@ + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - + + - - + + + + + + + + + + + - - + + + + + + + + + + - - + + - + + + + + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + - + + + - + + - - - - + - - + - - + + + + + + - - - - - - + + + + + + + + + + + - - - - - - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + - - + @@ -72050,37 +62231,110 @@ - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + - - - - - - + @@ -72088,117 +62342,113 @@ - - - - - + + + - - + - - + - - - + + + + + + + + + - - - + + + + + + + + + + - - - - - - - - - - - - + + + + - - - - - - - - - - + - - + + - - - - + + + + + + + - - - + - + + + + + + + + + - - - - - - - - + + + - - + + + - + - @@ -72235,285 +62485,78 @@ - - - - - - - - + - + - - - - - + - - - + + + - - + - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + + + - - + + + + @@ -72521,98 +62564,164 @@ - - + - + + + + - - - + + + + + - - - - - - - - - + + + + + + + + + + + + + + - - - - + + + + + + + - - - + + + + + + + + + - + + - - - + + + + + - - - - + + + + + + + + + + + - + + - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + - + + + + + + + @@ -72631,494 +62740,1012 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - - - - - + + + + + - - + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + - + - - + - + + - - - - + + - + + + + - - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + - + + + + + + + + + + + + + + + + + + - - + + + + + - - + + + + - - + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + - - - - - + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + - - + - - + + + + + + + + + + @@ -73137,14 +63764,111 @@ + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -73153,107 +63877,74 @@ + + + + + + + + - - - - + - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - @@ -73261,164 +63952,110 @@ - - - - - - - + + + + + - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - - - - + + @@ -73437,435 +64074,291 @@ - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + - - + - - - - - - - - + + - - + - + - - - - - - - + - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - + + + + + - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + - - - - + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + - + + + + + @@ -73886,24 +64379,39 @@ + + + + + + + - + + + + + + + + - + + @@ -73914,501 +64422,239 @@ - + + - + - - + + - - + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + - + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - + + + + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + - + + - - - + - + - + + + + + + + + + - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + - + + + + + + + + + + + + + + + + + - @@ -74416,110 +64662,84 @@ - - - + + + + + + + - - + + + + + + - + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - + + + + - - + + + - + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + - - + @@ -74538,279 +64758,240 @@ + + - - - - - - - - - - - - - - - - + + + - - - - - - - - - - + + + + + + + + - - + + + + + + + + + + + + + + + - + + + + + + + + + + + + - + + + + - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + - - - - - + + + + + + + - - - - - - - - - + + + + + + + + + + + + + - - - + + + + + - - + - - - - - - - + + + + + + + + - + + - - + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + - - - - + + + - - - - - - - - - + + + - + - - - - - - - - - - - - - - - + + + + + + - - - + @@ -74819,93 +65000,662 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + - - + + + + - - - + + + + + - - - - - + + + + + - - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -74913,6 +65663,7 @@ + @@ -74924,9 +65675,16 @@ + + + + + + + @@ -74937,367 +65695,743 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - + @@ -75309,84 +66443,98 @@ + + + + - - - - + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + - - - - - + + + - - - - - - - - - - + + + + + + + + - - - - - - + + - - - - - - + + + - - - - @@ -75417,329 +66565,78 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - @@ -75747,46 +66644,37 @@ - + - - + - + - - - - - - + + - + - - + + + - - - - - - - + + + - @@ -75795,173 +66683,91 @@ - - - - - - - - - - - - - - - - - - - + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + - + + - + + + - + - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - + @@ -75974,71 +66780,43 @@ - - - - - - - - + + - - + - - + - - - - - - - - - - - - - - - - - - - - @@ -76048,217 +66826,39 @@ - - + + + + + + + - - - - - - + + + + - - - + + + + - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -76270,19 +66870,14 @@ - - - - - - - + + @@ -76303,82 +66898,198 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + - + + + + + + - + + + - - - - - - - + + - - - - - - + + + + + + + + + + - - - - + - - - - - - + + - - - + + + @@ -76388,7 +67099,6 @@ - @@ -76397,13 +67107,6 @@ - - - - - - - @@ -76416,328 +67119,159 @@ - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + - - - - - - + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - + + - - - - - - - - - - + + + + + + + - + + + + + + - + + - - - + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - + + + + - @@ -76746,226 +67280,92 @@ - + + - + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - + + + + - - - - - - - - - - + + + @@ -76977,11 +67377,20 @@ + + + + + + + + + @@ -76990,181 +67399,638 @@ + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -77176,96 +68042,98 @@ - - - - - - - - - - + + + + + + - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + - + + + + + + + + - - + + + + + + + + + + + + + + + + - + + + + @@ -77286,8 +68154,40 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -77301,41 +68201,112 @@ - - - - - + + + + + - - + + + + + + + + + + + + - - + + + + + + + + + + - - + + + - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -77354,263 +68325,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + - - + - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - @@ -77629,719 +68535,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + - - + + - - + + + + + - + - + + + + + + + + - + + + - + + - + + + + - + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + @@ -78349,1019 +69089,10360 @@ - + + - + + + + - + + + - - + + + - + + + + - + + + + + + - + + + + - + + + + - + + + + + + + + + + + + + - + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + - - + + + + + + + + + + + + + + + - - - - + - - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -79456,6 +79537,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -79857,35 +79960,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -79911,211 +79985,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -80913,34 +80782,119 @@ - + + + + - - + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + @@ -80949,66 +80903,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + - + - - - - - + + + + + + + - - - - + - - - - - - - - + - - @@ -81021,20 +80991,14 @@ - - - - - - + - - + @@ -81042,17 +81006,12 @@ - - - - - - + + - @@ -81069,25 +81028,89 @@ - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -81097,9 +81120,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -82052,88 +82101,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -82247,30 +82214,27 @@ - + - - - - - - - + + + - - + + + @@ -82282,9 +82246,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assets/Scenes/MentorSystemWebRTC.unity b/Assets/Scenes/MentorSystemWebRTC.unity index 2e29604..eb97d1e 100644 --- a/Assets/Scenes/MentorSystemWebRTC.unity +++ b/Assets/Scenes/MentorSystemWebRTC.unity @@ -1018,7 +1018,7 @@ RectTransform: m_LocalScale: {x: 3.7090437, y: 3.7090435, z: 3.7090437} m_Children: [] m_Father: {fileID: 1321525415} - m_RootOrder: 6 + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -2799,7 +2799,7 @@ RectTransform: - {fileID: 7504199} - {fileID: 1536667371} m_Father: {fileID: 1321525415} - m_RootOrder: 4 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} @@ -2857,80 +2857,6 @@ CanvasGroup: m_Interactable: 1 m_BlocksRaycasts: 1 m_IgnoreParentGroups: 0 ---- !u!1 &487420375 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 487420376} - - component: {fileID: 487420378} - - component: {fileID: 487420377} - m_Layer: 5 - m_Name: UltrasoundProbe - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &487420376 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 487420375} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1321525415} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &487420377 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 487420375} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 21300000, guid: 7bec04b35fedaa243b47c188d82c2e2e, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &487420378 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 487420375} - m_CullTransparentMesh: 0 --- !u!1 &528767041 GameObject: m_ObjectHideFlags: 0 @@ -4225,64 +4151,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 666049637} m_CullTransparentMesh: 0 ---- !u!1 &668157277 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 668157278} - - component: {fileID: 668157279} - - component: {fileID: 668157280} - m_Layer: 5 - m_Name: VitalSigns1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &668157278 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 668157277} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1321525415} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -277.5, y: -109.5} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &668157279 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 668157277} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 316c3651d0aa5d54d981305885077080, type: 3} - m_Name: - m_EditorClassIdentifier: - Camera: {fileID: 282840813} ---- !u!222 &668157280 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 668157277} - m_CullTransparentMesh: 0 --- !u!1 &687185931 GameObject: m_ObjectHideFlags: 0 @@ -4395,7 +4263,7 @@ RectTransform: m_LocalScale: {x: 3.7090943, y: 3.7090943, z: 3.7090943} m_Children: [] m_Father: {fileID: 1321525415} - m_RootOrder: 5 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -7524,9 +7392,7 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - - {fileID: 487420376} - {fileID: 1498740947} - - {fileID: 668157278} - {fileID: 1844524861} - {fileID: 479853318} - {fileID: 704916576} @@ -7751,7 +7617,7 @@ RectTransform: - {fileID: 598713314} - {fileID: 440744837} m_Father: {fileID: 1321525415} - m_RootOrder: 7 + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -8164,7 +8030,6 @@ GameObject: m_Component: - component: {fileID: 1498740947} - component: {fileID: 1498740950} - - component: {fileID: 1498740949} - component: {fileID: 1498740948} m_Layer: 5 m_Name: VitalSigns @@ -8180,16 +8045,16 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1498740946} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1321525415} - m_RootOrder: 1 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -188.75, y: 104.75} + m_AnchoredPosition: {x: -1341, y: 104.75} m_SizeDelta: {x: 177.5, y: 9.5} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1498740948 @@ -8205,35 +8070,6 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: Camera: {fileID: 282840813} ---- !u!114 &1498740949 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1498740946} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.6320754, g: 0.59927905, b: 0.59927905, a: 0.02745098} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 --- !u!222 &1498740950 CanvasRenderer: m_ObjectHideFlags: 0 @@ -9751,7 +9587,7 @@ RectTransform: - {fileID: 441960216} - {fileID: 342528544} m_Father: {fileID: 1321525415} - m_RootOrder: 8 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -10116,7 +9952,7 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1321525415} - m_RootOrder: 3 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}