Search Unity

Rewired - Advanced Input for Unity

Discussion in 'Assets and Asset Store' started by guavaman, Sep 25, 2014.

  1. ilusomu

    ilusomu

    Joined:
    May 28, 2015
    Posts:
    24
    I'm giving the trial a whirl right now. So far so good, for the most part. I was on the fence about buying it, but now I think I'm almost ready to buy the full license. There are two things problems I ran into through that I was hoping to help get resolved before purchasing Rewired and they're related to the UFPS integration:
    1. The right trigger doesn't work. I assigned it to "Attack", but no dice. I get an error in the console saying LeftTrigger and RightTrigger aren't mapped as actions. I add those as custom axis actions and reassign the right trigger button to RightTrigger, but still have no luck.
    2. Can't aim with the right stick. Right Stick X is mapped to Mouse X and Right Stick Y is mapped to Mouse Y. Still, it won't work.
    Interestingly, both of these issues are solved if I start controlling the game with a mouse and then switch to using my Xbox 360 controller. I was able to replicate this issue in an entirely clean Unity 5.4.0f3 project with only UFPS 1.7.0 and Rewired 1.0.0.99.
     
  2. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Hi,

    Neither problem is due to Rewired. I get asked this question all the time. UFPS is in control of the mouse pointer control. It doesn't allow you to fire or move the right stick (mouse look) unless the mouse pointer is captured regardless of the platform. There is an inspector option on the UFPS character controller (VP_FPInput -> Mouse Cursor -> Blocks Mouselook) that changes the mouse capture behavior for the right stick, however this doesn't solve the issue with firing.

    Looking at the source code of VP_FPInput.cs, this is where the issue lies:

    Code (csharp):
    1. protected virtual void InputAttack()
    2.     {
    3.  
    4.         // TIP: you could do this to prevent player from attacking while running
    5.         //if (Player.Run.Active)
    6.         //    return;
    7.  
    8.         // if mouse cursor is visible, an extra click is needed
    9.         // before we can attack
    10.         if (!vp_Utility.LockCursor) // <-- THIS IS THE CULPRIT
    11.             return;
    12.  
    13.         if (vp_Input.GetButton("Attack")
    14.              || vp_Input.GetAxisRaw("RightTrigger") > 0.5f        // fire using the right gamepad trigger
    15.             )
    16.             FPPlayer.Attack.TryStart();
    17.         else
    18.             FPPlayer.Attack.TryStop();
    19.  
    20.     }
    The lines, if (!vp_Utility.LockCursor) return; causes the function to exit before it ever even queries GetButton("Attack"). There doesn't appear to be any option to disable this that I can find. I suggest contacting Opsive support on this issue.

    The Rewired integration only goes so far as to change the input sources for the Actions requested by the various UFPS scripts by replacing the underlying input manager. It doesn't alter the functionality or code of UFPS in any way so it cannot modify this behavior because the Action processing is blocked in the UFPS character script.

    This isn't an error, just a warning. This occurs because they added LeftTrigger and RightTrigger Actions to UFPS recently when they added joystick support. I haven't added them to the default UFPS Rewired Input Manager because they were only added to UFPS as a way to convert analog gamepad trigger axis values to button values which is not needed because Rewired does this already. Adding the Actions would just add confusion since they would be unused and only added to silence those warnings. The warnings are harmless and only show up the first time you press the triggers.
     
    Last edited: Aug 29, 2016
    ilusomu likes this.
  3. ilusomu

    ilusomu

    Joined:
    May 28, 2015
    Posts:
    24
    Thank you so much! I'll get in touch with the Opsive folks. I appreciate you taking the time to explain the crux of the issue. I tried to Googling around and looking through the documentation to no avail earlier. I'll post here if I get any updates on the UFPS front.
     
  4. ilusomu

    ilusomu

    Joined:
    May 28, 2015
    Posts:
    24
    This is the response I got from Justin at Opsive:
    Many thanks to everyone involved for responding so quickly. You guys are awesome. Just bought Rewired and looking forward to digging into it deeper.
     
    guavaman likes this.
  5. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    I think the easiest way is to comment out the if(!vp_Utility.LockCursor) return line. It will have the side effect of making your character fire a shot when you left click back into the game window after using the Editor and also when playing a built game in a Window.
     
  6. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
  7. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    Hello Rewired. I was wondering how to best handle Input.mousePosition and rewired. Should I just use the old Input.mousePosition for any mouse capturing, or is there an alternative?

    It should be noted, I don't want to use the mouse as an axis, but use the actual position on screen when in mouse aiming mode. This is what I used to do:

    Code (CSharp):
    1. mousePosition.x = Mathf.Clamp(Input.mousePosition.x, PIXEL_BORDER, Camera.main.pixelWidth - PIXEL_BORDER);
    2. mousePosition.y = Mathf.Clamp(Input.mousePosition.y, PIXEL_BORDER, Camera.main.pixelHeight - PIXEL_BORDER);
     
  8. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Either Input.mousePosition or Mouse.screenPosition. They will both give the same result.
     
  9. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    How does that work with the player ID assignment and the customising controls screen? Or don't they mix...?

    Also, I'm currently struggling with making rewired work on xbox one. It seems that both left and right triggers are being held down permanently? I've re-installed the XDK, unity and plug-ins and still am getting the same result. :|
     
  10. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Mouse.screenPosition is not assignable to Actions, therefore it has no relationship with Players or mapping. Mouse X and Mouse Y which are assignable to Actions are axis deltas. The only way to get the absolute position into the Player-Action system would be to use a Custom Controller.

    I am aware of dozens of games using Rewired on Xbox One with no reports like this.

    1. What version of Rewired?
    2. What version of Unity?
    3. Is this the actual Xbox One platform or Xbox One UWP (homebrew)?
    4. Net or IL2CPP scripting backend?
    5. What are your Xbox One settings in the Rewired Input Manager? (assuming true Xbox One platform)
    6. Is anything logged in the log?
    7. What does the Joystick Map look like in the Rewired Input Manager?
    8. Are you using Dual Analog Gamepad Template or the Xbox One Controller profile?
    9. How are you getting input for these Actions?
    10. All axis values are taken from UnityEngine.GetAxis. If you have modified any of the Unity Input Manager axes, they are no longer valid and must be deleted and re-setup. Rewired can re-install them (menu option), but it will not overwrite the existing axes if you have modified them. For these axes to behave as you report, UnityEngine.GetAxis would have to be returning +1 for Axis 8 and 9 (0-index) for the particular joystick in question. If this were the case, that would be a serious bug or breaking change in the Unity input implementation because these triggers have always returned 0 at rest and 1 at full press on Xbox One. Use the DevTools/UnityJoystickElementIdentifier tool to see the values returned at the Unity input level.
     
    Last edited: Sep 1, 2016
  11. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    I am aware of dozens of games using Rewired on Xbox One with no reports like this. Um, Good for you?
    1. What version of Rewired? 1.0.0.99
    2. What version of Unity? 5.4.0p2
    3. Is this the actual Xbox One platform or Xbox One UWP (homebrew)? Platform
    4. Net or IL2CPP scripting backend? I assume .Net (If that's the default?).
    5. What are your Xbox One settings in the Rewired Input Manager? (assuming true Xbox One platform) Native, disable keyboard = false.
    6. Is anything logged in the log? Loads, no errors about rewired as far as I can tell.
    7. What does the Joystick Map look like in the Rewired Input Manager? It has xbox 360 and xbox one profiles
    8. Are you using Dual Analog Gamepad Template or the Xbox One Controller profile? Xbox One profile only. I removed the Dual Analog Gamepad in an attempt to fix it.
    9. How are you getting input for these Actions? Don't understand the question.
    10. All axis values are taken from UnityEngine.GetAxis. If you have modified any of the Unity Input Manager axes, they are no longer valid and must be deleted and re-setup. Rewired can re-install them (menu option), but it will not overwrite the existing axes if you have modified them. For these axes to behave as you report, UnityEngine.GetAxis would have to be returning +1 for Axis 8 and 9 (0-index) for the particular joystick in question. If this were the case, that would be a serious bug or breaking change in the Unity input implementation because these triggers have always returned 0 at rest and 1 at full press on Xbox One. Use the DevTools/UnityJoystickElementIdentifier tool to see the values returned at the Unity input level. As far as I'm aware, I deleted any old input manager entries before starting with rewired, as I wanted a clean slate. Where is the option menu?
    It should be noted that I put rewired in a subfolder called "Addons" as I'm ocd and wanted it out of the way.

    As for the mouse and keyboard stuff, I want the first player (on pc) to use either a joystick or the mouse to aim in a top-down twin stick shooter and so need absolute screen position when using a mouse. I'll look into using that custom controller stuff then.
     
  12. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    I'm trying to help you here. I'm letting you know that this is not a common problem or a problem I have heard of before.

    Thanks for answering the questions.

    Have you tried running the Rewired/DevTools/UnityJoystickElementIdentifier tool and see what the axes return when you press L or R? You need to add the tool to an empty scene at 0,0,0, add a Rewired Input Manager, and build it, then press L/R and see what happens.

    This will only cause a problem if you update Rewired with it still in that folder as noted in the Updating Rewired page.

    You don't need it to be mapped to Actions to use it. If it's for Player 1 only, just get the value from the mouse. If you want to be able to assign the mouse to a different Player, then just check player.controllers.hasMouse before reading the value from the mouse.
     
  13. DanielSnd

    DanielSnd

    Joined:
    Sep 4, 2013
    Posts:
    382
    From my game's forum, a linux user found an issue that seems to be with Rewired.

    Any idea of what is going on?
     
  14. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Not at this point. There's not much information there, but I will say this -- Slackware is not a supported or tested Linux platform. Rewired is only tested with Ubuntu and Mint and has been run on SteamOS by users without issue. I will see if I can discover anything.

    And what version of Rewired is this?
     
  15. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    I'm sure you are trying to help, but the tone wasn't that helpful. ;)
    Ok, tried this and built the scene for xbox one. When pressing the the left trigger, Axis 2 = 1 and Axis 8 =1 and when pressing the right trigger axis 2 = -1 and axis 9 = 1.
    I did update without moving rewired. Is this true of all asset updates? Anyway, I deleted rewired and re-imported the latest version. Still doesn't work I'm afraid.

    EDIT: It should be noted that the same Xbox One pad works on the PC version when using the Xbox One wireless adapter for Windows.
     
    Last edited: Sep 2, 2016
  16. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    It's true of all asset updates for any asset in the Unity Asset Store as explained in the Updating Rewired page:

    IMPORTANT

    As of Unity 5.0, Unity changed the way Unitypackages are extracted into the project.Because of these changes, it is extremely important that you always move the Rewired folder back to the root of your Assets folder in your project before updating Rewired with a new version. This applies to ALL assets in the Unity Asset Store and all Unitypackages downloaded and installed. This is not an issue with Rewired's design and it is not something that can be worked around.

    Rewired itself will work if you move it into another folder in your project. However, before updating, you must always remember to move it back to the root of the project.

    Details

    In Unity 5, Unity has changed the way the Unitypackage system works. In 4.x it used to find existing files that matched those being extracted by GUID and then replace those files even if they weren't in the same location as in the Unitypackage. Not anymore in U5. If you unpack a file that already exists in the project but it's not in the expected location, it will just unpack a copy into the root instead of replacing the one you moved and change all the GUIDs on these new files. You will be left with multiple copies of the scripts and DLLs which will interfere with each other and break script references on Monobehaviours. There is no way to work around this. Unitypackage is Unity's format and asset store developers cannot change the way it works.

    ------------

    It may not affect some assets as much as others, but it affects all assets.

    This matches exactly what the Xbox One Controller definition for Xbox One uses for its L/R axes.

    Please add this code somewhere in your project and build it and send me the relevant part from the log file.

    Code (csharp):
    1. Debug.Log("Rewired is " + (ReInput.usingUnityInput ? " in fallback mode" : " in native mode") );
    2. // Log assigned Joystick information for all joysticks regardless of whether or not they've been assigned
    3. Debug.Log("Rewired found " + ReInput.controllers.joystickCount + " joysticks attached.");
    4. for(int i = 0; i < ReInput.controllers.joystickCount; i++) {
    5. Joystick j = ReInput.controllers.Joysticks[i];
    6. Debug.Log(
    7. "[" + i + "] Joystick: " + j.name + "\n" +
    8. "Hardware Name: " + j.hardwareName + "\n" +
    9. "Is Recognized: " + (j.hardwareTypeGuid != System.Guid.Empty ? "Yes" : "No") + "\n" +
    10. "Is Assigned: " + (ReInput.controllers.IsControllerAssigned(j.type, j) ? "Yes" : "No")
    11. );
    12. }
    13.  
    14. // Log assigned Joystick information for each Player
    15. foreach(var p in ReInput.players.Players) {
    16. Debug.Log("PlayerId = " + p.id + " is assigned " + p.controllers.joystickCount + " joysticks.");
    17.  
    18. // Log information for each Joystick assigned to this Player
    19. foreach(var j in p.controllers.Joysticks) {
    20. Debug.Log(
    21. "Joystick: " + j.name + "\n" +
    22. "Is Recognized: " + (j.hardwareTypeGuid != System.Guid.Empty ? "Yes" : "No")
    23. );
    24.  
    25. // Log information for each Controller Map for this Joystick
    26. foreach(var map in p.controllers.maps.GetMaps(j.type, j.id)) {
    27. Debug.Log("Controller Map:\n" +
    28. "Category = " +
    29. ReInput.mapping.GetMapCategory(map.categoryId).name + "\n" +
    30. "Layout = " +
    31. ReInput.mapping.GetJoystickLayout(map.layoutId).name + "\n" +
    32. "enabled = " + map.enabled
    33. );
    34. foreach(var aem in map.GetElementMaps()) {
    35. var action = ReInput.mapping.GetAction(aem.actionId);
    36. if(action == null) continue; // invalid Action
    37. Debug.Log("Action \"" + action.name + "\" is bound to \"" +
    38. aem.elementIdentifierName
    39. );
    40. }
    41. }
    42. }
    43. }
     
    Last edited: Sep 2, 2016
  17. _met44

    _met44

    Joined:
    Jun 1, 2013
    Posts:
    633
    Hey guys, someone knows how its possible that a xbox One gamepad shows up the select/back button elementIdentifierName == "View" when looking up mappings for an action at runtime ? Mine is called "Back" but someone on the team is getting something else...

    I'll write a special rule to work arround it but I'm baffled, really curious about what's going on. Wondering if it could be a difference between US/Canada and european versions ? Or maybe difference between and wireless and wired ?

    ps: this is using the latest rewired version on the store at this moment, and i'm on 8.1 and other guy is on 10 I believe but not sure sorry
     
  18. ifo

    ifo

    Joined:
    Sep 2, 2016
    Posts:
    1
    I have checked that the game is indeed running correctly with a Ubuntu 16.04 Live DVD. It seems that Rewired has problems with eudev (https://wiki.gentoo.org/wiki/Project:Eudev), which is used by some distributions (including Slackware) as an alternative to systemd-udev. To check I've compiled systemd-udev on Slackware myself and just used the .so files via LD_LIBRARY_PATH, which made the game work.
    I cannot tell if this is eudev's or Rewired's fault - it may be worth contacting the eudev developers though?
     
  19. DanielSnd

    DanielSnd

    Joined:
    Sep 4, 2013
    Posts:
    382
    Adding to this, I'm using the latest Rewired version available on the asset store.
     
  20. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    I have also installed Slackware and found that the problem lies in a call to this function:
    udev_device_get_parent_with_subsystem_devtype

    With certain devices, calls to this function crash. Other devices it doesn't. I can find no explanation to this. No invalid data is being passed to this function.

    Leaving this function call out it does not crash, but certain data is unavailable without it.
     
  21. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    http://guavaman.com/projects/rewired/docs/KnownIssues.html#xinput-device-name

    Short answer:
    Your machine is detecting the device as an XInput device, his machine is detecting the device as an Xbox One Controller.

    Only way this is possible is if you are using Use XInput and he is not. If this is the exact same build (the Rewired Input Manager settings are exactly the same on both machines.), then check the logs for XInput init failure. If I recall correctly, your game has an XInput option. You're probably not in sync with him.

    If Unity input is being used, it will not show up as an XInput device.
    If Use XInput is not enabled, it will not show up as an XInput device.
    If Disable Native Input is enabled, it will not show up as an XInput device.
    If XInput fails to init for whatever reason, it will not show as an XInput device.

    If you were to check Joystick.hardwareTypeId, you'd see they're different on the two machines. One would be returning the XBox 360 Controller definition GUID, the other the XBox One Controller definition GUID.

    His machine would also not have controller vibration.
     
    _met44 likes this.
  22. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Based on the extremely odd nature of this problem, I'm going to guess that it does have something to with the installation issue. All kinds of havok can result from installing an update with Rewired in a subfolder because Unity will extract multiple copies of the same files that already exist in the project and assign them new GUIDs, including the core DLLs that contain the MonoBehaviors. Mismatching GUIDs can break everything.

    I would do the following:
    1. Open the Unity editor.
    2. Delete all copies of Rewired from the project. (Do NOT delete your Rewired Input Manager prefabs.)
    3. Close the Unity Editor without saving.
    4. Reinstall Rewired.
    5. Close Unity again without saving.
    6. Re-open Unity.
     
    Last edited: Sep 3, 2016
  23. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Rewired 1.0.0.100 is available for registered users to download. If you would like to register to receive early access to updates, please contact me here.

    1.0.0.100:

    Changes:
    - Made changes to allow Rewired to work in the Linux Unity editor.
    - Added workarounds for UDev issues on Slackware Linux.

    Bug Fixes:
    - Fixed incorrect Right Stick Button mapping in Dual Analog Gamepad Template for Xiaomi Wireless Game Controller.

    ----------------

    @DanielSnd @ifo

    I cannot say for sure, but I believe the source of the issue to be with Mono. Calls to udev_device_get_parent_with_subsystem_devtype work perfectly fine from a separate C application, but when called from Mono, certain devices cause it to crash. You can see this in the stacktrace you sent:

    /usr/local/games/WhatTheBox_Data/Mono/x86_64/libmono.so(+0x91a46) [0x7f7957404a46]
    /usr/local/games/WhatTheBox_Data/Mono/x86_64/libmono.so(+0x348e4) [0x7f79573a78e4]
    /lib64/libpthread.so.0(+0x113b0) [0x7f795a6413b0]
    /lib64/libc.so.6(strlen+0x26) [0x7f7958e6fff6]
    /lib64/libudev.so.0(+0x5b14) [0x7f78cc7afb14]
    /lib64/libudev.so.0(udev_device_get_parent+0x30) [0x7f78cc7afb90]
    /usr/lib64/libudev.so(udev_device_get_parent_with_subsystem_devtype+0x14) [0x7f7955fe7aa4]
    [0x411cb3b8]

    It is choking on processing inside that function, so I have removed all use of that function. While I find this positively absurd to have to sidestep around particular functions in core libraries, I have no choice if this is to run on that distro.
     
  24. DanielSnd

    DanielSnd

    Joined:
    Sep 4, 2013
    Posts:
    382
    Is this function somewhere I can access and change? Like for it not to be called in linux? Is the certain data unavailable without it important certain data? or something I can live without?
     
  25. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    No you can't change this. This is in the native Linux DLL in Rewired. My workaround should not cause any loss of functionality.
     
  26. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    So, I followed your reinstall instructions and then ran the game with the new debugging stuff. I get this error on screen:

    Code (CSharp):
    1. Rewired: There was an error initializing the platform tool. Unity input will use shown instead.
    2. --------- Rewired System Info ---------
    3. Unity Version 5.4.0p2
    4. Rewired Version: 1.0.0.99.U5
    5. Platform XboxOne
    6. Using Unity Input: False
    7. Primary input source: Native
    8. Native mouse handling: True
    9. Enhanced device support: True
    And here is the entire error.log file.

    Unity for Xbox built on XDK 693765307.
    PlayerConnection initialized from G:/Data (debug = 0)
    PlayerConnection initialized network socket : 0.0.0.0 4600
    Multi-casting "[IP] 192.168.0.22 [Port] 4600 [Flags] 2 [Guid] 3696367126 [EditorId] 97738869 [Version] 1048832 [Id] XboxOnePlayer(192.168.0.22):4601 [Debug] 0" to [225.0.0.222:34997]...
    Socket: bind failed, error: Unknown error(10013)

    (Filename: C:\buildslave\unity\build\Runtime/Network/Sockets.cpp Line: 421)

    The above line (Multi-casting/Socket bind failed 10013) indicates you don't have port UDP 34997 exempted in your manifest, so profiling and script debugging won't work. See "Multiplayer->Overview" in the XboxOne Plugins docs for more information.

    GfxDevice: creating device client; threaded=1
    XboxOne Direct3D:
    Version: Xbox One Direct3D 11.1
    Renderer: Microsoft Xbox One Renderer (ID=0x0)
    Vendor: Microsoft
    VRAM: 6144 MB
    Mono debug trace mode 5
    Initialize mono
    Mono path[0] = 'G:/Data/Managed'
    Mono config path = 'G:/Data/Managed'
    Mono: Config attempting to parse: 'G:\Data\Managed\mono\config'.Mono: Config attempting to parse: 'game:\Media\.mono/config'.PlayerConnection already initialized - listening to [192.168.0.22:4600]
    Mono: gc took 64 usecsMono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: Image addref mscorlib 000002060D4A3DF0 -> G:\Data\Managed\mscorlib.dll 000002060D59A1E0: 2
    Mono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: AOT loaded AOT Module for G:\Data\Managed\mscorlib.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\mscorlib.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\mscorlib.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\mscorlib\mscorlib.config'.Mono: AOT FOUND function 'generic_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'restore_context' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'call_filter' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rethrow_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_8' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_pending_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_corlib_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.OutOfMemoryException:.ctor (string) 0000010531AB46E0 - 0000010531AB4730 0000010531FD3D38
    Mono: AOT FOUND function 'generic_trampoline_6' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this___object (object,intptr,intptr,intptr) 0000010531D6DF10 - 0000010531D6DFE0 0000010531FE279E
    Mono: AOT FOUND AOT compiled code for System.NullReferenceException:.ctor (string) 0000010531AA9A90 - 0000010531AA9AE0 0000010531FD3AFC
    Mono: AOT FOUND AOT compiled code for System.StackOverflowException:.ctor (string) 0000010531AB6CF0 - 0000010531AB6D10 0000010531FD3E0B
    Mono: Assembly mscorlib 000002060D4A3DF0 added to domain Unity Root Domain, ref_count=1
    Initialize engine version: 5.4.0p2 (38a9e1a3db04)
    Begin MonoManager ReloadAssembly
    Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.dll'.Platform assembly: G:\Data\Managed\UnityEngine.dll (this message is harmless)
    Mono: Image addref UnityEngine 000002060E6C3B80 -> G:\Data\Managed\UnityEngine.dll 000002060FF02620: 2
    Mono: Assembly UnityEngine 000002060E6C3B80 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.dll'.Platform assembly: G:\Data\Managed\System.dll (this message is harmless)
    Mono: Image addref System 000002060D5A2230 -> G:\Data\Managed\System.dll 000002060FF03D30: 2
    Mono: Assembly System 000002060D5A2230 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Mono.Security.dll'.Platform assembly: G:\Data\Managed\Mono.Security.dll (this message is harmless)
    Mono: Image addref Mono.Security 000002060FF04A30 -> G:\Data\Managed\Mono.Security.dll 000002060FF0D500: 2
    Mono: Assembly Mono.Security 000002060FF04A30 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Mono.Security.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Mono.Security.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Mono.Security.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Mono.Security\Mono.Security.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Configuration.dll'.Platform assembly: G:\Data\Managed\System.Configuration.dll (this message is harmless)
    Mono: Image addref System.Configuration 000002060FF0E220 -> G:\Data\Managed\System.Configuration.dll 000002060FF0DB90: 2
    Mono: Assembly System.Configuration 000002060FF0E220 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Xml.dll'.Platform assembly: G:\Data\Managed\System.Xml.dll (this message is harmless)
    Mono: Image addref System.Xml 000002060FF89DF0 -> G:\Data\Managed\System.Xml.dll 000002060FF89580: 2
    Mono: Assembly System.Xml 000002060FF89DF0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\System.Xml.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Xml.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Xml.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Xml\System.Xml.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Security.dll'.Platform assembly: G:\Data\Managed\System.Security.dll (this message is harmless)
    Mono: Image addref System.Security 000002060FFAF980 -> G:\Data\Managed\System.Security.dll 000002060FF8E0D0: 2
    Mono: Assembly System.Security 000002060FFAF980 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\System.Security.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Security.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Security.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Security\System.Security.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.Configuration.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Configuration.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Configuration.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Configuration\System.Configuration.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System\System.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Core.dll'.Platform assembly: G:\Data\Managed\System.Core.dll (this message is harmless)
    Mono: Image addref System.Core 00000206100275A0 -> G:\Data\Managed\System.Core.dll 000002060FFDD160: 2
    Mono: Assembly System.Core 00000206100275A0 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Mono.Posix.dll'.Platform assembly: G:\Data\Managed\Mono.Posix.dll (this message is harmless)
    Mono: Image addref Mono.Posix 0000020610027660 -> G:\Data\Managed\Mono.Posix.dll 0000020610027B10: 2
    Mono: Assembly Mono.Posix 0000020610027660 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Mono.Posix.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Mono.Posix.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Mono.Posix.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Mono.Posix\Mono.Posix.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.Core.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Core.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Core.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Core\System.Core.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine\UnityEngine.config'.Mono: Assembly Ref addref UnityEngine 000002060E6C3B80 -> mscorlib 000002060D4A3DF0: 2
    Mono: AOT FOUND AOT compiled code for UnityEngine.ClassLibraryInitializer:Init () 000001053229B210 - 000001053229B230 000001053266EF80
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr) 0000010531D5CCB0 - 0000010531D5CD60 0000010531FE21C5
    Mono: AOT FOUND AOT compiled code for UnityEngine.UnityLogWriter:Init () 00000105321751A0 - 0000010532175200 00000105326697E5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_specific (intptr) 0000010531DC88C0 - 0000010531DC8940 0000010531FE4575
    Mono: AOT FOUND AOT compiled code for UnityEngine.UnityLogWriter:.ctor () 0000010532175100 - 0000010532175120 00000105326697E1
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:.ctor () 0000010531B44CC0 - 0000010531B44D30 0000010531FD709B
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:.cctor () 0000010531B44DC0 - 0000010531B44E20 0000010531FD70A3
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter/NullTextWriter:.ctor () 0000010531B461E0 - 0000010531B46200 0000010531FD7162
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_NewLine () 0000010531A995C0 - 0000010531A99630 0000010531FD35C5
    Mono: AOT FOUND AOT compiled code for string:ToCharArray (int,int) 00000105319B0DB0 - 00000105319B0F90 0000010531FCEF84
    Mono: AOT FOUND AOT compiled code for string:.cctor () 00000105319B0420 - 00000105319B04B0 0000010531FCEF2D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:GetLOSLimit () 00000105319BBF10 - 00000105319BBF80 0000010531FCF1B6
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_specific (intptr,int) 0000010531DCB760 - 0000010531DCB7E0 0000010531FE462B
    Mono: AOT FOUND AOT compiled code for System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle) 00000105319E72D0 - 00000105319E73B0 0000010531FCFD49
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr) 00000105319E7250 - 00000105319E72D0 0000010531FCFD47
    Mono: AOT FOUND AOT compiled code for System.Console:SetOut (System.IO.TextWriter) 0000010531A76CB0 - 0000010531A76D20 0000010531FD252C
    Mono: AOT FOUND function 'delegate_invoke_impl_has_target' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'delegate_invoke_impl_target_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_7' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Console:.cctor () 0000010531A76060 - 0000010531A767A0 0000010531FD2482
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_fast (intptr) 0000010531DCB8E0 - 0000010531DCB960 0000010531FE4631
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Text.Encoding:InternalCodePage (int&) 0000010531D08B00 - 0000010531D08B80 0000010531FE0918
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:.cctor () 0000010531D05A20 - 0000010531D06240 0000010531FE078E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_ptrfree_box (intptr) 0000010531DCB650 - 0000010531DCB6D0 0000010531FE4627
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_ptrfree (intptr) 0000010531DCA4D0 - 0000010531DCA550 0000010531FE45E3
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:get_Default () 0000010531D08B80 - 0000010531D08DA0 0000010531FE091C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Monitor:Enter (object) 0000010531D1BF50 - 0000010531D1BFD0 0000010531FE0DB8
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:GetEncoding (string) 0000010531D08170 - 0000010531D085B0 0000010531FE08A7
    Mono: AOT FOUND AOT compiled code for string:ToLowerInvariant () 00000105319B7C60 - 00000105319B7D50 0000010531FCF0CB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:InternalAllocateStr (int) 00000105319BBD90 - 00000105319BBE10 0000010531FCF1AD
    Mono: AOT FOUND AOT compiled code for char:ToLowerInvariant (char) 00000105319AFEA0 - 00000105319AFF20 0000010531FCEEF6
    Mono: AOT FOUND AOT compiled code for char:.cctor () 00000105319AE340 - 00000105319AE3B0 0000010531FCEE1D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) char:GetDataTablePointers (byte*&,byte*&,double*&,uint16*&,uint16*&,uint16*&,uint16*&) 00000105319AE6B0 - 00000105319AE760 0000010531FCEE55
    Mono: AOT FOUND function 'generic_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'nullified_class_init_trampoline' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:InvokeI18N (string,object[]) 0000010531D07390 - 0000010531D07800 0000010531FE084C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.AppDomain:getCurDomain () 0000010531A6A470 - 0000010531A6A4E0 0000010531FD20C2
    Mono: AOT FOUND AOT compiled code for System.AppDomain:Load (string) 0000010531A6C480 - 0000010531A6C4B0 0000010531FD214A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.AppDomain:LoadAssembly (System.AppDomain*,string,System.Security.Policy.Evidence,bool) 0000010531A6B9F0 - 0000010531A6BAB0 0000010531FD213C
    Mono: Assembly Loader probing location: 'G:\Data\Managed\mono\gac\I18N\2.0.0.0__0738eb9f132ed756\I18N.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\I18N.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\mono\gac\I18N\2.0.0.0__0738eb9f132ed756\I18N.exe'.Mono: Assembly Loader probing location: 'G:\Data\Managed\I18N.exe'.Mono: AOT FOUND AOT compiled code for System.AppDomain:DoAssemblyResolve (string,bool) 0000010531A6E470 - 0000010531A6E810 0000010531FD21EE
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_object__this___object_sbyte (object,intptr,intptr,intptr) 0000010531D73B60 - 0000010531D73C30 0000010531FE2980
    Mono: AOT FOUND AOT compiled code for System.IO.FileNotFoundException:.ctor (string,string) 0000010531B2DEC0 - 0000010531B2DF20 0000010531FD6853
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr) 0000010531D6D6C0 - 0000010531D6D790 0000010531FE2775
    [304:] EXCEPTION handling: FileNotFoundException
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_thread_get_undeniable_exception () 0000010531DC8620 - 0000010531DC8690 0000010531FE456B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Monitor:Exit (object) 0000010531D1BFD0 - 0000010531D1C050 0000010531FE0DBA
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string) 00000105319B9040 - 00000105319B91B0 0000010531FCF11C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:GetExecutingAssembly () 0000010531B52690 - 0000010531B52700 0000010531FD7599
    Mono: AOT FOUND AOT compiled code for System.Reflection.Assembly:GetType (string) 0000010531B50E00 - 0000010531B50E30 0000010531FD7528
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:InternalGetType (System.Reflection.Assembly*,System.Reflection.Module,string,bool,bool) 0000010531B50E30 - 0000010531B50F00 0000010531FD752A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:internal_from_name (string,bool,bool) 00000105319DC570 - 00000105319DC600 0000010531FCF98D
    Mono: AOT FOUND function 'delegate_invoke_impl_target_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Reflection.Missing:.cctor () 0000010531B5EC40 - 0000010531B5EC70 0000010531FD79F6
    Mono: AOT FOUND AOT compiled code for System.Type:.cctor () 00000105319DAEF0 - 00000105319DAFE0 0000010531FCF8B1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_helper_ldstr_mscorlib (intptr) 0000010531DCAA80 - 0000010531DCAB00 0000010531FE45F9
    Mono: AOT FOUND AOT compiled code for string:Format (string,object) 00000105319B7F80 - 00000105319B7FE0 0000010531FCF0DF
    Mono: AOT FOUND AOT compiled code for string:FormatHelper (System.Text.StringBuilder,System.IFormatProvider,string,object[]) 00000105319B81B0 - 00000105319B8B20 0000010531FCF0F1
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:.ctor (int) 0000010531D0C040 - 0000010531D0C080 0000010531FE0A65
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:.ctor (string,int,int,int,int) 0000010531D0BBF0 - 0000010531D0C020 0000010531FE0A5F
    Mono: AOT FOUND AOT compiled code for string:parseFormatSpecifier (string,int&,int&,int&,bool&,string&) 00000105319BA400 - 00000105319BA780 0000010531FCF158
    Mono: AOT FOUND AOT compiled code for string:ToString () 00000105319B7F60 - 00000105319B7F70 0000010531FCF0D9
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:ToString () 0000010531D0C900 - 0000010531D0CB20 0000010531FE0A92
    Mono: AOT FOUND AOT compiled code for System.ArgumentException:.ctor (string,string) 0000010531A71D80 - 0000010531A71DE0 0000010531FD2325
    [304:] EXCEPTION handling: ArgumentException
    Encoding name 'CP1252' not supported
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:get_UTF8Unmarked () 0000010531D08FF0 - 0000010531D090C0 0000010531FE0964
    Mono: AOT FOUND AOT compiled code for System.Text.DecoderFallback:.cctor () 0000010531D038F0 - 0000010531D039A0 0000010531FE068F
    Mono: AOT FOUND AOT compiled code for System.Text.DecoderReplacementFallback:.ctor () 0000010531D03BD0 - 0000010531D03C00 0000010531FE06C3
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:.ctor (bool,bool) 0000010531D13750 - 0000010531D138C0 0000010531FE0C06
    Mono: AOT FOUND AOT compiled code for System.Text.EncoderFallback:.cctor () 0000010531D04DA0 - 0000010531D04E50 0000010531FE071A
    Mono: AOT FOUND AOT compiled code for System.Text.EncoderReplacementFallback:.ctor () 0000010531D051E0 - 0000010531D05210 0000010531FE0756
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:.ctor (int) 0000010531D05890 - 0000010531D05A20 0000010531FE077E
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardError (int) 0000010531A76AD0 - 0000010531A76B10 0000010531FD250C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleError () 0000010531B38590 - 0000010531B38600 0000010531FD6C12
    Mono: AOT FOUND AOT compiled code for System.IO.MonoIO:.cctor () 0000010531B36800 - 0000010531B36850 0000010531FD6AFC
    Mono: AOT FOUND AOT compiled code for System.Console:Open (intptr,System.IO.FileAccess,int) 0000010531A76940 - 0000010531A76AB0 0000010531FD24FE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_InternalConsoleOutputEnabled () 0000010531A99470 - 0000010531A994E0 0000010531FD35BF
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:.ctor () 0000010531B3D5D0 - 0000010531B3D5F0 0000010531FD6E05
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamWriter:.ctor (System.IO.Stream,System.Text.Encoding) 0000010531B48750 - 0000010531B48780 0000010531FD721A
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanWrite () 0000010531B3D610 - 0000010531B3D620 0000010531FD6E0B
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Initialize (System.Text.Encoding,int) 0000010531B41C60 - 0000010531B41E00 0000010531FD6F8A
    Mono: AOT FOUND AOT compiled code for System.IO.Stream:.cctor () 0000010531B3CA30 - 0000010531B3CA90 0000010531FD6DAF
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:.cctor () 0000010531B41BD0 - 0000010531B41C60 0000010531FD6F80
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:.ctor (System.IO.Stream,System.Text.Encoding,int) 0000010531B41760 - 0000010531B418D0 0000010531FD6F6A
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetMaxByteCount (int) 0000010531D16070 - 0000010531D160E0 0000010531FE0C44
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanSeek () 0000010531B3D600 - 0000010531B3D610 0000010531FD6E09
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_Position () 0000010531B3D630 - 0000010531B3D640 0000010531FD6E0F
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:set_AutoFlush (bool) 0000010531B41E30 - 0000010531B41EB0 0000010531FD6F94
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamWriter:Flush () 0000010531B48880 - 0000010531B488D0 0000010531FD7226
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Decode () 0000010531B423B0 - 0000010531B42600 0000010531FD6FAC
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:Synchronized (System.IO.TextWriter,bool) 0000010531B45010 - 0000010531B45160 0000010531FD70CB
    Mono: AOT FOUND AOT compiled code for System.IO.SynchronizedWriter:.ctor (System.IO.TextWriter,bool) 0000010531B46280 - 0000010531B462E0 0000010531FD716E
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:get_IsConsole () 0000010531A79F40 - 0000010531A7A000 0000010531FD28A8
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:.cctor () 0000010531A78C50 - 0000010531A78D10 0000010531FD2716
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleOutput () 0000010531B384B0 - 0000010531B38520 0000010531FD6C0A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.ConsoleDriver:Isatty (intptr) 0000010531A7A000 - 0000010531A7A080 0000010531FD28B6
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:CreateNullConsoleDriver () 0000010531A78D10 - 0000010531A78D30 0000010531FD2726
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardOutput (int) 0000010531A76B90 - 0000010531A76BD0 0000010531FD251C
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardInput (int) 0000010531A76B30 - 0000010531A76B70 0000010531FD2514
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleInput () 0000010531B38520 - 0000010531B38590 0000010531FD6C0E
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamReader:.cctor () 0000010531B480C0 - 0000010531B48190 0000010531FD71E8
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamReader:.ctor (System.IO.Stream,System.Text.Encoding) 0000010531B47F10 - 0000010531B47F40 0000010531FD71C8
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:.ctor () 0000010531B44320 - 0000010531B44340 0000010531FD704A
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:.cctor () 0000010531B44340 - 0000010531B443A0 0000010531FD704E
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader/NullTextReader:.ctor () 0000010531B44780 - 0000010531B447A0 0000010531FD7087
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader:.cctor () 0000010531B3E9E0 - 0000010531B3EA60 0000010531FD6E86
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader/NullStreamReader:.ctor () 0000010531B41610 - 0000010531B41630 0000010531FD6F4F
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader:Initialize (System.IO.Stream,System.Text.Encoding,bool,int) 0000010531B3EA60 - 0000010531B3F090 0000010531FD6E92
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanRead () 0000010531B3D5F0 - 0000010531B3D600 0000010531FD6E07
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetMaxCharCount (int) 0000010531D160E0 - 0000010531D16150 0000010531FE0C46
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetDecoder () 0000010531D16150 - 0000010531D161C0 0000010531FE0C48
    Mono: AOT FOUND AOT compiled code for System.Text.Decoder:.ctor () 0000010531D02C80 - 0000010531D02CE0 0000010531FE0652
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetPreamble () 0000010531D16230 - 0000010531D162D0 0000010531FE0C50
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:Synchronized (System.IO.TextReader) 0000010531B44630 - 0000010531B44780 0000010531FD707C
    Mono: AOT FOUND AOT compiled code for System.IO.SynchronizedReader:.ctor (System.IO.TextReader) 0000010531B447B0 - 0000010531B44800 0000010531FD708B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.GC:SuppressFinalize (object) 0000010531A9BD30 - 0000010531A9BDB0 0000010531FD36C2
    Mono: gc took 436 usecsMono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_virtual_void__this__ (object,intptr,intptr,intptr) 0000010531DC7DC0 - 0000010531DC7EA0 0000010531FE4549
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Finalize () 0000010531B431D0 - 0000010531B43240 0000010531FD6FFC
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Dispose (bool) 0000010531B41F10 - 0000010531B42130 0000010531FD6FA0
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Assembly-CSharp.dll'.Platform assembly: G:\Data\Managed\Assembly-CSharp.dll (this message is harmless)
    Mono: Image addref Assembly-CSharp 0000020610026FA0 -> G:\Data\Managed\Assembly-CSharp.dll 0000020610176AB0: 2
    Mono: Assembly Assembly-CSharp 0000020610026FA0 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Platform assembly: G:\Data\Managed\Pathfinding.ClipperLib.dll (this message is harmless)
    Mono: Image addref Pathfinding.ClipperLib 0000020610026B20 -> G:\Data\Managed\Pathfinding.ClipperLib.dll 000002061018A780: 2
    Mono: Assembly Pathfinding.ClipperLib 0000020610026B20 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.ClipperLib.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.ClipperLib.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.ClipperLib\Pathfinding.ClipperLib.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Platform assembly: G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll (this message is harmless)
    Mono: Image addref Pathfinding.Ionic.Zip.Reduced 0000020610027060 -> G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll 0000020610177080: 2
    Mono: Assembly Pathfinding.Ionic.Zip.Reduced 0000020610027060 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.Ionic.Zip.Reduced\Pathfinding.Ionic.Zip.Reduced.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Platform assembly: G:\Data\Managed\Pathfinding.Poly2Tri.dll (this message is harmless)
    Mono: Image addref Pathfinding.Poly2Tri 00000206100269A0 -> G:\Data\Managed\Pathfinding.Poly2Tri.dll 00000206101779F0: 2
    Mono: Assembly Pathfinding.Poly2Tri 00000206100269A0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.Poly2Tri.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.Poly2Tri\Pathfinding.Poly2Tri.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Rewired_Core.dll'.Platform assembly: G:\Data\Managed\Rewired_Core.dll (this message is harmless)
    Mono: Image addref Rewired_Core 0000020610026E20 -> G:\Data\Managed\Rewired_Core.dll 0000020610178430: 2
    Mono: Assembly Rewired_Core 0000020610026E20 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Rewired_Core.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Rewired_Core.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Rewired_Core.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Rewired_Core\Rewired_Core.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.UI.dll'.Platform assembly: G:\Data\Managed\UnityEngine.UI.dll (this message is harmless)
    Mono: Image addref UnityEngine.UI 0000020610026A60 -> G:\Data\Managed\UnityEngine.UI.dll 00000206101F54C0: 2
    Mono: Assembly UnityEngine.UI 0000020610026A60 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.UI.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.UI.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.UI.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine.UI\UnityEngine.UI.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\Assembly-CSharp.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Assembly-CSharp.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Assembly-CSharp.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Assembly-CSharp\Assembly-CSharp.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.UI.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.Networking.dll'.Platform assembly: G:\Data\Managed\UnityEngine.Networking.dll (this message is harmless)
    Mono: Image addref UnityEngine.Networking 0000020610026EE0 -> G:\Data\Managed\UnityEngine.Networking.dll 00000206101F5FE0: 2
    Mono: Assembly UnityEngine.Networking 0000020610026EE0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.Networking.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.Networking.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.Networking.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine.Networking\UnityEngine.Networking.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Rewired_Core.dll'.Mono: AOT FOUND AOT compiled code for UnityEngine.StackTraceUtility:.cctor () 00000105322A8A40 - 00000105322A8A60 000001053266F475
    Mono: AOT FOUND AOT compiled code for UnityEngine.StackTraceUtility:SetProjectFolder (string) 00000105322A8A60 - 00000105322A8A80 000001053266F47C
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr) 000001053232F1E0 - 000001053232F2A0 0000010532673463
    - Completed reload, in 1.877 seconds
    Mono: Assembly Ref addref Rewired_Core 0000020610026E20 -> UnityEngine 000002060E6C3B80: 2
    Mono: Assembly Ref addref UnityEngine.UI 0000020610026A60 -> UnityEngine 000002060E6C3B80: 3
    Mono: Assembly Ref addref UnityEngine.UI 0000020610026A60 -> mscorlib 000002060D4A3DF0: 3
    Mono: Assembly Ref addref Rewired_Core 0000020610026E20 -> mscorlib 000002060D4A3DF0: 4
    Mono: Assembly Ref addref UnityEngine.Networking 0000020610026EE0 -> UnityEngine 000002060E6C3B80: 4
    Mono: Assembly Ref addref UnityEngine.Networking 0000020610026EE0 -> mscorlib 000002060D4A3DF0: 5
    Mono: Assembly Ref addref UnityEngine.Networking 0000020610026EE0 -> System.Core 00000206100275A0: 2
    Mono: Assembly Ref addref System.Core 00000206100275A0 -> mscorlib 000002060D4A3DF0: 6
    Mono: Assembly Ref addref UnityEngine.Networking 0000020610026EE0 -> System 000002060D5A2230: 2
    Mono: Assembly Ref addref System 000002060D5A2230 -> mscorlib 000002060D4A3DF0: 7
    Mono: The request to load the assembly mscorlib v2.0.5.0 was remapped to v2.0.0.0Mono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> mscorlib 000002060D4A3DF0: 8
    Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> UnityEngine 000002060E6C3B80: 5
    Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> UnityEngine.UI 0000020610026A60: 2
    Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> Rewired_Core 0000020610026E20: 2
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Core.dll'.Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> System.Core 00000206100275A0: 3
    Mono: Assembly Ref addref Rewired_Core 0000020610026E20 -> System.Core 00000206100275A0: 4
    Mono: The request to load the assembly System v2.0.5.0 was remapped to v2.0.0.0Mono: Assembly Loader probing location: 'G:\Data\Managed\System.dll'.Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> System 000002060D5A2230: 3
    Mono: Assembly Ref addref Assembly-CSharp 0000020610026FA0 -> Pathfinding.ClipperLib 0000020610026B20: 2
    Mono: Assembly Ref addref Pathfinding.ClipperLib 0000020610026B20 -> mscorlib 000002060D4A3DF0: 9
    Mono: Assembly Ref addref Rewired_Core 0000020610026E20 -> System 000002060D5A2230: 4
    Splash: texture[8x8], screen[1920x1080] scaledtexture[1080x1080]
    The following GlobalManagers were stripped from the build (Either because they're not used or not supported on this platform):
    UnityAdsSettings
    ClusterInputManager
    CloudWebServicesManager
    UnityAnalyticsManager
    UnityConnectSettings
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_ActiveSceneChanged (UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene) 00000105321A2F50 - 00000105321A2FC0 000001053266A7B2
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene_Scene (object,intptr,intptr,intptr) 00000105323755C0 - 00000105323756A0 0000010532674A64
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:.ctor () 00000105340FB440 - 00000105340FB460 00000105345344B9
    Mono: AOT FOUND AOT compiled code for <Module>:.cctor () 00000105340C1020 - 00000105340C1030 00000105345334F9
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr) 0000010531D4D060 - 0000010531D4D120 0000010531FE1C39
    Mono: AOT FOUND AOT compiled code for UnityEngine.ScriptableObject:.ctor () 0000010532114C40 - 0000010532114C60 00000105326682CE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.ScriptableObject:Internal_CreateScriptableObject (UnityEngine.ScriptableObject) 0000010532114C60 - 0000010532114CE0 00000105326682D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:.ctor () 00000105341072F0 - 0000010534107C60 000001053453475C
    Mono: gc took 514 usecsMono: gc took 891 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap:.ctor () 000001053414E8F0 - 000001053414E910 00000105345359D5
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerElementIdentifier:.ctor () 00000105341BFE80 - 00000105341BFE90 000001053453725B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawOrDirectInput/MatchingCriteria:.ctor () 0000010534110AB0 - 0000010534110AC0 00000105345349D5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Elements:.ctor () 0000010534113D50 - 0000010534113D60 0000010534534A91
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Axis:.ctor () 0000010534114920 - 0000010534114950 0000010534534ACF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareAxisInfo:.ctor () 00000105340D3A90 - 00000105340D3AE0 000001053453389C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Elements:.ctor () 0000010534118420 - 0000010534118430 0000010534534BBB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Axis:.ctor () 0000010534118FF0 - 0000010534119020 0000010534534BF7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/MatchingCriteria:.ctor () 000001053411C4D0 - 000001053411C4E0 0000010534534CD3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Elements:.ctor () 000001053411CCC0 - 000001053411CCD0 0000010534534CF3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/MatchingCriteria:.ctor () 0000010534121020 - 0000010534121030 0000010534534E0A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Elements:.ctor () 00000105341219D0 - 00000105341219E0 0000010534534E30
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Axis:.ctor () 0000010534122BA0 - 0000010534122C60 0000010534534E78
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/MatchingCriteria:.ctor () 0000010534126C80 - 0000010534126C90 0000010534534F6E
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Elements:.ctor () 0000010534127620 - 0000010534127630 0000010534534F92
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Axis:.ctor () 0000010534128480 - 00000105341284B0 0000010534534FD6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/MatchingCriteria:.ctor () 000001053412C4A0 - 000001053412C4B0 00000105345350D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Elements:.ctor () 000001053412CE70 - 000001053412CE80 00000105345350F2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Axis:.ctor () 000001053412DC90 - 000001053412DCC0 0000010534535134
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/MatchingCriteria:.ctor () 0000010534131980 - 0000010534131990 0000010534535221
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Elements:.ctor () 0000010534132140 - 0000010534132150 0000010534535241
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Axis:.ctor () 0000010534132B70 - 0000010534132B80 000001053453526B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/MatchingCriteria:.ctor () 00000105341368F0 - 0000010534136900 000001053453537D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Elements:.ctor () 0000010534137090 - 00000105341370A0 000001053453539B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:.ctor () 000001053413AC70 - 000001053413AC80 00000105345354A4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:.ctor () 000001053413B430 - 000001053413B440 00000105345354C2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/MatchingCriteria:.ctor () 000001053413F070 - 000001053413F080 00000105345355CB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Elements:.ctor () 000001053413F8D0 - 000001053413F8E0 00000105345355ED
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/MatchingCriteria:.ctor () 00000105341438C0 - 00000105341438D0 00000105345356FF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Elements:.ctor () 0000010534144190 - 00000105341441A0 000001053453571D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/MatchingCriteria:.ctor () 0000010534148090 - 00000105341480A0 000001053453581F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Elements:.ctor () 0000010534148A30 - 0000010534148A40 0000010534535843
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:.ctor () 000001053410F870 - 000001053410F920 000001053453498B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Button:.ctor () 0000010534118EF0 - 0000010534118F20 0000010534534BEF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Button:.ctor () 0000010534122830 - 0000010534122860 0000010534534E70
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Button:.ctor () 00000105341280A0 - 00000105341280D0 0000010534534FCA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Button:.ctor () 000001053412D8E0 - 000001053412D910 0000010534535128
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Button:.ctor () 00000105341328B0 - 00000105341328C0 000001053453525D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Button:.ctor () 0000010534114810 - 0000010534114840 0000010534534AC5
    Mono: gc took 1637 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.CustomCalculation_CompareElementValues:.ctor () 00000105341072D0 - 00000105341072F0 000001053453475A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/CustomCalculationSourceData:.ctor () 00000105341322A0 - 00000105341322B0 0000010534535249
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.CustomCalculation_Accelerometer:.ctor () 0000010534106DB0 - 0000010534106DD0 000001053453474E
    Mono: gc took 2537 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Axis:.ctor () 000001053411CFB0 - 000001053411CFE0 0000010534534D07
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Button:.ctor () 000001053411CE30 - 000001053411CE60 0000010534534CFB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:.ctor () 000001053413B630 - 000001053413B640 00000105345354D8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:.ctor () 000001053413B550 - 000001053413B560 00000105345354CE
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Axis:.ctor () 000001053413FA90 - 000001053413FAA0 0000010534535601
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Button:.ctor () 000001053413F9B0 - 000001053413F9C0 00000105345355F7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Axis:.ctor () 0000010534149920 - 0000010534149950 0000010534535887
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Button:.ctor () 0000010534149550 - 0000010534149580 000001053453587B
    Mono: gc took 3787 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base:.ctor () 00000105341261F0 - 0000010534126200 0000010534534F44
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base:.ctor () 0000010534113330 - 0000010534113340 0000010534534A6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base:.ctor () 00000105341179D0 - 00000105341179E0 0000010534534B95
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base:.ctor () 0000010534120610 - 0000010534120620 0000010534534DE7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base:.ctor () 0000010534131330 - 0000010534131340 0000010534535208
    Mono: gc took 5811 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Axis:.ctor () 0000010534137250 - 0000010534137260 00000105345353AF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Button:.ctor () 0000010534137170 - 0000010534137180 00000105345353A5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/VidPid:.ctor () 000001053410FB30 - 000001053410FB40 000001053453499A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Axis:.ctor () 00000105341444D0 - 00000105341444E0 0000010534535733
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Button:.ctor () 0000010534144340 - 0000010534144350 0000010534535729
    Mono: gc took 8769 usecsMono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.ctor () 0000010531D31710 - 0000010531D31780 0000010531FE14C5
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.cctor () 0000010531D31A00 - 0000010531D31A70 0000010531FE14D5
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_class_init_trampoline' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap/Entry:.ctor () 000001053414EE40 - 000001053414EE50 00000105345359E5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap/ElementIdentifierMap:.ctor () 000001053414EE50 - 000001053414EE60 00000105345359E7
    Mono: AOT FOUND AOT compiled code for Rewired.Dev.Tools.JoystickElementIdentifier:.ctor () 0000010534292130 - 0000010534292140 000001053453AC20
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:.ctor () 00000105337A0B30 - 00000105337A0B60 0000010533B696DF
    Mono: AOT FOUND AOT compiled code for RewiredDebugging:.ctor () 000001053379CA30 - 000001053379CA40 0000010533B69566
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:.ctor () 0000010534151820 - 00000105341524E0 0000010534535B01
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:NoAEKCtpCtDypCptwzIYKjdCHckD () 000001053416A540 - 000001053416A760 0000010534535F55
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Player_Editor:.ctor () 000001053414FB50 - 000001053414FD30 0000010534535A3F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetPlayerNames () 00000105341531F0 - 00000105341533A0 0000010534535B87
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:IterateName (string,int,string[]) 00000105342CDDE0 - 00000105342CE050 000001053453BB35
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:.cctor () 00000105342CD8D0 - 00000105342CD920 000001053453BB0B
    Mono: AOT FOUND AOT compiled code for System.IO.Path:GetInvalidFileNameChars () 0000010531B3B3A0 - 0000010531B3B400 0000010531FD6D2D
    Mono: AOT FOUND AOT compiled code for System.IO.Path:.cctor () 0000010531B38970 - 0000010531B38B10 0000010531FD6C32
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_VolumeSeparatorChar () 0000010531B38730 - 0000010531B387A0 0000010531FD6C1E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_DirectorySeparatorChar () 0000010531B387A0 - 0000010531B38810 0000010531FD6C22
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_AltDirectorySeparatorChar () 0000010531B38810 - 0000010531B38880 0000010531FD6C26
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_PathSeparator () 0000010531B38880 - 0000010531B388F0 0000010531FD6C2A
    Mono: AOT FOUND AOT compiled code for System.IO.Path:GetInvalidPathChars () 0000010531B3B400 - 0000010531B3B430 0000010531FD6D32
    Mono: AOT FOUND AOT compiled code for char:ToString () 00000105319B0210 - 00000105319B0240 0000010531FCEF09
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char,int) 00000105319B03F0 - 00000105319B0420 0000010531FCEF2A
    Mono: AOT FOUND AOT compiled code for string:CreateString (char,int) 00000105319BB540 - 00000105319BB600 0000010531FCF188
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char[]) 00000105319B03D0 - 00000105319B03F0 0000010531FCEF27
    Mono: AOT FOUND AOT compiled code for string:CreateString (char[]) 00000105319BB420 - 00000105319BB540 0000010531FCF183
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Escape (string) 0000010532BACDB0 - 0000010532BACE10 0000010532D7D9B4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:.cctor () 0000010532BACBA0 - 0000010532BACC20 0000010532D7D98C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:.ctor (int) 0000010532B745D0 - 0000010532B74690 0000010532D7CC8B
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor (int) 0000010531AE1190 - 0000010531AE11E0 0000010531FD4BD8
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.cctor () 0000010531AE1A30 - 0000010531AE1A90 0000010531FD4C1D
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor (int,single,System.Collections.IHashCodeProvider,System.Collections.IComparer) 0000010531AE0E30 - 0000010531AE1140 0000010531FD4BCD
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:ToPrime (int) 0000010531AE49B0 - 0000010531AE4A90 0000010531FD4D3A
    Mono: AOT FOUND AOT compiled code for System.Environment:GetEnvironmentVariable (string) 0000010531A99E50 - 0000010531A99EF0 0000010531FD35F4
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Security.SecurityManager:get_SecurityEnabled () 0000010531C54D60 - 0000010531C54DD0 0000010531FDCD1C
    Mono: AOT FOUND AOT compiled code for System.Security.SecurityManager:.cctor () 0000010531C54C00 - 0000010531C54C70 0000010531FDCD08
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:internalGetEnvironmentVariable (string) 0000010531A99DD0 - 0000010531A99E50 0000010531FD35F2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:Escape (string) 0000010532BA4A30 - 0000010532BA4C40 0000010532D7D7EF
    Mono: AOT FOUND AOT compiled code for string:Concat (object,object) 00000105319B8C20 - 00000105319B8CB0 0000010531FCF10C
    Mono: AOT FOUND function 'ut_443' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:StripTrailingNumbers (string,int&) 00000105342CD9F0 - 00000105342CDBA0 000001053453BB21
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,string) 0000010532BACF20 - 0000010532BACF50 0000010532D7D9C5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,string,System.Text.RegularExpressions.RegexOptions) 0000010532BACF50 - 0000010532BACFD0 0000010532D7D9C9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Init () 0000010532BAD420 - 0000010532BAD620 0000010532D7DA02
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Lookup (string,System.Text.RegularExpressions.RegexOptions) 0000010532B74920 - 0000010532B74B60 0000010532D7CC99
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Contains (object) 0000010531AE2490 - 0000010531AE24D0 0000010531FD4C7A
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:GetHash (object) 0000010531AE3870 - 0000010531AE3970 0000010531FD4CFB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache/Key:GetHashCode () 0000010532B74C80 - 0000010532B74CF0 0000010532D7CCA8
    Mono: AOT FOUND AOT compiled code for string:GetHashCode () 00000105319BAA10 - 00000105319BAAC0 0000010531FCF165
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:InitNewRegex () 0000010532BAD620 - 0000010532BAD840 0000010532D7DA10
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:.cctor () 0000010531ACF240 - 0000010531ACF270 0000010531FD4516
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:CreateMachineFactory (string,System.Text.RegularExpressions.RegexOptions) 0000010532BAD840 - 0000010532BADB80 0000010532D7DA1E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:.ctor () 0000010532BA4670 - 0000010532BA4710 0000010532D7D7DF
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor () 0000010531AE0DE0 - 0000010531AE0E30 0000010531FD4BC9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseRegularExpression (string,System.Text.RegularExpressions.RegexOptions) 0000010532BA4CE0 - 0000010532BA4EF0 0000010532D7D80A
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Clear () 0000010531ACFAD0 - 0000010531ACFB70 0000010531FD455E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetLowerBound (System.Array*,int) 00000105319D03B0 - 00000105319D0460 0000010531FCF6D1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:ClearInternal (System.Array,int,int) 00000105319D2F00 - 00000105319D2F90 0000010531FCF749
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Clear () 0000010531AE22F0 - 0000010531AE2490 0000010531FD4C76
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseGroup (System.Text.RegularExpressions.Syntax.Group,System.Text.RegularExpressions.RegexOptions,System.Text.RegularExpressions.Syntax.Assertion) 0000010532BA5280 - 0000010532BA63C0 0000010532D7D81A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseCharacterClass (System.Text.RegularExpressions.RegexOptions) 0000010532BA7AD0 - 0000010532BA8310 0000010532D7D87B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:.ctor (bool,bool) 0000010532BC6D60 - 0000010532BC6EC0 0000010532D7DE2E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:.cctor () 0000010532BC6F10 - 0000010532BC6F70 0000010532D7DE3E
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:.ctor (int) 0000010531ADC220 - 0000010531ADC2E0 0000010531FD4A35
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:AddRange (char,char) 0000010532BC7140 - 0000010532BC74A0 0000010532D7DE5C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:Add (System.Text.RegularExpressions.Interval) 0000010532BA2220 - 0000010532BA22B0 0000010532D7D73F
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Add (object) 0000010531ACF9B0 - 0000010531ACFAD0 0000010531FD455A
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:EnsureCapacity (int) 0000010531ACF5C0 - 0000010531ACF6F0 0000010531FD4550
    Mono: AOT FOUND AOT compiled code for System.Array:Copy (System.Array,int,System.Array,int,int) 00000105319D3140 - 00000105319D3800 0000010531FCF74F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:FastCopy (System.Array,int,System.Array,int,int) 00000105319D0720 - 00000105319D07C0 0000010531FCF6DB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:.ctor (int,int,bool) 0000010532BC41F0 - 0000010532BC42C0 0000010532D7DD2F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:Add (System.Text.RegularExpressions.Syntax.Expression) 0000010532BC1C10 - 0000010532BC1C60 0000010532D7DC74
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.Add (object) 0000010531ADE860 - 0000010531ADE9F0 0000010531FD4AF5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:OnValidate (object) 0000010532BC1D40 - 0000010532BC1D50 0000010532D7DC82
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:get_InnerList () 0000010531ADF490 - 0000010531ADF530 0000010531FD4B17
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:get_Count () 0000010531ACF420 - 0000010531ACF450 0000010531FD452E
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnInsert (int,object) 0000010531ADF560 - 0000010531ADF570 0000010531FD4B21
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnInsertComplete (int,object) 0000010531ADF570 - 0000010531ADF580 0000010531FD4B23
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:set_Item (int,System.Text.RegularExpressions.Syntax.Expression) 0000010532BC1CF0 - 0000010532BC1D40 0000010532D7DC7E
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.set_Item (int,object) 0000010531ADEE70 - 0000010531ADF0A0 0000010531FD4B05
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:get_Item (int) 0000010531ACF270 - 0000010531ACF340 0000010531FD451C
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnSet (int,object,object) 0000010531ADF5A0 - 0000010531ADF5B0 0000010531FD4B29
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:set_Item (int,object) 0000010531ACF340 - 0000010531ACF420 0000010531FD4525
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnSetComplete (int,object,object) 0000010531ADF5B0 - 0000010531ADF5C0 0000010531FD4B2B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:ResolveReferences () 0000010532BAA090 - 0000010532BAB3D0 0000010532D7D8CE
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:GetEnumerator () 0000010531AD0990 - 0000010531AD09D0 0000010531FD45CF
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:.cctor () 0000010531AD1FB0 - 0000010531AD1FE0 0000010531FD467E
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:.ctor (System.Collections.ArrayList) 0000010531AD1F10 - 0000010531AD1FB0 0000010531FD4678
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:MoveNext () 0000010531AD2000 - 0000010531AD21A0 0000010531FD468A
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Keys () 0000010531AE1C60 - 0000010531AE1CF0 0000010531FD4C54
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/HashKeys:GetEnumerator () 0000010531AE55F0 - 0000010531AE5660 0000010531FD4D94
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:.cctor () 0000010531AE4BF0 - 0000010531AE4C10 0000010531FD4D5E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:FailFast () 0000010531AE4C10 - 0000010531AE4C90 0000010531FD4D66
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/KeyMarker:.cctor () 0000010531AE4AA0 - 0000010531AE4AD0 0000010531FD4D48
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:MoveNext () 0000010531AE4D00 - 0000010531AE4F30 0000010531FD4D70
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:.ctor () 0000010532BBD880 - 0000010532BBD8D0 0000010532D7DBD2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.RegularExpression:Compile (System.Text.RegularExpressions.ICompiler,bool) 0000010532BC3700 - 0000010532BC3A60 0000010532D7DCE3
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:GetWidth (int&,int&) 0000010532BC2540 - 0000010532BC2830 0000010532D7DCAC
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:GetEnumerator () 0000010531ADF0F0 - 0000010531ADF140 0000010531FD4B09
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:get_Current () 0000010531AD21A0 - 0000010531AD2270 0000010531FD4690
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:GetWidth (int&,int&) 0000010532BC4770 - 0000010532BC4840 0000010532D7DD53
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:get_Item (int) 0000010532BC1C60 - 0000010532BC1CF0 0000010532D7DC78
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.get_Item (int) 0000010531ADEE10 - 0000010531ADEE70 0000010531FD4B03
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:GetWidth (int&,int&) 0000010532BC8210 - 0000010532BC8240 0000010532D7DEA4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.PositionAssertion:GetWidth (int&,int&) 0000010532BC6650 - 0000010532BC6680 0000010532D7DE06
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitInfo (int,int,int) 0000010532BC0420 - 0000010532BC04C0 0000010532D7DC2B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:MakeRoom (int) 0000010532BBD8D0 - 0000010532BBDA00 0000010532D7DBD5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:GetAnchorInfo (bool) 0000010532BC2830 - 0000010532BC3630 0000010532D7DCB8
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:get_Count () 0000010531ADF0A0 - 0000010531ADF0F0 0000010531FD4B07
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:GetAnchorInfo (bool) 0000010532BC4840 - 0000010532BC4C90 0000010532D7DD55
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Expression:GetAnchorInfo (bool) 0000010532BC1DE0 - 0000010532BC1E40 0000010532D7DC88
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:Normalize () 0000010532BA2370 - 0000010532BA26C0 0000010532D7D747
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Sort () 0000010531AD10B0 - 0000010531AD1140 0000010531FD4603
    Mono: AOT FOUND AOT compiled code for System.Array:Sort<T> (T[],int,int) 00000105319D66D0 - 00000105319D6720 0000010531FCF802
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Sort<T> (T[],int,int,System.Collections.Generic.IComparer`1<T>) 00000105319D6780 - 00000105319D6900 0000010531FCF806
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl<TKey, TValue> (TKey[],TValue[],int,int,System.Collections.Generic.IComparer`1<TKey>) 00000105319D6AB0 - 00000105319D72E0 0000010531FCF80A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:GetEnumerator () 0000010532BA30A0 - 0000010532BA3110 0000010532D7D76B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection/Enumerator:MoveNext () 0000010532BA3260 - 0000010532BA3380 0000010532D7D777
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:NewLink () 0000010532BC0630 - 0000010532BC0690 0000010532D7DC35
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitAnchor (bool,int,System.Text.RegularExpressions.LinkRef) 0000010532BC0550 - 0000010532BC0610 0000010532D7DC2F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:BeginLink (System.Text.RegularExpressions.LinkRef) 0000010532BBDDE0 - 0000010532BBDE70 0000010532D7DBE0
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxLinkRef:pushInstructionBase (int) 0000010532BBD5F0 - 0000010532BBD7B0 0000010532D7DBCC
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitLink (System.Text.RegularExpressions.LinkRef) 0000010532BBDE70 - 0000010532BBDF10 0000010532D7DBE4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitTrue () 0000010532BBE020 - 0000010532BBE040 0000010532D7DBF1
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:ResolveLink (System.Text.RegularExpressions.LinkRef) 0000010532BC0690 - 0000010532BC0870 0000010532D7DC3B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:Compile (System.Text.RegularExpressions.ICompiler,bool) 0000010532BC2410 - 0000010532BC2540 0000010532D7DCAA
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:Compile (System.Text.RegularExpressions.ICompiler,bool) 0000010532BC44C0 - 0000010532BC4770 0000010532D7DD43
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:IsComplex () 0000010532BC8240 - 0000010532BC8250 0000010532D7DEA8
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitFastRepeat (int,int,bool,System.Text.RegularExpressions.LinkRef) 0000010532BC04C0 - 0000010532BC0550 0000010532D7DC2D
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:Compile (System.Text.RegularExpressions.ICompiler,bool) 0000010532BC74A0 - 0000010532BC8210 0000010532D7DE6E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:GetMetaCollection (System.Text.RegularExpressions.IntervalCollection/CostDelegate) 0000010532BA26C0 - 0000010532BA27F0 0000010532D7D74F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:GetTypeCodeImpl () 00000105319DC9B0 - 00000105319DCA90 0000010531FCF9A0
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:GetTypeCodeInternal (System.Type) 00000105319DC930 - 00000105319DC9B0 0000010531FCF99D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:IsAssignableFrom (System.Type) 00000105319DD610 - 00000105319DD8A0 0000010531FCF9E5
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_UnderlyingSystemType () 0000010531AA7C00 - 0000010531AA7C10 0000010531FD3A18
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:EqualsInternal (System.Type*,System.Type) 00000105319DC440 - 00000105319DC4F0 0000010531FCF987
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsSystemType () 00000105319DFAC0 - 00000105319DFB20 0000010531FCFAA5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:type_is_assignable_from (System.Type,System.Type) 00000105319DCE30 - 00000105319DCEB0 0000010531FCF9CA
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:MoveNullKeysToFront<K, V> (K[],V[],int,int,bool) 00000105319D7EC0 - 00000105319D8140 0000010531FCF82F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_isinst (object,intptr) 0000010531DC9B00 - 0000010531DC9B80 0000010531FE45BD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:qsort<K, V> (K[],V[],int,int,System.Collections.Generic.IComparer`1<K>) 00000105319D7710 - 00000105319D7CC0 0000010531FCF822
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Interval:CompareTo (object) 0000010532BA1C10 - 0000010532BA1CD0 0000010532D7D712
    Mono: AOT FOUND function 'ut_10545' in AOT file 'G:\Data\Managed\System.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483653' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:swap<K, V> (K[],V[],int,int) 00000105319D8140 - 00000105319D8290 0000010531FCF836
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:RemoveAt (int) 0000010531AD04E0 - 0000010531AD05D0 0000010531FD45AE
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Shift (int,int) 0000010531ACF6F0 - 0000010531ACF9B0 0000010531FD4555
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:get_Item (int) 0000010532BA20C0 - 0000010532BA2190 0000010532D7D737
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:GetIntervalCost (System.Text.RegularExpressions.Interval) 0000010532BC8250 - 0000010532BC82F0 0000010532D7DEAC
    Mono: AOT FOUND AOT compiled code for (wrapper delegate-invoke) <Module>:invoke_double__this___Interval (System.Text.RegularExpressions.Interval) 0000010532C26DF0 - 0000010532C26EE0 0000010532D7FF17
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:get_Item (int) 0000010531ADC6F0 - 0000010531ADC710 0000010531FD4A48
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection/Enumerator:get_Current () 0000010532BA3170 - 0000010532BA3260 0000010532D7D771
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitRange (char,char,bool,bool,bool) 0000010532BBF730 - 0000010532BBF860 0000010532D7DC07
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitOp (System.Text.RegularExpressions.RxOp,bool,bool,bool) 0000010532BBE040 - 0000010532BBE0B0 0000010532D7DBF3
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.PositionAssertion:Compile (System.Text.RegularExpressions.ICompiler,bool) 0000010532BC65E0 - 0000010532BC6650 0000010532D7DE02
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitPosition (System.Text.RegularExpressions.Position) 0000010532BBFD40 - 0000010532BBFEA0 0000010532D7DC0D
    Mono: AOT FOUND AOT compiled code for System.Buffer:BlockCopy (System.Array,int,System.Array,int,int) 0000010531A74A10 - 0000010531A74C40 0000010531FD2438
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Buffer:BlockCopyInternal (System.Array,int,System.Array,int,int) 0000010531A74DD0 - 0000010531A74E70 0000010531FD2440
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:GetMachineFactory () 0000010532BBDF40 - 0000010532BBE000 0000010532D7DBEA
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:GetMapping (System.Collections.Hashtable) 0000010532BA4EF0 - 0000010532BA5280 0000010532D7D810
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Add (object,object) 0000010531AE22C0 - 0000010531AE22F0 0000010531FD4C72
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:putImpl (object,object,bool) 0000010531AE4250 - 0000010531AE47E0 0000010531FD4D20
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_Gap (int) 0000010532BC0A20 - 0000010532BC0A60 0000010532D7DC49
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_Mapping (System.Collections.IDictionary) 0000010532BC0A90 - 0000010532BC0AD0 0000010532D7DC4D
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_GroupCount () 0000010532BC0950 - 0000010532BC09F0 0000010532D7DC45
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_Mapping () 0000010532BC0A60 - 0000010532BC0A90 0000010532D7DC4B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:GetGroupNamesArray (int,System.Collections.IDictionary) 0000010532BAEDD0 - 0000010532BAEF80 0000010532D7DAD8
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:GetEnumerator () 0000010531AE24D0 - 0000010531AE2520 0000010531FD4C7E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:get_Value () 0000010531AE50A0 - 0000010531AE5120 0000010531FD4D7E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:get_Key () 0000010531AE5020 - 0000010531AE50A0 0000010531FD4D7A
    Mono: AOT FOUND AOT compiled code for (wrapper stelemref) object:stelemref (object,intptr,object) 0000010531DCB9E0 - 0000010531DCBAC0 0000010531FE4635
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_NamesMapping (string[]) 0000010532BC0B00 - 0000010532BC0B40 0000010532D7DC51
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Add (string,System.Text.RegularExpressions.RegexOptions,System.Text.RegularExpressions.IMachineFactory) 0000010532B74690 - 0000010532B747D0 0000010532D7CC91
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Cleanup () 0000010532B747D0 - 0000010532B74920 0000010532D7CC95
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Count () 0000010531AE1BF0 - 0000010531AE1C20 0000010531FD4C40
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:set_Item (object,object) 0000010531AE1FF0 - 0000010531AE2020 0000010531FD4C64
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.MRUList:Use (object) 0000010532B74FA0 - 0000010532B75250 0000010532D7CCBE
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_Gap () 0000010532BC09F0 - 0000010532BC0A20 0000010532D7DC47
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_NamesMapping () 0000010532BC0AD0 - 0000010532BC0B00 0000010532D7DC4F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,int) 0000010532BAE150 - 0000010532BAE270 0000010532D7DA72
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:CreateMachine () 0000010532BAED70 - 0000010532BAEDD0 0000010532D7DAD2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:NewInstance () 0000010532BC08D0 - 0000010532BC0950 0000010532D7DC41
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:.ctor (byte[],System.Text.RegularExpressions.EvalDelegate) 0000010532BAF5B0 - 0000010532BAF700 0000010532D7DB1A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:.cctor () 0000010532BAF700 - 0000010532BAF740 0000010532D7DB20
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:ResetGroups () 0000010532BB00F0 - 0000010532BB0330 0000010532D7DB46
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:.cctor () 0000010532BA4270 - 0000010532BA42B0 0000010532D7D7B5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:.ctor () 0000010532BA3F80 - 0000010532BA4090 0000010532D7D7A5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Group:.ctor () 0000010532B9AAB0 - 0000010532B9AB60 0000010532D7D669
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Group:.cctor () 0000010532B9AB60 - 0000010532B9ABA0 0000010532D7D672
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.GroupCollection:.ctor (int,int) 0000010532B9A4C0 - 0000010532B9A530 0000010532D7D63B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:Scan (System.Text.RegularExpressions.Regex,string,int,int) 0000010532BAF840 - 0000010532BAFA20 0000010532D7DB2C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:EvalByteCode (int,int,int&) 0000010532BB1190 - 0000010532BBCEA0 0000010532D7DB74
    Mono: AOT FOUND AOT compiled code for int:ToString () 00000105319A5910 - 00000105319A5940 0000010531FCEBD2
    Mono: AOT FOUND function 'ut_107' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:NumberToString (int,System.IFormatProvider) 0000010531AAD360 - 0000010531AAD410 0000010531FD3C13
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:.cctor () 0000010531AA9C00 - 0000010531AA9C40 0000010531FD3B07
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.NumberFormatter:GetFormatterTables (ulong*&,int*&,char*&,char*&,long*&,int*&) 0000010531AA9C40 - 0000010531AA9CE0 0000010531FD3B17
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:GetInstance () 0000010531AAC620 - 0000010531AAC6E0 0000010531FD3BCB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_class_static_field_address (intptr,intptr) 0000010531DCA980 - 0000010531DCAA00 0000010531FE45F5
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_CurrentThread () 0000010531D210C0 - 0000010531D21190 0000010531FE0F37
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:.cctor () 0000010531D206B0 - 0000010531D20700 0000010531FE0EEE
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:.ctor (System.Threading.Thread) 0000010531AA9B70 - 0000010531AA9C00 0000010531FD3B02
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_CurrentCulture () 0000010531D22080 - 0000010531D22390 0000010531FE0FCF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:GetCachedCurrentCulture (System.Threading.InternalThread) 0000010531D21E20 - 0000010531D21EA0 0000010531FE0FBF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:ByteArrayToCurrentDomain (byte[]) 0000010531D20960 - 0000010531D209E0 0000010531FE0F1A
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructCurrentCulture () 0000010531AFEAF0 - 0000010531AFEBA0 0000010531FD55A4
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.cctor () 0000010531AFE860 - 0000010531AFE8E0 0000010531FD557F
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.ctor (int,bool,bool) 0000010531AFE4C0 - 0000010531AFE640 0000010531FD556B
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructInvariant (bool) 0000010531B01980 - 0000010531B01C10 0000010531FD5730
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:get_InvariantInfo () 0000010531B13F10 - 0000010531B13FA0 0000010531FD5FB3
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:.cctor () 0000010531B11420 - 0000010531B115C0 0000010531FD5EF6
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:.ctor (int,bool) 0000010531B10F30 - 0000010531B113D0 0000010531FD5EC5
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:.cctor () 0000010531B02AA0 - 0000010531B032E0 0000010531FD57DC
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:get_InvariantInfo () 0000010531B05030 - 0000010531B050D0 0000010531FD5954
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:.ctor (bool) 0000010531B02750 - 0000010531B02A80 0000010531FD57A8
    Mono: AOT FOUND AOT compiled code for System.Globalization.GregorianCalendar:.ctor (System.Globalization.GregorianCalendarTypes) 0000010531B07E80 - 0000010531B07FB0 0000010531FD5A60
    Mono: AOT FOUND AOT compiled code for System.Globalization.GregorianCalendar:set_CalendarType (System.Globalization.GregorianCalendarTypes) 0000010531B08130 - 0000010531B08180 0000010531FD5A74
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:ReadOnly (System.Globalization.DateTimeFormatInfo) 0000010531B033C0 - 0000010531B03450 0000010531FD5864
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:Clone () 0000010531B03450 - 0000010531B034D0 0000010531FD586A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:MemberwiseClone (object*) 00000105319A11A0 - 00000105319A1240 0000010531FCEADD
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:FillInvariantPatterns () 0000010531B06640 - 0000010531B068B0 0000010531FD59D1
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:CreateTextInfo (bool) 0000010531B01C10 - 0000010531B01CB0 0000010531FD5742
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_Parent () 0000010531AFFD00 - 0000010531AFFE90 0000010531FD5664
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_LCID () 0000010531AFFB00 - 0000010531AFFB30 0000010531FD5650
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.ctor () 0000010531AFE830 - 0000010531AFE860 0000010531FD557B
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructInternalLocaleFromCurrentLocale (System.Globalization.CultureInfo) 0000010531B014A0 - 0000010531B014D0 0000010531FD570C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Globalization.CultureInfo:construct_internal_locale_from_current_locale (System.Globalization.CultureInfo) 0000010531B016B0 - 0000010531B01730 0000010531FD571C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:SetCachedCurrentCulture (System.Threading.Thread*,System.Globalization.CultureInfo) 0000010531D21EA0 - 0000010531D21F50 0000010531FE0FC3
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:SetThreadCurrentCulture (System.Globalization.CultureInfo) 0000010531AAC720 - 0000010531AAC7B0 0000010531FD3BDB
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:set_CurrentCulture (System.Globalization.CultureInfo) 0000010531AABA30 - 0000010531AABAE0 0000010531FD3B93
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_IsReadOnly () 0000010531B011A0 - 0000010531B011D0 0000010531FD56E1
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_NumberFormat () 0000010531B00BA0 - 0000010531B00D00 0000010531FD56BB
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:CheckNeutral () 0000010531B00AE0 - 0000010531B00BA0 0000010531FD56B7
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_IsNeutralCulture () 0000010531B00A30 - 0000010531B00AE0 0000010531FD56B3
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Globalization.CultureInfo:construct_number_format (System.Globalization.CultureInfo*) 0000010531B01860 - 0000010531B01900 0000010531FD5728
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FastIntegerToString (int,System.IFormatProvider) 0000010531AAD8D0 - 0000010531AADA40 0000010531FD3C27
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:ResetCharBuf (int) 0000010531AAB510 - 0000010531AAB5A0 0000010531FD3B79
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FastAppendDigits (int,bool) 0000010531AB17B0 - 0000010531AB1A10 0000010531FD3CAD
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char[],int,int) 00000105319B03A0 - 00000105319B03D0 0000010531FCEF24
    Mono: AOT FOUND AOT compiled code for string:CreateString (char[],int,int) 00000105319BB1F0 - 00000105319BB420 0000010531FCF17F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Release () 0000010531AAC6E0 - 0000010531AAC720 0000010531FD3BD5
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Add (T) 0000010531D321C0 - 0000010531D322D0 0000010531FE1515
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<T> (T[]&,int) 00000105319D8630 - 00000105319D86B0 0000010531FCF83E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<T> (T[]&,int,int) 00000105319D86B0 - 00000105319D87A0 0000010531FCF840
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GbAjGDyMdOqeaRrNQSJOJPbzFpnK () 000001053416A940 - 000001053416AA90 0000010534535F65
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetActionCategoryNames () 0000010534156F10 - 00000105341570C0 0000010534535C3E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:KeyEquals (object,object) 0000010531AE3970 - 0000010531AE3AB0 0000010531FD4D03
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache/Key:Equals (object) 0000010532B74CF0 - 0000010532B74E10 0000010532D7CCAA
    Mono: AOT FOUND AOT compiled code for string:Equals (string) 00000105319B09D0 - 00000105319B09F0 0000010531FCEF72
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Item (object) 0000010531AE1D80 - 0000010531AE1FF0 0000010531FD4C60
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ActionCategoryMap:AddCategory (int) 0000010534102DD0 - 0000010534102E60 0000010534534674
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:.cctor () 0000010532BE1FF0 - 0000010532BE2020 0000010532D7E6DC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ActionCategoryMap/Entry:.ctor (int) 0000010534103A70 - 0000010534103AF0 000001053453469A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:jweDlaXuiKoIHBDupbarwSaZgipH () 000001053416AA90 - 000001053416AF50 0000010534535F6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetInputBehaviorNames () 0000010534158320 - 00000105341584E0 0000010534535C73
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Clamp (single,single,single) 00000105342D1F80 - 00000105342D2060 000001053453BC77
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:set_mouseXYAxisSensitivity (single) 00000105341DE3B0 - 00000105341DE4A0 0000010534537B0E
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:.cctor () 00000105341E0E90 - 00000105341E0EA0 0000010534537C51
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:rgNqQznsyjllfnnEJdITzmaxIbT () 000001053416AF50 - 000001053416B120 0000010534535F73
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetMapCategoryNames () 000001053415AA70 - 000001053415AC50 0000010534535CB2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:cVnMVSRaDVjnsxJtAxiKnTbMdAR () 000001053416B120 - 000001053416B250 0000010534535F7D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetJoystickLayoutNames () 000001053415C530 - 000001053415C6E0 0000010534535CF3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:HpOmukpeJEqPUdfTFtbOSkILfuf () 000001053416B250 - 000001053416B380 0000010534535F83
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetKeyboardLayoutNames () 000001053415DE10 - 000001053415DFC0 0000010534535D30
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:pLJVlXuXLWojgEoIGQNFeBTgXMX () 000001053416B380 - 000001053416B4B0 0000010534535F89
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetMouseLayoutNames () 000001053415F6F0 - 000001053415F8A0 0000010534535D6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:awHOlmifMqwOjepqOCgSQdYBjbI () 000001053416B4B0 - 000001053416B5E0 0000010534535F8F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetCustomControllerLayoutNames () 0000010534161030 - 0000010534161200 0000010534535DAA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars/PlatformVars:.ctor () 00000105340FB360 - 00000105340FB370 00000105345344B3
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_SceneUnloaded (UnityEngine.SceneManagement.Scene) 00000105321A2EF0 - 00000105321A2F50 000001053266A7AC
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene (object,intptr,intptr,intptr) 00000105323759E0 - 0000010532375AB0 0000010532674A78
    UnloadTime: 6.276113 ms
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Awake () 000001053418ADF0 - 000001053418AE10 000001053453665C
    Mono: AOT FOUND function 'delegate_invoke_impl_target_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Initialize () 000001053418B3A0 - 000001053418B9D0 000001053453667B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:IsOnlyManagerInScene () 000001053418C800 - 000001053418C8D0 00000105345366EB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Object:DontDestroyOnLoad (UnityEngine.Object) 0000010532187820 - 00000105321878A0 0000010532669F36
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:.cctor () 00000105321870F0 - 0000010532187110 0000010532669EF4
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:DetectPlatform () 00000105337A0B60 - 00000105337A0C40 0000010533B696E1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.SystemInfo:get_deviceName () 0000010532114540 - 00000105321145B0 00000105326682A0
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.SystemInfo:get_deviceModel () 00000105321145B0 - 0000010532114620 00000105326682A2
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:eek:p_Equality (UnityEngine.Object,UnityEngine.Object) 0000010532188440 - 0000010532188460 0000010532669FB2
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:IsNativeObjectAlive (UnityEngine.Object) 0000010532187F70 - 0000010532187FD0 0000010532669F73
    Mono: AOT FOUND AOT compiled code for intptr:eek:p_Inequality (intptr,intptr) 00000105319C7170 - 00000105319C71D0 0000010531FCF47B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:SetPlatformToEditorPlatform () 000001053418C440 - 000001053418C610 00000105345366C7
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:GetExternalTools () 00000105337A0C70 - 00000105337A0C90 0000010533B696ED
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:DindbEUKOJFiJmAXlIkShOCUIXic (Rewired.Platforms.Platform,Rewired.Platforms.EditorPlatform,bool,Rewired.Platforms.WebplayerPlatform,Rewired.Utils.Interfaces.IExternalTools) 00000105342D6A20 - 00000105342D6AC0 000001053453BD9F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:.cctor () 00000105342D6A00 - 00000105342D6A20 000001053453BD99
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:gQkcFryjluvtyRzhNWjIRjDHyNO () 00000105342D6E70 - 00000105342D6F90 000001053453BDC9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Application:get_unityVersion () 00000105321783A0 - 0000010532178410 0000010532669908
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:SGVVyxXJTMyaDGXtMXXvVojDmIr (string) 00000105342D6F90 - 00000105342D7AF0 000001053453BDDB
    Mono: AOT FOUND AOT compiled code for string:IsNullOrEmpty (string) 00000105319B6230 - 00000105319B6280 0000010531FCF083
    Mono: AOT FOUND AOT compiled code for string:Split (char[]) 00000105319B0F90 - 00000105319B0FC0 0000010531FCEF88
    Mono: AOT FOUND AOT compiled code for string:Split (char[],int) 00000105319B0FC0 - 00000105319B10C0 0000010531FCEF8B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:InternalSplit (string*,char[],int,int) 00000105319BBCD0 - 00000105319BBD90 0000010531FCF1AA
    Mono: AOT FOUND AOT compiled code for int:TryParse (string,int&) 00000105319A5840 - 00000105319A58A0 0000010531FCEBCE
    Mono: AOT FOUND AOT compiled code for int:parse (string,bool,int&,System.Exception&) 00000105319A3580 - 00000105319A3910 0000010531FCEB99
    Mono: AOT FOUND AOT compiled code for char:IsWhiteSpace (char) 00000105319AFB10 - 00000105319AFB90 0000010531FCEEE3
    Mono: AOT FOUND AOT compiled code for string:IndexOf (char,int) 00000105319B4A80 - 00000105319B4BD0 0000010531FCF047
    Mono: AOT FOUND AOT compiled code for string:Concat (object) 00000105319B8BD0 - 00000105319B8C20 0000010531FCF108
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Debug:get_isDebugBuild () 0000010532181F70 - 0000010532181FE0 0000010532669C68
    Mono: AOT FOUND AOT compiled code for UnityEngine.Debug:.cctor () 0000010532180DF0 - 0000010532180E50 0000010532669B4C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:zvLElNDjUwgOwKfITqMRKQqcxoj () 00000105342D7BD0 - 00000105342D7FA0 000001053453BDF9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Component:get_gameObject (UnityEngine.Component*) 0000010532188550 - 0000010532188600 0000010532669FBE
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetComponent<T> (UnityEngine.GameObject) 00000105342D8700 - 00000105342D8940 000001053453BE71
    Mono: AOT FOUND AOT compiled code for UnityEngine.GameObject:GetComponents (System.Type) 000001053218C2F0 - 000001053218C3A0 000001053266A0AE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.GameObject:GetComponentsInternal (UnityEngine.GameObject*,System.Type,bool,bool,bool,bool,object) 000001053218C900 - 000001053218C9E0 000001053266A0D2
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_castclass (object,intptr) 0000010531DCAFA0 - 0000010531DCB020 0000010531FE460D
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:DindbEUKOJFiJmAXlIkShOCUIXic (Rewired.InputManager_Base,System.Func`2<Rewired.Data.ConfigVars, object>,Rewired.Data.ConfigVars,Rewired.Data.ControllerDataFiles,Rewired.Data.UserData,Rewired.Data.UserDataStore) 00000105342567A0 - 0000010534256EC0 0000010534539890
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_platform () 00000105342D6310 - 00000105342D6330 000001053453BCFD
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_webplayerPlatform () 00000105342D6490 - 00000105342D64B0 000001053453BD23
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_editorPlatform () 00000105342D6430 - 00000105342D6450 000001053453BD11
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:DindbEUKOJFiJmAXlIkShOCUIXic () 000001053416BD50 - 000001053416C450 0000010534535FB5
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:.ctor (System.Collections.Generic.IList`1<T>) 0000010531D380B0 - 0000010531D38120 0000010531FE16B7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:get_Item (int) 0000010531D355E0 - 0000010531D356A0 0000010531FE1619
    Mono: AOT FOUND AOT compiled code for Rewired.InputMapCategory:DindbEUKOJFiJmAXlIkShOCUIXic () 00000105341E13C0 - 00000105341E1460 0000010534537C7D
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:.ctor (System.Collections.Generic.IList`1<int>) 0000010532C35EF0 - 0000010532C35F60 0000010532D80492
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper:.ctor () 00000105342592B0 - 0000010534259340 0000010534539A9F
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper/PollingHelper:.ctor (Rewired.ReInput/ControllerHelper) 000001053425B1D0 - 000001053425B260 0000010534539BAA
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH:.ctor () 0000010534293C40 - 0000010534293ED0 000001053453ACE1
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO:.ctor () 0000010534294430 - 0000010534294550 000001053453AD0B
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO/JeBrvwHHXdobugwfFsTprHiOHxbH:.ctor (int) 0000010534294DB0 - 0000010534294F50 000001053453AD2F
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO/QXegKWmhatzkipglulZmaEHojKL:.ctor () 0000010534295B40 - 0000010534295C10 000001053453AD51
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:Add (int,kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO) 000001053433DF40 - 000001053433E0B0 000001053453E001
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:ContainsKey (int) 000001053433E230 - 000001053433E3A0 000001053453E00B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:get_Default () 0000010531DD8CB0 - 0000010531DD8CD0 0000010531FE4AF6
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:.cctor () 0000010531DD8CE0 - 0000010531DD8E40 0000010531FE4B10
    Mono: AOT FOUND AOT compiled code for System.Type:MakeGenericType (System.Type[]) 00000105319E0070 - 00000105319E04D0 0000010531FCFAC5
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsUserType () 00000105319E1370 - 00000105319E14D0 0000010531FCFB13
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsGenericTypeDefinition () 00000105319DFB60 - 00000105319DFC00 0000010531FCFAAF
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetGenericArguments () 0000010531AA85F0 - 0000010531AA8690 0000010531FD3A48
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsCompilerContext () 00000105319DFA20 - 00000105319DFAC0 0000010531FCFAA0
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_Assembly () 0000010531AA7C10 - 0000010531AA7CB0 0000010531FD3A1A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:MakeGenericType (System.Type,System.Type[]) 00000105319DFD80 - 00000105319DFE00 0000010531FCFABB
    Mono: AOT FOUND AOT compiled code for System.Activator:CreateInstance (System.Type,bool) 0000010531A68270 - 0000010531A68520 0000010531FD1F84
    Mono: AOT FOUND AOT compiled code for System.Activator:CheckType (System.Type) 0000010531A68520 - 0000010531A68660 0000010531FD1F8A
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_ContainsGenericParameters () 0000010531AA8690 - 0000010531AA8850 0000010531FD3A4A
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_IsGenericParameter () 0000010531AA8850 - 0000010531AA88F0 0000010531FD3A4C
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsGenericType () 00000105319DFCE0 - 00000105319DFD80 0000010531FCFAB8
    Mono: AOT FOUND AOT compiled code for System.MonoType:HasElementTypeImpl () 0000010531AA6480 - 0000010531AA6530 0000010531FD39E8
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsArrayImpl () 0000010531AA6530 - 0000010531AA6550 0000010531FD39EA
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:IsArrayImpl (System.Type) 00000105319DE8B0 - 00000105319DE930 0000010531FCFA56
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsByRefImpl () 0000010531AA6550 - 0000010531AA65F0 0000010531FD39EC
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsPointerImpl () 0000010531AA6690 - 0000010531AA6730 0000010531FD39F0
    Mono: AOT FOUND AOT compiled code for System.Activator:CheckAbstractType (System.Type) 0000010531A68660 - 0000010531A68750 0000010531FD1F95
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetAttributeFlagsImpl () 0000010531AA4E70 - 0000010531AA4E90 0000010531FD399F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoType:get_attributes (System.Type) 0000010531AA4CF0 - 0000010531AA4D70 0000010531FD3997
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetDefaultConstructor () 0000010531AA4D70 - 0000010531AA4E70 0000010531FD3999
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructorImpl (System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) 0000010531AA4E90 - 0000010531AA4F00 0000010531FD39A1
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructors (System.Reflection.BindingFlags) 0000010531AA52A0 - 0000010531AA52D0 0000010531FD39AF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoType:GetConstructors_internal (System.MonoType*,System.Reflection.BindingFlags,System.Type) 0000010531AA51F0 - 0000010531AA52A0 0000010531FD39AD
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder:.cctor () 0000010531B55E40 - 0000010531B55E70 0000010531FD76DB
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructorImpl (System.Reflection.ConstructorInfo[],System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) 0000010531AA4F00 - 0000010531AA51F0 0000010531FD39A3
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder/Default:SelectMethod (System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) 0000010531B57730 - 0000010531B57760 0000010531FD774D
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder/Default:SelectMethod (System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[],bool) 0000010531B57760 - 0000010531B57DF0 0000010531FD774F
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:GetParameters () 0000010531B6A140 - 0000010531B6A180 0000010531FD7D7D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_parameter_info (intptr,System.Reflection.MemberInfo) 0000010531B68190 - 0000010531B68210 0000010531FD7D07
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:get_Attributes () 0000010531B6A810 - 0000010531B6A850 0000010531FD7D89
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&) 0000010531B67EB0 - 0000010531B67F30 0000010531FD7CF9
    Mono: AOT FOUND AOT compiled code for System.Reflection.ConstructorInfo:Invoke (object[]) 0000010531B59040 - 0000010531B590C0 0000010531FD77B5
    Mono: AOT FOUND AOT compiled code for System.Reflection.ConstructorInfo:.cctor () 0000010531B58E30 - 0000010531B58E60 0000010531FD7785
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:Invoke (System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) 0000010531B6A740 - 0000010531B6A7A0 0000010531FD7D85
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) 0000010531B6A240 - 0000010531B6A740 0000010531FD7D81
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:get_DeclaringType () 0000010531B6A8C0 - 0000010531B6A900 0000010531FD7D8F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (System.Reflection.MonoCMethod*,object,object[],System.Exception&) 0000010531B6A180 - 0000010531B6A240 0000010531FD7D7F
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1<int>:.ctor () 0000010531D44280 - 0000010531D442A0 0000010531FE1A26
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:.ctor () 0000010531DD8CD0 - 0000010531DD8CE0 0000010531FE4B04
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1<int>:Equals (int,int) 0000010531D442E0 - 0000010531D44350 0000010531FE1A2A
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:IndexOfKey (int) 000001053433E0B0 - 000001053433E230 000001053453E007
    Mono: AOT FOUND AOT compiled code for System.Diagnostics.Stopwatch:.cctor () 0000010532A53850 - 0000010532A53880 0000010532D7545C
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:.ctor (Rewired.Config.UpdateLoopSetting) 000001053427CBB0 - 000001053427CC60 000001053453A56D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:.cctor () 000001053429E440 - 000001053429E470 000001053453AED8
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:XJHjikjbhQPuKWVbSfbamNjpCOqa (Rewired.Config.UpdateLoopSetting) 000001053427CD20 - 000001053427D060 000001053453A577
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001053432EFE0 - 000001053432F0E0 000001053453DCF1
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsValueType () 00000105319DC1C0 - 00000105319DC200 0000010531FCF96E
    Mono: AOT FOUND AOT compiled code for System.Type:IsValueTypeImpl () 00000105319DE930 - 00000105319DE9A0 0000010531FCFA59
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsSubclassOf (System.Type) 0000010531AA67D0 - 0000010531AA6830 0000010531FD39F4
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:type_is_subtype_of (System.Type,System.Type,bool) 00000105319DCDA0 - 00000105319DCE30 0000010531FCF9C7
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Time:get_realtimeSinceStartup () 0000010532192850 - 00000105321928D0 000001053266A235
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS,bool) 0000010534330970 - 00000105343311D0 000001053453DD4C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 00000105343307D0 - 0000010534330970 000001053453DD45
    Mono: AOT FOUND AOT compiled code for OnVhgVIhxSfHLjYZDKtOTImJgCN:.cctor () 000001053429E380 - 000001053429E3E0 000001053453AEC3
    Mono: AOT FOUND AOT compiled code for OnVhgVIhxSfHLjYZDKtOTImJgCN:sJvUYOjdqCsKRSVgrfteBDYNaMX (int) 000001053429E100 - 000001053429E2E0 000001053453AEAF
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:GetHashCode (int) 000001053429E410 - 000001053429E430 000001053453AED0
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:emVARzFCVWZdYJBYzjiIwgGuEvsG (System.Func`2<Rewired.Data.ConfigVars, object>) 0000010534258340 - 0000010534258E50 00000105345399E2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:DoesPlatformUseFallback (Rewired.Platforms.Platform,Rewired.Platforms.WebplayerPlatform,bool) 00000105340F9A70 - 00000105340F9C90 00000105345343FD
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:DoesPlatformUseSDL2 (Rewired.Platforms.Platform,Rewired.Platforms.WebplayerPlatform,bool) 00000105340F9C90 - 00000105340F9E00 0000010534534405
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:.ctor () 00000105342E7F00 - 00000105342E8120 000001053453C28E
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:.ctor (int) 00000105340F87B0 - 00000105340F8930 0000010534534385
    Mono: AOT FOUND AOT compiled code for System.Enum:IsDefined (System.Type,object) 00000105319CBC50 - 00000105319CBED0 0000010531FCF5AE
    Mono: AOT FOUND AOT compiled code for System.Enum:.cctor () 00000105319CAB70 - 00000105319CABE0 0000010531FCF54D
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsEnum () 00000105319DBAB0 - 00000105319DBB00 0000010531FCF92A
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:GetInfo (System.Type,System.MonoEnumInfo&) 0000010531A98580 - 0000010531A98E60 0000010531FD356D
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:.cctor () 0000010531A98360 - 0000010531A98450 0000010531FD3542
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:get_Cache () 0000010531A984D0 - 0000010531A98580 0000010531FD3561
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:ContainsKey (object) 0000010531AE2710 - 0000010531AE2760 0000010531FD4C8A
    Mono: AOT FOUND AOT compiled code for System.Type:GetHashCode () 00000105319DDB20 - 00000105319DDBF0 0000010531FCFA01
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoEnumInfo:get_enum_info (System.Type,System.MonoEnumInfo&) 0000010531A98450 - 0000010531A984D0 0000010531FD355D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetLength (System.Array*,int) 00000105319D02D0 - 00000105319D0380 0000010531FCF6CD
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl (System.Array,System.Array,int,int,System.Collections.IComparer) 00000105319D4FD0 - 00000105319D5930 0000010531FCF7A2
    Mono: AOT FOUND AOT compiled code for System.Array:MoveNullKeysToFront (System.Array,System.Array,int,int,bool) 00000105319D60E0 - 00000105319D62E0 0000010531FCF7F1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetValueImpl (System.Array*,int) 00000105319D05C0 - 00000105319D0670 0000010531FCF6D7
    Mono: AOT FOUND AOT compiled code for System.Array:qsort (System.Array,System.Array,int,int,System.Collections.IComparer) 00000105319D5D40 - 00000105319D60E0 0000010531FCF7E2
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo/IntComparer:Compare (object,object) 0000010531A99090 - 0000010531A99180 0000010531FD35A5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:SetValueImpl (System.Array*,object,int) 00000105319D0670 - 00000105319D0720 0000010531FCF6D9
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:.ctor (System.MonoEnumInfo) 0000010531A98290 - 0000010531A98360 0000010531FD353E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:ToObject (System.Type,object) 00000105319CD3B0 - 00000105319CD430 0000010531FCF603
    Mono: AOT FOUND AOT compiled code for System.Enum:FindPosition (object,System.Array) 00000105319CB450 - 00000105319CBA80 0000010531FCF591
    Mono: AOT FOUND AOT compiled code for System.Array:BinarySearch<int> (int[],int,int,int,System.Collections.Generic.IComparer`1<int>) 0000010531DD41B0 - 0000010531DD4470 0000010531FE49C2
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo/IntComparer:Compare (int,int) 0000010531A99180 - 0000010531A991C0 0000010531FD35A9
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:rqaEdJgZtwEcWesTiuTPMcxGfxt (uint,bool) 00000105342E8910 - 00000105342E8BB0 000001053453C2C2
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_externalTools () 00000105342D69E0 - 00000105342D6A00 000001053453BD93
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_IsGamepadActive (uint) 00000105337A0EB0 - 00000105337A0ED0 0000010533B69717
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:IsGamepadActive (uint) 00000105322911E0 - 0000010532291260 000001053266EB50
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:.ctor (Rewired.Platforms.XboxOne.IXboxOneInputSource,ulong,int,bool) 00000105342E9190 - 00000105342E93B0 000001053453C2F4
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:.ctor (string,System.Nullable`1<long>,int,int,int) 00000105340F94C0 - 00000105340F9710 00000105345343E1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetUnityInputAxisNameByJoystickId (int,int) 00000105342D98E0 - 00000105342D9A30 000001053453BEBB
    Mono: AOT FOUND AOT compiled code for string:Concat (object[]) 00000105319B9790 - 00000105319B9950 0000010531FCF12F
    Mono: AOT FOUND AOT compiled code for string:ConcatInternal (string[],int) 00000105319B9A40 - 00000105319B9B70 0000010531FCF137
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:.ctor (bool,Rewired.Platforms.XboxOne.IXboxOneInputSource) 00000105342E5F70 - 00000105342E60D0 000001053453C228
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:SourceUpdated (Rewired.Interfaces.IControllerExtensionSource) 00000105342E7820 - 00000105342E78A0 000001053453C270
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:populate<T> (T[],int,int) 00000105342C83B0 - 00000105342C8640 000001053453B938
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Activator:CreateInstance<T> () 0000010531A67A80 - 0000010531A67AE0 0000010531FD1F67
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Utility.TimerAbs:.ctor () 00000105342BA360 - 00000105342BA370 000001053453B652
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:AddJoystick (Rewired.Platforms.Custom.CustomInputSource/Joystick) 00000105340F8930 - 00000105340F8A20 0000010534534397
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Contains (T) 0000010531D32AB0 - 0000010531D32B50 0000010531FE1545
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:IndexOf<T> (T[],T,int,int) 00000105319D9780 - 00000105319D9980 0000010531FCF860
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:.cctor () 0000010531D30FC0 - 0000010531D311A0 0000010531FE149C
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1/DefaultComparer:.ctor () 0000010531D31410 - 0000010531D31460 0000010531FE14AF
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:.ctor () 0000010531D30FB0 - 0000010531D30FC0 0000010531FE1498
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:get_Default () 0000010531D313C0 - 0000010531D31410 0000010531FE14AB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1/DefaultComparer:Equals (T,T) 0000010531D314B0 - 0000010531D31520 0000010531FE14B3
    Mono: AOT FOUND AOT compiled code for object:Equals (object) 00000105319A1030 - 00000105319A1060 0000010531FCEAD3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:add_XboxOneInput_OnGamepadStateChange (System.Action`2<uint, bool>) 00000105337A0D00 - 00000105337A0DB0 0000010533B696F5
    Mono: AOT FOUND AOT compiled code for System.Delegate:Combine (System.Delegate,System.Delegate) 00000105319CA810 - 00000105319CA8E0 0000010531FCF539
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:.ctor (Rewired.Platforms.Custom.CustomInputSource,Rewired.Config.UpdateLoopSetting,System.Func`2<Rewired.BridgedControllerHWInfo, Rewired.HardwareJoystickMap_InputManager>,System.Func`1<int>) 00000105341A6340 - 00000105341A6600 0000010534536CDD
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_ldvirtfn (object,intptr) 0000010531DC9340 - 0000010531DC93C0 0000010531FE459F
    Mono: AOT FOUND function 'generic_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_delegate_ctor (object,object,intptr) 0000010531DCA8F0 - 0000010531DCA980 0000010531FE45F3
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:add__JoystickConnectedEvent (System.Action) 00000105340F8300 - 00000105340F8400 0000010534534361
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:add__JoystickDisconnectedEvent (System.Action) 00000105340F84D0 - 00000105340F8600 000001053453436D
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:.ctor () 0000010534198CB0 - 0000010534198D60 00000105345369DD
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:.ctor (Rewired.Data.ConfigVars,Rewired.PlatformInputManager) 0000010534199FF0 - 000001053419A290 0000010534536A31
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:.ctor (string) 00000105340F2110 - 00000105340F2570 000001053453420D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:FormatHardwareIdentifierString (string) 00000105342C2250 - 00000105342C22E0 000001053453B81F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,string) 0000010532BAD130 - 0000010532BAD160 0000010532D7D9E0
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,string,System.Text.RegularExpressions.RegexOptions) 0000010532BAD160 - 0000010532BAD1E0 0000010532D7D9E4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseEscape () 0000010532BA9220 - 0000010532BA96C0 0000010532D7D8B9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseSpecial (System.Text.RegularExpressions.RegexOptions) 0000010532BA8900 - 0000010532BA9220 0000010532D7D88B
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:set_Item (int,bool) 0000010531ADC710 - 0000010531ADC740 0000010531FD4A4A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitCategory (System.Text.RegularExpressions.Category,bool,bool) 0000010532BBE370 - 0000010532BBF6C0 0000010532D7DBFF
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitOpNegateReverse (System.Text.RegularExpressions.RxOp,bool,bool) 0000010532BBE110 - 0000010532BBE170 0000010532D7DBF7
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,int,int) 0000010532BAE850 - 0000010532BAE9E0 0000010532D7DAA6
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.BaseMachine:Replace (System.Text.RegularExpressions.Regex,string,string,int,int) 0000010532B733C0 - 0000010532B73540 0000010532D7CC65
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.BaseMachine:LTRReplace (System.Text.RegularExpressions.Regex,string,System.Text.RegularExpressions.BaseMachine/MatchAppendEvaluator,int,int,bool) 0000010532B73D50 - 0000010532B740A0 0000010532D7CC82
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:GenerateMatch (System.Text.RegularExpressions.Regex) 0000010532BB0B00 - 0000010532BB1080 0000010532D7DB60
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:Append (string,int,int) 0000010531D0DED0 - 0000010531D0E060 0000010531FE0ACB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.ReplacementEvaluator:EvaluateAppend (System.Text.RegularExpressions.Match,System.Text.StringBuilder) 0000010532BC0D40 - 0000010532BC1190 0000010532D7DC5C
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:Append (string) 0000010531D0D5E0 - 0000010531D0D800 0000010531FE0AA9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:NextMatch () 0000010532BA4350 - 0000010532BA4540 0000010532D7D7CB
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerDataUpdater:.ctor (Rewired.InputSource,int,int,Rewired.UnknownControllerHat[]) 0000010534176080 - 00000105341761E0 0000010534536262
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:.ctor (int,Rewired.InputSource,string,string,string,Rewired.ControllerType,int,bool[],Rewired.Controller/Extension,Rewired.ControllerDataUpdater) 00000105340D5CA0 - 00000105340D61A0 0000010534533A6C
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:htLfeMXMAFeaUWMHZfLXFFmbbKE (Rewired.Controller/Extension) 00000105340D7770 - 00000105340D7880 0000010534533AC6
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:.ctor (string,bool) 00000105340DAE50 - 00000105340DAF10 0000010534533BCE
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv:.ctor (Rewired.Config.UpdateLoopSetting,bool) 00000105340DB4C0 - 00000105340DB640 0000010534533BE8
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element/rLtXVOsPnPLUXiVCeWRtKqSwdFP:.ctor (Rewired.Config.UpdateLoopSetting) 00000105340D7E20 - 00000105340D8080 0000010534533AE8
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv/zgBdWDIjAJnatXklyDhIAfXDqso:.ctor () 00000105340DB930 - 00000105340DBA00 0000010534533BFA
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:.ctor () 00000105340C7990 - 00000105340C7A50 0000010534533660
    Mono: AOT FOUND AOT compiled code for aMKryKeZCweXDfKqkQuZuCBIVUO:.ctor (single) 00000105340C83E0 - 00000105340C8480 000001053453367E
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:Connected () 00000105340D79C0 - 00000105340D79F0 0000010534533ACE
    Mono: AOT FOUND AOT compiled code for Rewired.Consts:.cctor () 00000105340D3BC0 - 00000105340D5940 00000105345338A3
    Mono: AOT FOUND AOT compiled code for System.Guid:.ctor (string) 0000010531A9C210 - 0000010531A9C2D0 0000010531FD36D2
    Mono: AOT FOUND AOT compiled code for System.Guid:.cctor () 0000010531A9C6F0 - 0000010531A9C780 0000010531FD36E4
    Mono: AOT FOUND AOT compiled code for string:Trim () 00000105319B1B50 - 00000105319B1C70 0000010531FCEFB2
    Mono: AOT FOUND AOT compiled code for System.Guid/GuidParser:parseGuid1 () 0000010531A9E850 - 0000010531A9EB10 0000010531FD3781
    Mono: AOT FOUND AOT compiled code for char:IsDigit (char) 00000105319AF230 - 00000105319AF270 0000010531FCEE91
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:Fill<int> (int[],int) 00000105342EA3D0 - 00000105342EA4C0 000001053453C33D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_isAndroidPlatform () 00000105342D67C0 - 00000105342D68A0 000001053453BD65
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:GetUnifiedMouseSource () 00000105341A6C30 - 00000105341A6C40 0000010534536D19
    Mono: AOT FOUND AOT compiled code for Rewired.Mouse:.ctor (string,Rewired.Interfaces.IUnifiedMouseSource) 00000105340F7940 - 00000105340F7B00 0000010534534340
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_axisCount () 000001053418E880 - 000001053418E890 0000010534536784
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_buttonCount () 000001053418E870 - 000001053418E880 0000010534536782
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_hardwareMap () 000001053418E830 - 000001053418E870 000001053453677A
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:jOpfUUHRKmheZhIwiYIyDEUdvjEV () 000001053418EAC0 - 000001053418F1B0 0000010534536794
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:get_Count () 0000010531D38A40 - 0000010531D38AC0 0000010531FE16F8
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__ICollection_get_Count () 00000105319CF7D0 - 00000105319CF800 0000010531FCF6A7
    Mono: Assembly Ref addref Pathfinding.Poly2Tri 00000206100269A0 -> mscorlib 000002060D4A3DF0: 10
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:System.Collections.Generic.IList<T>.get_Item (int) 0000010532C36050 - 0000010532C36090 0000010532D8049E
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:get_Item (int) 0000010532C36820 - 0000010532C36880 0000010532D804EC
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__get_Item<int> (int) 0000010531D48950 - 0000010531D489F0 0000010531FE1B07
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetGenericValueImpl (System.Array*,int,int&) 0000010531DE0DD0 - 0000010531DE0EB0 0000010531FE535C
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:System.Collections.Generic.IList<T>.get_Item (int) 0000010531D38210 - 0000010531D38260 0000010531FE16C3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__get_Item<T> (int) 00000105319CFF80 - 00000105319D0040 0000010531FCF6BD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483653' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetGenericValueImpl (System.Array*,int,object&) 0000010531D4CE10 - 0000010531D4CEF0 0000010531FE1C2D
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerElementIdentifier:.ctor (int,string,Rewired.ControllerElementType,bool) 00000105341C0030 - 00000105341C0110 0000010534537261
    Mono: AOT FOUND AOT compiled code for string:memset (byte*,int,int) 00000105319BB600 - 00000105319BB700 0000010531FCF18C
    Mono: AOT FOUND AOT compiled code for string:memcpy (byte*,byte*,int) 00000105319BB910 - 00000105319BBA30 0000010531FCF198
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:.ctor (string,Rewired.ControllerElementIdentifier[],int[],int[],Rewired.AxisCalibrationData[],Rewired.AxisRange[],Rewired.Data.Mapping.HardwareAxisInfo[],Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement[]) 00000105341DB4C0 - 00000105341DC0E0 0000010534537A2B
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:DeepClone<T> (T[]) 00000105342C27F0 - 00000105342C29F0 000001053453B842
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:ToArray () 0000010532BE5350 - 0000010532BE53E0 0000010532D7E8D1
    Mono: AOT FOUND AOT compiled code for System.Array:Copy (System.Array,System.Array,int) 00000105319D3030 - 00000105319D3140 0000010531FCF74D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001053431F6E0 - 000001053431F7E0 000001053453D6C1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010534320ED0 - 0000010534321070 000001053453D715
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.ControllerElementIdentifier,bool) 0000010534321070 - 00000105343218D0 000001053453D71C
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:SajRKfNBfWtUXyNJNKyvLDRizyv (Rewired.ControllerElementIdentifier[],int) 00000105341DCB90 - 00000105341DCD00 0000010534537A6A
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_inputSource () 000001053418E820 - 000001053418E830 0000010534536778
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:.ctor (int,Rewired.InputSource,string,string,string,Rewired.ControllerType,int,int,bool[],Rewired.HardwareControllerMap_Game,Rewired.Controller/Extension,Rewired.ControllerDataUpdater) 00000105340E1370 - 00000105340E1D40 0000010534533D34
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:.ctor (string,Rewired.AxisRange,Rewired.Data.Mapping.HardwareAxisInfo) 00000105340D8FB0 - 00000105340D9080 0000010534533B47
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm:.ctor (Rewired.Config.UpdateLoopSetting) 00000105340D9630 - 00000105340D9770 0000010534533B63
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:.ctor (Rewired.AxisCalibrationData[]) 00000105341BAA80 - 00000105341BACB0 000001053453715B
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:.ctor (bool,single,single,single,single,bool,bool,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 00000105341BD950 - 00000105341BDB70 00000105345371F3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Abs (single) 00000105342CEA70 - 00000105342CEB80 000001053453BB7D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:Copy (UnityEngine.AnimationCurve) 00000105342D9D50 - 00000105342D9F00 000001053453BEF1
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:Reset () 00000105341BEE70 - 00000105341BF0B0 000001053453720F
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF:.ctor (Rewired.Config.UpdateLoopSetting,Rewired.Keyboard) 000001053418CC00 - 000001053418CE20 000001053453670C
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB:.ctor (Rewired.Keyboard) 000001053418D280 - 000001053418D3C0 0000010534536724
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.ExpandableArray_DataContainer`1:.ctor (int,bool,int) 0000010534185790 - 00000105341859B0 000001053453654E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB/plYTUcssEwvcscpWoSJvZDxYtIT:.ctor () 000001053418DE80 - 000001053418DE90 0000010534536748
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:GetAllPlatformVars () 00000105340FACA0 - 00000105340FAD10 0000010534534497
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_effectivePlatform () 00000105342D6330 - 00000105342D6430 000001053453BD03
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_isEditor () 00000105342D6450 - 00000105342D6470 000001053453BD17
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:GetPlatformVars (Rewired.Platforms.Platform) 00000105340FAD80 - 00000105340FB060 000001053453449D
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_DeviceConnectedEvent (System.Action`1<Rewired.BridgedController>) 00000105340C8CD0 - 00000105340C8D70 000001053453368F
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_DeviceDisconnectedEvent (System.Action`1<Rewired.ControllerDisconnectedEventArgs>) 00000105340C8E10 - 00000105340C8EB0 0000010534533695
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_UpdateControllerInfoEvent (System.Action`1<Rewired.UpdateControllerInfoEventArgs>) 00000105340C8F50 - 00000105340C8FF0 000001053453369B
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:add_ControllerDisconnectStartedEvent (System.Action`1<Rewired.ControllerStatusChangedEventArgs>) 0000010534199EB0 - 0000010534199F50 0000010534536A29
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:ZnnDXlDqoTIESARNhSPbHlpwMtfs () 0000010534257700 - 00000105342578C0 0000010534539953
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:DindbEUKOJFiJmAXlIkShOCUIXic () 00000105341B42B0 - 00000105341B51F0 0000010534536F6B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:get_Count () 0000010531D355B0 - 0000010531D355E0 0000010531FE1615
    Mono: AOT FOUND AOT compiled code for Rewired.Player:.ctor (bool,int,string,string,CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[]) 00000105341E4650 - 00000105341E4740 0000010534537D64
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:.ctor (Rewired.Player,CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[]) 00000105341EB6B0 - 00000105341EB960 0000010534537FA9
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/ConflictCheckingHelper:.ctor (Rewired.Player,Rewired.Player/ControllerHelper) 000001053423E100 - 000001053423E1C0 000001053453924C
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:.ctor () 000001053424C4F0 - 000001053424C630 00000105345394F6
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:.ctor () 00000105341D42A0 - 00000105341D43B0 00000105345378F9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: Assembly Ref addref Rewired_Core 0000020610026E20 -> System.Xml 000002060FF89DF0: 2
    Mono: Assembly Ref addref System.Xml 000002060FF89DF0 -> mscorlib 000002060D4A3DF0: 11
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:DindbEUKOJFiJmAXlIkShOCUIXic () 00000105341EE080 - 00000105341EE240 000001053453807A
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:ykxmVYnbqGtjMQxSHgQkACFwvoj () 000001053424D260 - 000001053424D340 0000010534539519
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Clear () 0000010531D329F0 - 0000010531D32AB0 0000010531FE1541
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:ykxmVYnbqGtjMQxSHgQkACFwvoj (bool) 00000105341D54C0 - 00000105341D57C0 000001053453791F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:EmDGDKOVglGWKCMlHaYGHBDhSHY (bool) 00000105341FB150 - 00000105341FB7B0 00000105345383D3
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:DNOWISNTStEfSwqpZLYAGCsBpst (bool) 00000105341FB7B0 - 00000105341FBE10 00000105345383DA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetActions_Copy () 00000105341524E0 - 0000010534152650 0000010534535B53
    Mono: AOT FOUND AOT compiled code for System.StringComparer:.cctor () 0000010531AB6DA0 - 0000010531AB6EC0 0000010531FD3E17
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_InvariantCulture () 0000010531AFE8E0 - 0000010531AFE900 0000010531FD558F
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_CompareInfo () 0000010531B00860 - 0000010531B00990 0000010531FD56A9
    Mono: AOT FOUND AOT compiled code for System.Globalization.CompareInfo:.cctor () 0000010531AFB6F0 - 0000010531AFB770 0000010531FD543A
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:get_IsReady () 00000105319F3CF0 - 00000105319F3D10 0000010531FD0241
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:.cctor () 00000105319F22C0 - 00000105319F2770 0000010531FD0166
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:GetResource (string) 00000105319F3D10 - 00000105319F3D80 0000010531FD0246
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:GetManifestResourceInternal (System.Reflection.Assembly*,string,int&,System.Reflection.Module&) 0000010531B505D0 - 0000010531B50690 0000010531FD750C
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:UInt32FromBytePtr (byte*,uint) 00000105319F3D80 - 00000105319F3DF0 0000010531FD0249
    Mono: AOT FOUND AOT compiled code for System.Globalization.CompareInfo:.ctor (System.Globalization.CultureInfo) 0000010531AFB3C0 - 0000010531AFB6F0 0000010531FD5422
    Mono: AOT FOUND AOT compiled code for int:GetHashCode () 00000105319A3400 - 00000105319A3420 0000010531FCEB91
    Mono: AOT FOUND function 'ut_87' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.cctor () 00000105319F5380 - 00000105319F5410 0000010531FD02FF
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.ctor (System.Globalization.CultureInfo) 00000105319F4D90 - 00000105319F5380 0000010531FD02F8
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_TextInfo () 0000010531AFFE90 - 0000010531AFFFA0 0000010531FD566A
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_Name () 0000010531AFFB30 - 0000010531AFFB60 0000010531FD5654
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:FillCJK (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 00000105319F3DF0 - 00000105319F3EB0 0000010531FD024C
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:FillCJKCore (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 00000105319F3EB0 - 00000105319F45E0 0000010531FD0251
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:Init (int,System.Collections.Generic.IEqualityComparer`1<string>) 0000010531D3CCE0 - 0000010531D3CDE0 0000010531FE180A
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1:.ctor () 0000010531D31520 - 0000010531D31570 0000010531FE14B5
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_6' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:InitArrays (int) 0000010531D3CDE0 - 0000010531D3CFA0 0000010531FE180E
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:Add (string,int) 0000010531D3D6B0 - 0000010531D3DCD0 0000010531FE182E
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1:GetHashCode (T) 0000010531D31570 - 0000010531D315C0 0000010531FE14B7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:TryGetValue (string,int&) 0000010531D3F140 - 0000010531D3F440 0000010531FE1873
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:SetCJKReferences (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 00000105319F2FE0 - 00000105319F32F0 0000010531FD01BB
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:GetTailoringInfo (int) 00000105319F2770 - 00000105319F2880 0000010531FD018E
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.ContractionComparer:.cctor () 00000105319F1EE0 - 00000105319F1F10 0000010531FD0142
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.Level2MapComparer:.cctor () 00000105319F21B0 - 00000105319F21E0 0000010531FD0155
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:BuildTailoringTables (System.Globalization.CultureInfo,Mono.Globalization.Unicode.TailoringInfo,Mono.Globalization.Unicode.Contraction[]&,Mono.Globalization.Unicode.Level2Map[]&) 00000105319F2880 - 00000105319F2FE0 0000010531FD0197
    Mono: AOT FOUND AOT compiled code for System.Runtime.InteropServices.Marshal:Copy (intptr,char[],int,int) 0000010531BD3A90 - 0000010531BD3AD0 0000010531FD9993
    Mono: AOT FOUND AOT compiled code for System.Runtime.InteropServices.Marshal:.cctor () 0000010531BD3420 - 0000010531BD3490 0000010531FD9942
    Mono: AOT FOUND AOT compiled code for System.Environment:get_OSVersion () 0000010531A99710 - 0000010531A997B0 0000010531FD35CB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:GetOSVersionString () 0000010531A996A0 - 0000010531A99710 0000010531FD35C9
    Mono: AOT FOUND AOT compiled code for System.Version:CreateFromString (string) 0000010531ACA290 - 0000010531ACA4B0 0000010531FD4418
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_Platform () 0000010531A99630 - 0000010531A996A0 0000010531FD35C7
    Mono: AOT FOUND AOT compiled code for System.OperatingSystem:.ctor (System.PlatformID,System.Version) 0000010531AB4150 - 0000010531AB4210 0000010531FD3CFB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Runtime.InteropServices.Marshal:copy_from_unmanaged (intptr,int,System.Array,int) 0000010531BD3830 - 0000010531BD38D0 0000010531FD996B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char*,int,int) 00000105319B02E0 - 00000105319B0310 0000010531FCEF18
    Mono: AOT FOUND AOT compiled code for string:CreateString (char*,int,int) 00000105319BB0C0 - 00000105319BB1F0 0000010531FCF17B
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Sort (System.Collections.IComparer) 0000010531AD1140 - 0000010531AD11A0 0000010531FD4609
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.ContractionComparer:Compare (object,object) 00000105319F1F10 - 00000105319F2140 0000010531FD0149
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:ToArray (System.Type) 0000010531AD12A0 - 0000010531AD1320 0000010531FD4616
    Mono: AOT FOUND AOT compiled code for System.Array:CreateInstance (System.Type,int) 00000105319D1530 - 00000105319D15B0 0000010531FCF70B
    Mono: AOT FOUND AOT compiled code for System.Array:CreateInstance (System.Type,int[]) 00000105319D1730 - 00000105319D1970 0000010531FCF714
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:CreateInstanceImpl (System.Type,int[],int[]) 00000105319D07C0 - 00000105319D0850 0000010531FCF6DD
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:CopyTo (System.Array) 0000010531AD07B0 - 0000010531AD0810 0000010531FD45C3
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.ctor (System.Globalization.CultureInfo) 00000105319F4D90 - 00000105319F5380 0000010531FD02F8
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:DindbEUKOJFiJmAXlIkShOCUIXic (System.Collections.Generic.List`1<Rewired.InputAction>) 0000010534198D60 - 00000105341993E0 00000105345369E7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:ToArray () 0000010531D352F0 - 0000010531D353A0 0000010531FE1601
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2:.ctor (int,System.Collections.Generic.IEqualityComparer`1<TKey>) 0000010534296670 - 00000105342967F0 000001053453AD89
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:GetInputDataUpdateDelegate () 00000105341A6920 - 00000105341A6950 0000010534536D07
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetInputBehaviors_Copy () 0000010534152650 - 00000105341527E0 0000010534535B5B
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:Clone () 00000105341DF240 - 00000105341DF2D0 0000010534537B91
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:AJyHCTzbmRmHZCSfKBFezdvwyBd (Rewired.InputBehavior,Rewired.InputBehavior,bool) 00000105341E0990 - 00000105341E0E90 0000010534537C4B
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:get_nextUid () 00000105341DED50 - 00000105341DEE00 0000010534537B68
    Mono: AOT FOUND function 'delegate_invoke_impl_target_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:DindbEUKOJFiJmAXlIkShOCUIXic (System.Collections.Generic.List`1<Rewired.InputBehavior>) 00000105341A16E0 - 00000105341A2BC0 0000010534536BFA
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 0000010534314340 - 0000010534314440 000001053453D456
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_players () 0000010534255D30 - 0000010534255D60 00000105345397CA
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB:.ctor (System.Collections.Generic.List`1<Rewired.InputBehavior>) 00000105341A4BA0 - 00000105341A4E40 0000010534536C87
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.ctor (int) 0000010531D31900 - 0000010531D319A0 0000010531FE14CD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001053431ABF0 - 000001053431ACF0 000001053453D5C4
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.InputBehavior,bool) 000001053431C580 - 000001053431CDE0 000001053453D61F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 000001053431C3E0 - 000001053431C580 000001053453D618
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB,bool) 0000010534315CD0 - 0000010534316530 000001053453D4B1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010534315B30 - 0000010534315CD0 000001053453D4AA
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:qxQSmkrCbMuOwTdBAfBencTdUvo (Rewired.Data.ConfigVars) 000001053418F580 - 000001053418F600 00000105345367DD
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:.cctor () 000001053418F2D0 - 000001053418F300 00000105345367C3
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV:.ctor (Rewired.Config.UpdateLoopSetting) 0000010534198630 - 0000010534198870 00000105345369BF
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 0000010534310150 - 0000010534310250 000001053453D388
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx,bool) 0000010534311AE0 - 0000010534312340 000001053453D3E3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010534311940 - 0000010534311AE0 000001053453D3DC
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_2 (intptr,intptr,intptr) 0000010531DCB6D0 - 0000010531DCB760 0000010531FE4629
    Mono: AOT FOUND AOT compiled code for wkwvdclLwICmufCWPAXIESAhwhMq:.ctor () 00000105340C9A80 - 00000105340C9B40 00000105345336C9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for tBasxZatbsiZMxDTNVALpbZSDVC:.ctor () 00000105340C9FD0 - 00000105340CA040 00000105345336DB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:.ctor () 000001053429F000 - 000001053429F030 000001053453AF1A
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:.cctor () 00000105342A4000 - 00000105342A4070 000001053453B07E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:populate<T> (T[]) 00000105342C8640 - 00000105342C86E0 000001053453B93C
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:Initialize () 00000105341A6680 - 00000105341A6780 0000010534536CF5
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:eek:p_Inequality (UnityEngine.Object,UnityEngine.Object) 0000010532188460 - 0000010532188490 0000010532669FB6
    Mono: AOT FOUND AOT compiled code for Rewired.Dev.Tools.JoystickElementIdentifier:Awake () 0000010534291260 - 0000010534291E70 000001053453ABBC
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Component:get_transform (UnityEngine.Component*) 00000105321884A0 - 0000010532188550 0000010532669FBC
    Mono: AOT FOUND AOT compiled code for UnityEngine.Transform:get_position () 000001053218E250 - 000001053218E2B0 000001053266A134
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Transform:INTERNAL_get_position (UnityEngine.Transform*,UnityEngine.Vector3&) 000001053218E2E0 - 000001053218E390 000001053266A138
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector3:get_zero () 000001053213D1B0 - 000001053213D220 0000010532668C72
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector3:eek:p_Inequality (UnityEngine.Vector3,UnityEngine.Vector3) 000001053213DEA0 - 000001053213DF50 0000010532668C94
    Mono: AOT FOUND AOT compiled code for Rewired.Dev.Tools.JoystickElementIdentifier:WPxzHmDUBgMThziOWnbWQvAbTUQ () 0000010534292000 - 0000010534292130 000001053453AC16
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Object:FindObjectsOfType (System.Type) 0000010532187640 - 00000105321876C0 0000010532669F2A
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_primaryInputManager () 0000010534256700 - 00000105342567A0 0000010534539888
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:get_primaryInputManager () 00000105341A6630 - 00000105341A6660 0000010534536CEF
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:get_inputSourceType () 00000105341A6670 - 00000105341A6680 0000010534536CF3
    Mono: AOT FOUND AOT compiled code for Rewired.Logger:LogError (object,bool) 0000010534175160 - 0000010534175A40 00000105345361FF
    Mono: AOT FOUND AOT compiled code for string:Concat (object,object,object) 00000105319B8CB0 - 00000105319B8DA0 0000010531FCF10F
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string,string) 00000105319B91B0 - 00000105319B94A0 0000010531FCF120
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_programVersion () 0000010534255E80 - 0000010534256050 00000105345397F4
    Mono: AOT FOUND AOT compiled code for System.Enum:ToString () 00000105319CD0F0 - 00000105319CD120 0000010531FCF5E1
    Mono: AOT FOUND AOT compiled code for System.Enum:ToString (string) 00000105319CD150 - 00000105319CD1E0 0000010531FCF5E9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:get_value (System.Enum*) 00000105319CB0A0 - 00000105319CB140 0000010531FCF583
    Mono: AOT FOUND AOT compiled code for System.Enum:Format (System.Type,object,string) 00000105319CECE0 - 00000105319CF300 0000010531FCF687
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:get_underlying_type (System.Type) 00000105319CBED0 - 00000105319CBF50 0000010531FCF5B4
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsDefined (System.Type,bool) 0000010531AA8090 - 0000010531AA80C0 0000010531FD3A2E
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:IsDefined (System.Reflection.ICustomAttributeProvider,System.Type,bool) 0000010531AA4150 - 0000010531AA4340 0000010531FD395D
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:.cctor () 0000010531AA2C90 - 0000010531AA2CF0 0000010531FD38E1
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:IsUserCattrProvider (object) 0000010531AA2CF0 - 0000010531AA2E90 0000010531FD38ED
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoCustomAttrs:IsDefinedInternal (System.Reflection.ICustomAttributeProvider,System.Type) 0000010531AA4340 - 0000010531AA43C0 0000010531FD3963
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:GetPseudoCustomAttributes (System.Reflection.ICustomAttributeProvider,System.Type) 0000010531AA2F20 - 0000010531AA32D0 0000010531FD3905
    Mono: AOT FOUND AOT compiled code for System.Type:GetPseudoCustomAttributes () 00000105319E11F0 - 00000105319E1370 0000010531FCFB0B
    Mono: AOT FOUND AOT compiled code for bool:.cctor () 00000105319C6350 - 00000105319C6390 0000010531FCF3FE
    Mono: AOT FOUND AOT compiled code for bool:ToString () 00000105319C6C20 - 00000105319C6C60 0000010531FCF450
    Mono: AOT FOUND function 'ut_861' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:GetDebugConfigSettings () 00000105340F9E00 - 00000105340FA9A0 000001053453440B
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_logToDebugLog () 00000105342D64B0 - 00000105342D65A0 000001053453BD29
    Mono: AOT FOUND AOT compiled code for UnityEngine.Debug:LogError (object) 0000010532181510 - 0000010532181570 0000010532669BA8
    Mono: AOT FOUND AOT compiled code for UnityEngine.Logger:Log (UnityEngine.LogType,object) 00000105322B38A0 - 00000105322B39B0 000001053266F878
    Mono: AOT FOUND AOT compiled code for UnityEngine.Logger:GetString (object) 00000105322B3840 - 00000105322B38A0 000001053266F874
    Mono: AOT FOUND AOT compiled code for UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) 0000010532180D60 - 0000010532180DB0 0000010532669B44
    Mono: AOT FOUND AOT compiled code for string:Format (string,object[]) 00000105319B8120 - 00000105319B8150 0000010531FCF0EB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,string,UnityEngine.Object) 0000010532180C50 - 0000010532180CE0 0000010532669B40
    Rewired: There was an error initializing the platform tool. Unity input will use shown instead.
    ------- Rewired System Info -------
    Unity version: 5.4.0p2
    Rewired version: 1.0.0.99.U5
    Platform: XboxOne
    Using Unity input: False
    Primary input source: Native
    Native mouse handling: True
    Enhanced device support: True

    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for UnityEngine.Component:GetComponent<T> () 0000010532188710 - 00000105321887C0 0000010532669FC4
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for intptr:.ctor (void*) 00000105319C6D20 - 00000105319C6D60 0000010531FCF45F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Component:GetComponentFastPath (UnityEngine.Component*,System.Type,intptr) 0000010532188650 - 0000010532188710 0000010532669FC2
    Mono: AOT FOUND AOT compiled code for fLADjYxSxxHFBaJgRZTMqyoXsjx:Initialize (UnityEngine.GUIText) 0000010534292F00 - 0000010534292F40 000001053453AC92
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_SceneLoaded (UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode) 00000105321A2E80 - 00000105321A2EF0 000001053266A7A6
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene_int (object,intptr,intptr,intptr) 0000010532375900 - 00000105323759E0 0000010532674A74
    Mono: gc took 13107 usecs . [ 2.206028 ] seconds to load first level
    ** CONSTRAINED MODE NOTIFICATION **
    Window has gained focus
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Start () 000001053418AE10 - 000001053418AEB0 000001053453665E
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:QqtWUdqRUivEvEiEDRwyyYmdscy () 0000010534256EC0 - 0000010534256F60 00000105345398FA
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:HoHzAqHnkBdOZyGdofdgFapYhrRT () 000001053427CC60 - 000001053427CD20 000001053453A573
    Mono: AOT FOUND AOT compiled code for System.Diagnostics.Stopwatch:Start () 0000010532A53C10 - 0000010532A53C80 0000010532D7548A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Diagnostics.Stopwatch:GetTimestamp () 0000010532A53880 - 0000010532A538F0 0000010532D75464
    Mono: AOT FOUND AOT compiled code for Rewired.Dev.Tools.JoystickElementIdentifier:Start () 0000010534291E70 - 0000010534291EF0 000001053453AC0A
    Mono: AOT FOUND AOT compiled code for fLADjYxSxxHFBaJgRZTMqyoXsjx:Start () 0000010534292F40 - 0000010534293120 000001053453AC94
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetJoystickNames () 0000010532185C20 - 0000010532185C90 0000010532669E20
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:.cctor () 0000010532185380 - 0000010532185390 0000010532669DBC
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string,string,string) 00000105319B94A0 - 00000105319B9790 0000010531FCF127
    Mono: AOT FOUND AOT compiled code for Rewired.Logger:Log (object) 0000010534174E50 - 0000010534174FD0 00000105345361E3
    Mono: AOT FOUND AOT compiled code for UnityEngine.Debug:Log (object) 0000010532181380 - 00000105321813E0 0000010532669B88
    Rewired: Detected 2 attached joysticks:
    "Windows.Xbox.Input.Gamepad"
    "Windows.Xbox.Input.Gamepad"

    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for RewiredDebugging:Start () 000001053379CA40 - 000001053379DC00 0000010533B69568
    Rewired is in native mode
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_controllers () 0000010534255D60 - 0000010534255D90 00000105345397D0
    Rewired found 0 joysticks attached.
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:GetEnumerator () 0000010531D38940 - 0000010531D389C0 0000010531FE16F4
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__IEnumerable_GetEnumerator<T> () 00000105319CF810 - 00000105319CF8A0 0000010531FCF6AB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483654' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:.ctor (System.Array) 00000105319DA3A0 - 00000105319DA400 0000010531FCF874
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:MoveNext () 00000105319DA4C0 - 00000105319DA5B0 0000010531FCF87C
    Mono: AOT FOUND function 'ut_1161' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:Dispose () 00000105319DA480 - 00000105319DA4C0 0000010531FCF87A
    Mono: AOT FOUND function 'ut_1160' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Launch Activation Detected
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOneInput:TriggerOnGamepadStateChange (uint,bool) 0000010532291010 - 0000010532291070 000001053266EB3A
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_sbyte (object,intptr,intptr,intptr) 0000010532330C00 - 0000010532330CD0 00000105326734F3
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:TktNMVrqRNEpFDDZfmHHhsGqLjaj (uint,bool) 00000105342E82D0 - 00000105342E84C0 000001053453C2AA
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetControllerId (uint) 00000105337A0E90 - 00000105337A0EB0 0000010533B69715
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetControllerId (uint) 0000010532291260 - 00000105322912E0 000001053266EB52
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetControllerType (ulong) 00000105337A0ED0 - 00000105337A0EF0 0000010533B69719
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetControllerType (ulong) 00000105322915F0 - 0000010532291670 000001053266EB60
    Mono: AOT FOUND AOT compiled code for string:eek:p_Equality (string,string) 00000105319BBF80 - 00000105319BBFA0 0000010531FCF1B9
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:rppOkOQFSqPixWzIjmpkdbyoWQB (uint,bool) 00000105342E84C0 - 00000105342E8650 000001053453C2B4
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:DindbEUKOJFiJmAXlIkShOCUIXic (ulong) 00000105342E9EA0 - 00000105342EA060 000001053453C329
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetJoystickId (ulong) 00000105337A0EF0 - 00000105337A0F10 0000010533B6971B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetJoystickId (ulong) 00000105322912E0 - 0000010532291360 000001053266EB54
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:idyhvcNVToRslITkEALtshphaMH () 00000105342EA060 - 00000105342EA160 000001053453C331
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:OnJoystickConnected () 00000105340F8B50 - 00000105340F8BC0 00000105345343A5
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:SystemDeviceConnected () 00000105341A6B20 - 00000105341A6BA0 0000010534536D13
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:ResourceAvailabilityChangedEventResult (bool) 0000010532290880 - 00000105322908E0 000001053266EAFC
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_sbyte (object,intptr,intptr,intptr) 000001053232F2A0 - 000001053232F360 0000010532673467
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:GPUAvailabilityChangedEventResult (int) 0000010532290940 - 00000105322909A0 000001053266EB08
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int (object,intptr,intptr,intptr) 000001053232F420 - 000001053232F4E0 000001053267346F
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:WindowActivatedChangedEventResult (UnityEngine.XboxOneCoreWindowActivationState) 00000105322908E0 - 0000010532290940 000001053266EB02
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:FixedUpdate () 000001053418AF90 - 000001053418B090 0000010534536666
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Update () 000001053418AEB0 - 000001053418AF90 0000010534536662
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:DoUpdate (Rewired.UpdateLoopType) 000001053418B090 - 000001053418B2A0 000001053453666A
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:CheckRecompile () 00000105337A0C40 - 00000105337A0C50 0000010533B696E7
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 0000010534256F60 - 0000010534257240 0000010534539902
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 000001053427D060 - 000001053427D220 000001053453A585
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS:pwBdWMCYAQPaOfIhQvRIYhRzvWO () 000001053427D390 - 000001053427D660 000001053453A597
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:Tick (uint&) 00000105342DDB90 - 00000105342DDC20 000001053453BFCE
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:Update (Rewired.UpdateLoopType) 00000105341A6780 - 00000105341A68B0 0000010534536D01
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:get_isReady () 00000105342E7ED0 - 00000105342E7F00 000001053453C28C
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:Update () 00000105342E8120 - 00000105342E82D0 000001053453C2A0
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:WdEnIHOHHCqAtbFHLeNccNghGsu () 00000105342E8650 - 00000105342E8910 000001053453C2BE
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOne_Gamepad_UpdatePlugin () 00000105337A0F10 - 00000105337A0F60 0000010533B6971D
    Mono: DllImport attempting to load: 'Gamepad'.Mono: DllImport loading location: 'G:/Data\Plugins\Gamepad.dll'.Mono: Searching for 'UpdatePlugin'.Mono: Probing 'UpdatePlugin'.Mono: Found as 'UpdatePlugin'.Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) Rewired.Utils.ExternalTools:Ext_Gamepad_UpdatePlugin () 00000105339220D0 - 0000010533922170 0000010533B708B9
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:Update () 00000105342E93B0 - 00000105342E9EA0 000001053453C2FD
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:GetKey (UnityEngine.KeyCode) 0000010532185B80 - 0000010532185BA0 0000010532669E0C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetKeyInt (int) 0000010532185400 - 0000010532185480 0000010532669DC4
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetAxisRaw (string) 0000010532185780 - 0000010532185800 0000010532669DE0
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:vZVLculcsvcNYlZzqmQPvWRMlpG () 00000105340F8C70 - 00000105340F8E70 00000105345343AB
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:iuGgvriqNjwQSMVOKLfXdIqoBOw (Rewired.Platforms.Custom.CustomInputSource/Joystick[]) 00000105341A82D0 - 00000105341A8A30 0000010534536D56
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:DlFbxZUxQeEkPkdHnbcwGPuHCFnK (Rewired.Platforms.Custom.CustomInputSource/Joystick[]) 00000105341A6C40 - 00000105341A7220 0000010534536D1B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:.ctor (Rewired.Platforms.Custom.CustomInputSource,System.Nullable`1<long>,int,Rewired.Platforms.Custom.CustomInputSource/Joystick,Rewired.InputSource,Rewired.Controller/Extension,System.Func`2<Rewired.BridgedControllerHWInfo, Rewired.HardwareJoystickMap_InputManager>) 00000105341A93C0 - 00000105341A96A0 0000010534536D82
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:MEYFBdAUCKiYOJZcQxctJEKATiBj () 00000105341AAC00 - 00000105341AAD60 0000010534536DC0
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:WvXQFsnlIiHhtXPbsFvRleuxDlhd () 00000105341AA010 - 00000105341AA0A0 0000010534536D96
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:nfbwbWztNafkZaVWRjpSkQLMIsF (Rewired.BridgedControllerHWInfo) 00000105341A9920 - 00000105341A9B00 0000010534536D8C
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:AmPttmhxZBIdNBwDCVVRgEZhZYI () 00000105341AAE10 - 00000105341AB0F0 0000010534536DC8
    Mono: AOT FOUND AOT compiled code for string:Format (string,object,object,object) 00000105319B8070 - 00000105319B8120 0000010531FCF0E7
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:GetHardwareJoystickMap_InputManager (Rewired.BridgedControllerHWInfo) 00000105342573F0 - 0000010534257440 0000010534539937
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:uESHxoZCHJhelyWhkFdOhsXcnI (Rewired.BridgedControllerHWInfo) 00000105340FCBC0 - 00000105340FD200 00000105345344FB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:ZvfFJnNSghnsKVlJaAcdDYKTWgY () 00000105340FD570 - 00000105340FD6C0 000001053453450D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:IsNullOrEmpty<T> (T[]) 00000105342C9460 - 00000105342C95A0 000001053453B96B
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsClass () 00000105319DB9C0 - 00000105319DBA30 0000010531FCF921
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:Matches (Rewired.BridgedControllerHWInfo,bool,bool,Rewired.InputPlatform&,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 000001053410A070 - 000001053410A7A0 000001053453482D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:Matches (Rewired.BridgedControllerHWInfo,bool,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 000001053413C1B0 - 000001053413C3C0 000001053453550C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:Matches (Rewired.BridgedControllerHWInfo,bool,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 0000010534138910 - 0000010534138A10 0000010534535415
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:Matches (Rewired.BridgedControllerHWInfo,bool) 000001053413A8E0 - 000001053413AB00 0000010534535493
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/MatchingCriteria:Matches (Rewired.BridgedControllerHWInfo,bool) 0000010534133B60 - 0000010534133C30 00000105345352B9
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:get_isAllowed () 000001053413A890 - 000001053413A8E0 0000010534535491
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform:get_variantCount () 000001053410D790 - 000001053410D830 00000105345348FD
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:get_variants_base () 000001053413C180 - 000001053413C1B0 000001053453550A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base:StringMatches (string,string,bool) 000001053410F6D0 - 000001053410F7F0 0000010534534981
    Mono: AOT FOUND AOT compiled code for string:Equals (string,System.StringComparison) 00000105319B2B50 - 00000105319B2B90 0000010531FCEFE9
    Mono: AOT FOUND AOT compiled code for string:Compare (string,string,System.StringComparison) 00000105319B2700 - 00000105319B2900 0000010531FCEFDC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform:ToHardwareJoystickMap_InputManager (Rewired.Data.Mapping.HardwareJoystickMap,Rewired.InputSource,Rewired.InputPlatform,int) 000001053410E360 - 000001053410E840 000001053453492D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T) 00000105342DD490 - 00000105342DD540 000001053453BFAB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:DeepClone () 000001053413C3C0 - 000001053413C430 0000010534535510
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform) 000001053413C430 - 000001053413C510 0000010534535514
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform) 000001053413A6A0 - 000001053413A7A0 0000010534535481
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:DeepClone () 000001053413AB00 - 000001053413AB70 0000010534535498
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base) 000001053413AB70 - 000001053413AC70 000001053453549C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/MatchingCriteria:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base) 0000010534133C30 - 0000010534133D00 00000105345352BD
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:ShallowCopy<T> (T[]) 00000105342C29F0 - 00000105342C2B20 000001053453B848
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:DeepClone () 000001053413B2A0 - 000001053413B310 00000105345354B4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base) 000001053413B310 - 000001053413B430 00000105345354B8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base) 000001053410EEE0 - 000001053410EF40 000001053453495D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:DeepClone () 000001053410FA50 - 000001053410FA90 0000010534534994
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:.ctor (Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement) 000001053410F920 - 000001053410F9B0 000001053453498F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:ImportVars (Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement) 000001053410FA90 - 000001053410FB30 0000010534534998
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:ShallowCopy<int> (int[]) 00000105342EA860 - 00000105342EA990 000001053453C34D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:DeepClone () 000001053413B560 - 000001053413B5D0 00000105345354D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 000001053413B5D0 - 000001053413B630 00000105345354D4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Axis:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010534133EE0 - 0000010534134110 00000105345352D1
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareAxisInfo:DeepClone () 00000105340D3B40 - 00000105340D3BC0 00000105345338A0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:DeepClone () 000001053413B440 - 000001053413B4F0 00000105345354C4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 000001053413B4F0 - 000001053413B550 00000105345354CA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Button:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010534133E30 - 0000010534133ED0 00000105345352CB
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T[]) 00000105342DD610 - 00000105342DD770 000001053453BFB3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:ToGuid (string) 00000105342CE290 - 00000105342CE350 000001053453BB4F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_assignedButtonCount () 0000010534138110 - 0000010534138190 00000105345353F3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:get_buttonCount () 000001053413AC80 - 000001053413ACF0 00000105345354A6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_assignedAxisCount () 0000010534138190 - 0000010534138210 00000105345353F5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:get_axisCount () 000001053413ACF0 - 000001053413AD60 00000105345354A8
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareJoystickMap_InputManager:.ctor (Rewired.HardwareControllerMapIdentifier,Rewired.Data.Mapping.HardwareJoystickMap/Platform,string,int,int,int) 00000105341DCDE0 - 00000105341DCED0 0000010534537A72
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IsElementIdentifierMapped (int) 00000105341390D0 - 0000010534139530 0000010534535435
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IterateAxes () 0000010534138A10 - 0000010534138A80 0000010534535419
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_ManagedThreadId () 0000010531D24A00 - 0000010531D24AC0 0000010531FE110B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.Collections.Generic.IEnumerable<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Axis>.GetEnumerator () 000001053413B640 - 000001053413B790 00000105345354DA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:MoveNext () 000001053413B7B0 - 000001053413BAD0 00000105345354E2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.Collections.Generic.IEnumerator<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Axis>.get_Current () 000001053413BAD0 - 000001053413BB00 00000105345354E8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.IDisposable.Dispose () 000001053413BB30 - 000001053413BB40 00000105345354EC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetEffectiveElementIdentifierType (Rewired.ControllerElementIdentifier) 000001053413A520 - 000001053413A5A0 0000010534535479
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:GetEffectiveElementIdentifierType (Rewired.ControllerElementIdentifier) 000001053413AD60 - 000001053413AF90 00000105345354AA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IterateButtons () 0000010534138A80 - 0000010534138AF0 000001053453541D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.Collections.Generic.IEnumerable<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Button>.GetEnumerator () 000001053413BBF0 - 000001053413BD50 00000105345354F2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:MoveNext () 000001053413BD70 - 000001053413C060 00000105345354FA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.Collections.Generic.IEnumerator<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Button>.get_Current () 000001053413C060 - 000001053413C090 0000010534535500
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.IDisposable.Dispose () 000001053413C0C0 - 000001053413C0D0 0000010534535504
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:XmZTpZLIBAsdwonMQQJXzZzYons () 00000105341AA190 - 00000105341AA470 0000010534536DA6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_Axes () 0000010534138290 - 0000010534138450 00000105345353FB
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:HwKsyLnlHhQQvnvgPHdLiWrUHFv (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Axis) 00000105341AA970 - 00000105341AAB30 0000010534536DB8
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:GetAxisValue (int) 00000105340F9710 - 00000105340F97E0 00000105345343EF
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:uApTxWmfjWMbLpoUiAZieHDHMpx () 00000105341AA470 - 00000105341AA730 0000010534536DAC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_Buttons () 0000010534138450 - 0000010534138600 0000010534535401
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:zpBEioHLPACRdjjdpAFUFhrsUHk (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Button) 00000105341AA730 - 00000105341AA910 0000010534536DB2
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:GetButtonValue (int) 00000105340F97E0 - 00000105340F98F0 00000105345343F1
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:HSYzVmCPInrKoJrFHbgLptOESBW (int,int,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>) 00000105341A7300 - 00000105341A7700 0000010534536D2B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Sort (System.Comparison`1<T>) 0000010531D35150 - 0000010531D35240 0000010531FE15F9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl<T> (T[],int,System.Comparison`1<T>) 00000105319D73C0 - 00000105319D74B0 0000010531FCF81E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483655' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:qsort<T> (T[],int,int,System.Comparison`1<T>) 00000105319D7CC0 - 00000105319D7EC0 0000010531FCF82D
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:IHaBzHCghkYrZPLzUuCiwCWArhLj (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ) 00000105341AB190 - 00000105341AB380 0000010534536DE4
    Mono: Assembly Ref addref Pathfinding.Ionic.Zip.Reduced 0000020610027060 -> System 000002060D5A2230: 5
    Mono: Assembly Ref addref Pathfinding.Ionic.Zip.Reduced 0000020610027060 -> mscorlib 000002060D4A3DF0: 12
    Mono: AOT FOUND AOT compiled code for System.Nullable`1<long>:GetValueOrDefault () 0000010533EE6F60 - 0000010533EE6FD0 0000010533F41C53
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483656' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:swap<T> (T[],int,int) 00000105319D8290 - 00000105319D8350 0000010531FCF838
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:DTAugjZNTjJJjMhOvAGAguWNNIa (int,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL/CndGqxdMAppWObTDcEGyJVkeGWhE) 00000105341A7F60 - 00000105341A8240 0000010534536D50
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:LfIydlYVfHVeLVxECMEhIBWBFRd (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL/CndGqxdMAppWObTDcEGyJVkeGWhE) 00000105341ABC60 - 00000105341ABDE0 0000010534536DF8
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:aYiAxHaSFzkEdGZRVTfnEctlcrLW (System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>) 00000105341A79D0 - 00000105341A7B30 0000010534536D44
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:gDzyeHpnFFFJTXIoymUbFAiVXvY (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ) 00000105341AB450 - 00000105341ABB20 0000010534536DEE
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:KLvEfiBtEiZIABoHhXQSXIinILi (int,int) 00000105341ABF00 - 00000105341AC070 0000010534536E00
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:xZyXOBiNUYHQSqMuQXClsgJcPTv (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ) 00000105341AB0F0 - 00000105341AB190 0000010534536DE2
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:rjTYywpgayUZTpIWroOdBfgcCSK (Rewired.UpdateControllerInfoEventArgs) 00000105342582F0 - 0000010534258340 00000105345399DF
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:BSSNtnWryRyuDUwoqseVvqJNddY (Rewired.UpdateControllerInfoEventArgs) 000001053419A970 - 000001053419ABF0 0000010534536A5F
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_rewiredId () 00000105341A9100 - 00000105341A9130 0000010534536D6C
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:DvujOiDiZtdiEmADfrdQYLyicdi (int,ThYjtQgRQvCxZGbNYUbsMKnGOTx/YHgqrgupdZenOKhbzrOHBPaSxCHY) 000001053419AC30 - 000001053419AE60 0000010534536A69
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:CmFEKOidZkhdqFfZtyzUijuCbfse (System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,bool) 00000105341A8A30 - 00000105341A8D30 0000010534536D5A
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:eek:GpLbkdUtqtSdAsoWMhNWPqlWVq (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,bool) 00000105341A8D30 - 00000105341A8E30 0000010534536D5E
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:NRQqgJFqBnEYqEeILgkyHFLRXFJ (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,bool) 00000105341A8E30 - 00000105341A8FE0 0000010534536D62
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:ToBridgedController () 00000105341AA0A0 - 00000105341AA130 0000010534536D9C
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareJoystickMap_InputManager:ToGameHardwareControllerMap () 00000105341DCED0 - 00000105341DD770 0000010534537A76
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetGameElementIdentifierIdMappings (int[]&,int[]&) 0000010534139530 - 0000010534139A30 000001053453544F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetAxisCalibrationData () 0000010534139A30 - 000001053413A110 0000010534535469
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetAxisData (Rewired.AxisRange[]&,Rewired.Data.Mapping.HardwareAxisInfo[]&) 000001053413A110 - 000001053413A520 000001053453546F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T,bool) 00000105342DD540 - 00000105342DD610 000001053453BFAF
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_elements_base () 00000105341388D0 - 0000010534138900 0000010534535411
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:Add (int) 0000010532BE27E0 - 0000010532BE2900 0000010532D7E751
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:GrowIfNeeded (int) 0000010532BE2900 - 0000010532BE29C0 0000010532D7E757
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:set_Capacity (int) 0000010532BE5540 - 0000010532BE55C0 0000010532D7E8EB
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<int> (int[]&,int) 0000010532C370E0 - 0000010532C37140 0000010532D804FE
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<int> (int[]&,int,int) 0000010532C42C10 - 0000010532C42CE0 0000010532D809DE
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:IENSPzqJChjqKNSJMbECYzYkHjk (Rewired.BridgedController) 0000010534257CE0 - 0000010534257F00 00000105345399B3
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:vmTCgAloVPQKpDMEoEHmRZwdLZz (Rewired.BridgedController) 00000105341A4240 - 00000105341A4540 0000010534536C60
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:.ctor (Rewired.BridgedController) 00000105340EFE30 - 00000105340F0400 0000010534534183
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_name () 00000105341A91E0 - 00000105341A92E0 0000010534536D74
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:Clone () 00000105342E78A0 - 00000105342E78E0 000001053453C274
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:.ctor (Rewired.Platforms.XboxOne.XboxOneGamepadExtension) 00000105342E60D0 - 00000105342E6180 000001053453C230
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetAxis2DData (int) 00000105341DC8A0 - 00000105341DCAC0 0000010534537A64
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetAxisIndex (int) 00000105341DC1B0 - 00000105341DC2C0 0000010534537A52
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:.ctor (string,Rewired.Controller/Axis,Rewired.Controller/Axis,int,int,Rewired.CalibrationMap) 00000105340DD330 - 00000105340DD410 0000010534533C62
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:.ctor (string,Rewired.CompoundControllerElementType) 00000105340DBF00 - 00000105340DBFB0 0000010534533C16
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_elementCapacity () 00000105340DCF20 - 00000105340DCF30 0000010534533C50
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:dBRSDcMSCqbbrGSmqWfeibbMgfM (Rewired.Controller/Element,int) 00000105340DC4A0 - 00000105340DC650 0000010534533C26
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:MlFNOtuTuVrIJzUJEvUGpceTqab (Rewired.Controller/Element) 00000105340DC7B0 - 00000105340DC970 0000010534533C3C
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:szXIIdGptawjIKqtsmxWhSqWDkI () 00000105340DCDA0 - 00000105340DCEC0 0000010534533C4A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:EHgMmeLDawvxhNBbSinqFpKKNRBA (Rewired.Controller/Element,int,int) 00000105340DC970 - 00000105340DCB50 0000010534533C40
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element:AhbgPrYGWFWGezVUEGpGkFElcXA () 00000105340D7B70 - 00000105340D7BE0 0000010534533ADA
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:qlakjiUEBpCvpmRcpEPTsfodSNg (Rewired.Joystick) 00000105341B51F0 - 00000105341B55B0 0000010534536F8B
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:iDHKdFSbiQpGpdkMMdSVKKakiRnO (Rewired.Joystick) 00000105341B73B0 - 00000105341B77E0 0000010534536FF4
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:IlloQJVByIXOKCTtmFQqmJxsPwP () 00000105341B7BA0 - 00000105341B7E80 0000010534536FFC
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:iRBseKhVoZjevzArbzVxZwxnRhl (Rewired.Joystick) 00000105341B77E0 - 00000105341B7BA0 0000010534536FF8
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:nzHMMmZsCKIVRGwPvqkuqMwlnRz (Rewired.ControllerStatusChangedEventArgs) 00000105342580A0 - 0000010534258190 00000105345399C5
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:xasFrXfHZipbvEbMAXlfluuCfrv (Rewired.Joystick,Rewired.Joystick) 00000105340F2030 - 00000105340F2110 000001053453420B
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:get_inputManagerId () 00000105340EFCA0 - 00000105340EFD00 000001053453417D
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_inputManagerId () 00000105341A9170 - 00000105341A91A0 0000010534536D70
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:cMkknAJkHTYFjllVkKNeHYYokFo () 00000105341A7220 - 00000105341A7300 0000010534536D27
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 000001053419A5B0 - 000001053419A6D0 0000010534536A57
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB:pwBdWMCYAQPaOfIhQvRIYhRzvWO () 000001053418D3C0 - 000001053418D5A0 000001053453672C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.ExpandableArray_DataContainer`1:Clear () 0000010534186160 - 0000010534186360 000001053453656A
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:iciIaohgmOGHcKpGRuhQPqhuBjXb (Rewired.UpdateLoopType) 00000105341A2BC0 - 00000105341A31D0 0000010534536C44
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:UpdateControllerData (int,Rewired.ControllerDataUpdater) 00000105341A6950 - 00000105341A6B20 0000010534536D09
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:FillData (Rewired.ControllerDataUpdater) 00000105341A9D00 - 00000105341AA010 0000010534536D92
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:UpdateData (Rewired.UpdateLoopType) 00000105340F12F0 - 00000105340F1320 00000105345341DC
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:UpdateData (Rewired.UpdateLoopType) 00000105340E4ED0 - 00000105340E5690 0000010534533DF5
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:UpdateData (Rewired.UpdateLoopType) 00000105340D75E0 - 00000105340D7770 0000010534533AC2
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:FMUdGJzIXOZLSzRuMdVfYGCVEmf (Rewired.UpdateLoopType,int,Rewired.ControllerDataUpdater) 00000105340DB200 - 00000105340DB4C0 0000010534533BE0
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element/rLtXVOsPnPLUXiVCeWRtKqSwdFP:set_updateLoop (Rewired.UpdateLoopType) 00000105340D7CA0 - 00000105340D7E20 0000010534533AE4
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv/zgBdWDIjAJnatXklyDhIAfXDqso:FMUdGJzIXOZLSzRuMdVfYGCVEmf (bool) 00000105340DBA00 - 00000105340DBB40 0000010534533C00
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:pwBdWMCYAQPaOfIhQvRIYhRzvWO (bool) 00000105340C7C00 - 00000105340C7DB0 0000010534533666
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:UpdateData (Rewired.UpdateLoopType) 00000105342E7800 - 00000105342E7820 000001053453C26E
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:pCYKQoRdZRNNZxwIiGEqGDPlJcJ () 00000105342E78E0 - 00000105342E7A40 000001053453C278
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Utility.TimerAbs:Update () 00000105342BA4F0 - 00000105342BA5D0 000001053453B65C
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_checkNeverPressed () 0000010534256350 - 0000010534256490 000001053453984A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:igGWfALZRKmUqEHsKEIHKgHJpjG (Rewired.UpdateLoopType) 00000105340D9080 - 00000105340D9170 0000010534533B4D
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:GetAxis (int) 00000105341BAE60 - 00000105341BAF60 000001053453716D
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:set_valueRaw (single) 00000105340D8490 - 00000105340D8540 0000010534533B03
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm/fmyGjvAzXrwFcbcxaaVHjqMicBE:fDdVbuEjEJOyuKDkYKtaqpXUdCE (single) 00000105340D9DE0 - 00000105340D9F30 0000010534533B7A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:qXOoAzpzbjGQtBTMJVAgFkmAIiOb () 00000105340D94A0 - 00000105340D9570 0000010534533B5B
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:cswAZWCaSZCkpDqKYebjvWlInraV () 00000105340DD410 - 00000105340DD590 0000010534533C66
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:jAkjdUCmVcwOglBLwNzaeNRQbsFD () 00000105340DD590 - 00000105340DD960 0000010534533C6A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:LVxIniEvulBwkGGhVxrxGbwuhaP<T> (int,int&) 00000105340DC2A0 - 00000105340DC4A0 0000010534533C22
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:get_valueRaw () 00000105340D83F0 - 00000105340D8490 0000010534533AFF
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:mQPzmioHVAmntRBiFcvdHurYBNGC (int,int,single,single,Rewired.DeadZone2DType) 00000105341BC3C0 - 00000105341BD420 00000105345371C5
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:TransformAxis2DComponentValue (single,single,single,single) 00000105342C1280 - 00000105342C1510 000001053453B80D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Approximately (single,single) 00000105342CEC70 - 00000105342CEF20 000001053453BB85
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:ValueInNewRange (single,single,single,single,single) 00000105342D00E0 - 00000105342D02D0 000001053453BBBD
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector2:get_magnitude () 0000010532138490 - 0000010532138560 0000010532668BD0
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:ApplySensitivity (single,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 00000105342C2040 - 00000105342C2250 000001053453B81B
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_xAxis () 00000105340DCF30 - 00000105340DCF60 0000010534533C52
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:HGxoDNXdCfYJyVJvIjJUhgzvojS<T> (int) 00000105340DC110 - 00000105340DC2A0 0000010534533C1E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:FsLvJPvqUfGmQiSSVOeFgZdBGdbu (single) 00000105340D8ED0 - 00000105340D8FB0 0000010534533B43
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_yAxis () 00000105340DCF60 - 00000105340DCF90 0000010534533C56
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:mlSDjipXXJUdCumNgYXwOchLvEt () 00000105340D9570 - 00000105340D9630 0000010534533B5F
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm/fmyGjvAzXrwFcbcxaaVHjqMicBE:pwBdWMCYAQPaOfIhQvRIYhRzvWO (bool) 00000105340D9970 - 00000105340D9DE0 0000010534533B75
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:IsNear (single,single,single) 00000105342CF620 - 00000105342CF780 000001053453BBA1
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:pCYKQoRdZRNNZxwIiGEqGDPlJcJ () 00000105340F1890 - 00000105340F1A10 00000105345341FD
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:UpdateData (Rewired.UpdateLoopType) 00000105340F4AD0 - 00000105340F4B00 00000105345342B6
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:jIHSnAvSMaRZKNkRfcASKueijPS () 00000105340F6050 - 00000105340F6770 00000105345342F0
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:get_value () 00000105340DA190 - 00000105340DA220 0000010534533B88
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:KdoSuxoCvwaulFJuHBDyCfxhnxbn (Rewired.ModifierKeyFlags) 00000105340F4790 - 00000105340F4930 00000105345342AE
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:UpdateMouseInputData (Rewired.ControllerDataUpdater) 000001053418E8A0 - 000001053418EAC0 0000010534536788
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetButton (string) 0000010532185800 - 0000010532185880 0000010532669DE4
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:NcrPoiLNTtcvIuoIqmTxQJcWnYJ () 00000105340D93B0 - 00000105340D94A0 0000010534533B57
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:ZSRISlzemUqpdKYpIZpYBGUFLzT (Rewired.UpdateLoopType) 00000105341A31D0 - 00000105341A3BB0 0000010534536C4C
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:nNtJisgwVkfsuGackwcyFEaBINz (Rewired.UpdateLoopType) 000001053418F600 - 000001053418F720 00000105345367E5
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV:XLooaBbXosHZOlocrbGXqfxAxET (Rewired.UpdateLoopType) 0000010534198870 - 0000010534198990 00000105345369CB
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:FhSWBgMaqfDFmahUJQZQpInthIR (int) 0000010534311590 - 0000010534311940 000001053453D3D4
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:Equals (int,int) 000001053429E3E0 - 000001053429E410 000001053453AECC
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:get_mousePosition () 0000010532185E80 - 0000010532185ED0 0000010532669E34
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:INTERNAL_get_mousePosition (UnityEngine.Vector3&) 0000010532185ED0 - 0000010532185F50 0000010532669E38
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector3:eek:p_Subtraction (UnityEngine.Vector3,UnityEngine.Vector3) 000001053213D8F0 - 000001053213DA20 0000010532668C88
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:GetMaps<T> (int) 00000105341F2790 - 00000105341F2A00 0000010534538169
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for object:ReferenceEquals (object,object) 00000105319A12A0 - 00000105319A12D0 0000010531FCEAE1
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:gQLFhTSUwUHoJZlWISymFpyxRic (System.Action`3<bool, int, int>) 00000105341EF3D0 - 00000105341EF420 00000105345380C7
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:nEfyYfEbkSXylDskLOERCJBjGQb<T, TMap> (Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO<T, TMap>,Rewired.ControllerType,System.Action`3<bool, int, int>) 00000105341F0450 - 00000105341F10B0 00000105345380E3
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:get_Count () 000001053424C3B0 - 000001053424C430 00000105345394F0
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:LwcphjICxtqaoYgsapHNyAXCDDQ (Rewired.Keyboard,oMnedyMNEAFhkilkpwqypTCEePUF,System.Action`3<bool, int, int>) 00000105341EF420 - 00000105341EFAA0 00000105345380CB
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:get_Count () 00000105341D40E0 - 00000105341D4180 00000105345378F3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:UsWCnwQDyNiSKrDuXhIRvhnEGrQ (Rewired.Mouse,System.Action`3<bool, int, int>) 00000105341EFAA0 - 00000105341F0400 00000105345380D4
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:mMKKlCUzrdmZvVpeOHmHGwgdJHx (System.Action`3<bool, int, int>) 00000105341F0400 - 00000105341F0450 00000105345380DF
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:eek:AOSddrRhpdwOmfhAJszpOaQVLZ () 000001053418F720 - 000001053418F770 00000105345367FA
    Mono: AOT FOUND AOT compiled code for Rewired.Dev.Tools.JoystickElementIdentifier:Update () 0000010534291EF0 - 0000010534291F70 000001053453AC0E
    Mono: AOT FOUND AOT compiled code for fLADjYxSxxHFBaJgRZTMqyoXsjx:Update () 0000010534293120 - 0000010534293AB0 000001053453ACA4
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:GetKeyDown (UnityEngine.KeyCode) 0000010532185BC0 - 0000010532185BE0 0000010532669E14
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetKeyDownInt (int) 0000010532185600 - 0000010532185680 0000010532669DD4
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_UnityInputHelper () 0000010534256220 - 00000105342562F0 0000010534539830
    Mono: AOT FOUND AOT compiled code for UNltfxhdhKOLwbwLcvCBRzXGoof:.ctor () 000001053418E0E0 - 000001053418E230 000001053453675A
    Mono: AOT FOUND AOT compiled code for UNltfxhdhKOLwbwLcvCBRzXGoof/qpdGyLoiafbiSfyHqDdyFSpqjJh:.ctor (int,int,int) 000001053418E6E0 - 000001053418E820 0000010534536774
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetUnityInputAxisName (int,int) 00000105342D98B0 - 00000105342D98E0 000001053453BEB7
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetUnityInputButtonName (int,int) 00000105342D9A30 - 00000105342D9A60 000001053453BECB
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetUnityInputButtonNameByJoystickId (int,int) 00000105342D9A60 - 00000105342D9BA0 000001053453BECF
    Mono: AOT FOUND AOT compiled code for UNltfxhdhKOLwbwLcvCBRzXGoof:GIneYEFaXnexuwypSxQCHeFiGYbo (int,int) 000001053418E230 - 000001053418E370 0000010534536762
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetAxis (string) 0000010532185700 - 0000010532185780 0000010532669DDC
    Mono: AOT FOUND AOT compiled code for fLADjYxSxxHFBaJgRZTMqyoXsjx:JKHnXxnPcksUQcnkzSlGUKQmpAl (string,object) 0000010534293AC0 - 0000010534293C10 000001053453ACD8
    Mono: AOT FOUND AOT compiled code for single:ToString () 00000105319BD2D0 - 00000105319BD310 0000010531FCF200
    Mono: AOT FOUND function 'ut_670' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:NumberToString (single,System.IFormatProvider) 0000010531AAD570 - 0000010531AAD720 0000010531FD3C1F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Init (string,double,int) 0000010531AAADC0 - 0000010531AAB1B0 0000010531FD3B6D
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Init (string) 0000010531AAA600 - 0000010531AAA8B0 0000010531FD3B53
    Mono: AOT FOUND AOT compiled code for System.BitConverter:.cctor () 0000010531A73020 - 0000010531A73090 0000010531FD23A1
    Mono: AOT FOUND AOT compiled code for System.BitConverter:GetBytes (double) 0000010531A73420 - 0000010531A735F0 0000010531FD23E6
    Mono: AOT FOUND AOT compiled code for System.BitConverter:GetBytes (byte*,int) 0000010531A731E0 - 0000010531A73270 0000010531FD23BD
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:GetNumberFormatInstance (System.IFormatProvider) 0000010531AAB9C0 - 0000010531AABA30 0000010531FD3B8F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FormatGeneral (int,System.Globalization.NumberFormatInfo) 0000010531AAF210 - 0000010531AAF450 0000010531FD3C5F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:get_IsFloatingSource () 0000010531AABBC0 - 0000010531AABC20 0000010531FD3B9F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:AppendDigits (int,int) 0000010531AB1A10 - 0000010531AB1EF0 0000010531FD3CB7
    Mono: AOT FOUND AOT compiled code for string:Concat (string[]) 00000105319B9950 - 00000105319B9A40 0000010531FCF134
    Mono: AOT FOUND AOT compiled code for UNltfxhdhKOLwbwLcvCBRzXGoof:GMsWRPeEaeiMNMWJmwblanQcaogc (int,int) 000001053418E540 - 000001053418E6B0 000001053453676E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.GUIText:set_text (UnityEngine.GUIText*,string) 0000010532227B70 - 0000010532227C20 000001053266CB0C
    Mono: AOT FOUND AOT compiled code for UnityEngine.Canvas:SendWillRenderCanvases () 000001053222E670 - 000001053222E6C0 000001053266CC79
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPreCull (UnityEngine.Camera) 000001053217DEB0 - 000001053217DF10 0000010532669A89
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPreRender (UnityEngine.Camera) 000001053217DF10 - 000001053217DF70 0000010532669A8F
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPostRender (UnityEngine.Camera) 000001053217DF70 - 000001053217DFD0 0000010532669A95
    Mono: AOT FOUND AOT compiled code for UnityEngine.Font:InvokeTextureRebuilt_Internal (UnityEngine.Font) 000001053222C400 - 000001053222C4A0 000001053266CBFB
    Mono: AOT FOUND AOT compiled code for UnityEngine.Event:Internal_MakeMasterEventCurrent (int) 0000010532233020 - 00000105322330F0 000001053266CDA9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:Init (UnityEngine.Event*,int) 00000105322361A0 - 0000010532236250 000001053266CE67
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:set_displayIndex (UnityEngine.Event*,int) 00000105322374C0 - 0000010532237570 000001053266CEA3
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:Internal_SetNativeEvent (intptr) 0000010532237390 - 0000010532237410 000001053266CE9F
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads:.cctor () 0000010532111030 - 00000105321110B0 00000105326681AC
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads/CallbackQueue:.ctor () 0000010532111630 - 00000105321116B0 00000105326681CD
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads:InvokeAllUnityMainThreadCallbacks () 0000010532111320 - 00000105321114F0 00000105326681BD
    Launch Activation Detected
    Mono: Assembly Ref addref UnityEngine 000002060E6C3B80 -> System 000002060D5A2230: 6
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:OnActivatedImpl (int,int,string,string,string) 0000010532290C80 - 0000010532290EB0 000001053266EB24
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_int_object_object_object (object,intptr,intptr,intptr) 00000105323DBDF0 - 00000105323DBED0 0000010532676AD9
    Mono: gc took 13137 usecsMono: gc took 13117 usecsMono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:NcrPoiLNTtcvIuoIqmTxQJcWnYJ (Rewired.AxisCalibration) 00000105340D9170 - 00000105340D93B0 0000010534533B51
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:GetCalibratedValue (single,Rewired.AxisRange,single) 00000105341BE6A0 - 00000105341BE9F0 0000010534537205
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:GetCalibratedAxisValueClamped (single,single,single,single,single,bool,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 00000105342C1510 - 00000105342C1AB0 000001053453B811
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:InitialFloatingPrecision () 0000010531AAA3E0 - 0000010531AAA530 0000010531FD3B4B
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:GetTenPowerOf (int) 0000010531AA9CE0 - 0000010531AA9D20 0000010531FD3B1B
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:InitDecHexDigits (ulong) 0000010531AA9DB0 - 0000010531AA9EB0 0000010531FD3B25
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:ToDecHex (int) 0000010531AAA190 - 0000010531AAA200 0000010531FD3B37
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FastToDecHex (int) 0000010531AAA0E0 - 0000010531AAA190 0000010531FD3B2D
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:CountTrailingZeros () 0000010531AAC440 - 0000010531AAC570 0000010531FD3BC3
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:CountTrailingZeros (uint) 0000010531AAC570 - 0000010531AAC620 0000010531FD3BC7
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Append (char) 0000010531AAB630 - 0000010531AAB730 0000010531FD3B83
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Append (string) 0000010531AAB850 - 0000010531AAB9C0 0000010531FD3B8B
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector2:Normalize () 0000010532137D10 - 0000010532137E40 0000010532668BB8
    Mono: gc took 13180 usecsMono: gc took 13111 usecsMono: gc took 13159 usecsMono: gc took 13076 usecsMono: gc took 13248 usecsMono: gc took 13112 usecsMono: gc took 13227 usecsMono: gc took 13121 usecsMono: gc took 13189 usecsMono: gc took 13223 usecsMono: gc took 13251 usecsMono: gc took 13190 usecsMono: gc took 13186 usecsMono: gc took 13196 usecsMono: gc took 13194 usecsMono: gc took 13248 usecsMono: gc took 13144 usecsMono: gc took 13181 usecsMono: gc took 13205 usecsMono: gc took 13149 usecsMono: gc took 13216 usecsMono: gc took 13143 usecsMono: gc took 13185 usecsMono: gc took 13133 usecsMono: gc took 13151 usecsMono: gc took 13340 usecsMono: gc took 13178 usecsMono: gc took 13246 usecsMono: gc took 13238 usecsMono: gc took 13184 usecsMono: gc took 13255 usecsMono: gc took 13288 usecsMono: gc took 13238 usecsMono: gc took 13208 usecsMono: gc took 13255 usecsMono: gc took 13193 usecsMono: gc took 13188 usecsMono: gc took 13306 usecsMono: gc took 13188 usecsMono: gc took 13217 usecsMono: GC Warning: Removing nonexistent thread 308
    Mono: gc took 13274 usecsMono: gc took 13231 usecsMono: gc took 13198 usecsMono: GC Warning: Removing nonexistent thread 292
    Mono: gc took 13308 usecsMono: gc took 13253 usecs** CONSTRAINED MODE NOTIFICATION **
    Window has lost focus
    Mono: gc took 13188 usecsMono: gc took 13201 usecsMono: gc took 13295 usecsMono: gc took 13157 usecsMono: gc took 13164 usecsMono: gc took 13193 usecsMono: gc took 13304 usecsMono: gc took 13181 usecsMono: gc took 13275 usecsMono: gc took 13312 usecsMono: gc took 13363 usecs** CONSTRAINED MODE NOTIFICATION **
    Window has gained focus
    Mono: gc took 13253 usecsMono: gc took 13226 usecsMono: gc took 13269 usecsMono: gc took 13311 usecsMono: gc took 13247 usecsMono: gc took 13213 usecsMono: gc took 13159 usecsMono: gc took 13189 usecsMono: gc took 13331 usecsMono: gc took 13183 usecsMono: gc took 13293 usecsMono: gc took 13176 usecsMono: gc took 13284 usecsMono: gc took 13219 usecsMono: gc took 13352 usecsMono: gc took 13246 usecsMono: gc took 13132 usecsMono: gc took 13128 usecsMono: gc took 13183 usecsMono: gc took 13332 usecsMono: gc took 13276 usecsMono: gc took 13154 usecsMono: gc took 13275 usecsMono: gc took 13245 usecsMono: gc took 13111 usecsMono: gc took 13420 usecsMono: gc took 13218 usecsMono: gc took 13176 usecsMono: gc took 13221 usecsMono: gc took 13089 usecsMono: gc took 13274 usecsMono: gc took 13149 usecsMono: gc took 13311 usecsMono: gc took 13188 usecsMono: gc took 13197 usecsMono: gc took 13281 usecsMono: gc took 13257 usecsMono: gc took 13124 usecsMono: gc took 13144 usecsMono: gc took 13222 usecsMono: gc took 13299 usecsMono: GC Warning: Removing nonexistent thread 300
    Mono: gc took 13252 usecsMono: gc took 13298 usecsMono: gc took 13233 usecsMono: gc took 13181 usecsMono: gc took 13225 usecsMono: gc took 13208 usecsMono: gc took 13331 usecsMono: gc took 13179 usecsMono: gc took 13193 usecsMono: gc took 13231 usecsMono: gc took 13171 usecsMono: gc took 13202 usecsMono: gc took 13137 usecsMono: gc took 13220 usecsMono: gc took 13147 usecsMono: gc took 13168 usecsMono: gc took 13255 usecsMono: gc took 13159 usecsMono: gc took 13195 usecsMono: gc took 13208 usecsMono: gc took 13138 usecsMono: gc took 13407 usecsMono: gc took 13183 usecsMono: gc took 13183 usecsMono: gc took 13170 usecsMono: gc took 13151 usecsMono: gc took 13172 usecsMono: gc took 13144 usecsMono: gc took 13209 usecsMono: gc took 13140 usecsMono: gc took 13253 usecsMono: gc took 13213 usecsMono: gc took 13318 usecsMono: gc took 13183 usecsMono: gc took 13075 usecsMono: gc took 13263 usecsMono: gc took 13121 usecsMono: gc took 13182 usecsMono: gc took 13214 usecsMono: gc took 13214 usecsMono: gc took 13221 usecsMono: gc took 13185 usecsMono: gc took 13253 usecsMono: gc took 13208 usecsMono: gc took 13192 usecsMono: gc took 13235 usecsMono: gc took 13255 usecsMono: gc took 13162 usecsMono: gc took 13184 usecsMono: gc took 13206 usecsMono: gc took 13149 usecsMono: gc took 13182 usecsMono: gc took 13128 usecsMono: gc took 13156 usecsMono: gc took 13287 usecsMono: gc took 13170 usecsMono: gc took 13264 usecsMono: gc took 13401 usecsMono: gc took 13259 usecsMono: gc took 13179 usecsMono: gc took 13147 usecsMono: gc took 13199 usecs** CONSTRAINED MODE NOTIFICATION **
    Window has lost focus
    Mono: gc took 13143 usecsMono: gc took 13389 usecs** SUSPEND RECEIVED SHUT DOWN PROCESS RUNNING **
    . Waiting on user to finish saving
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:SuspendingEventResult () 00000105322909A0 - 00000105322909F0 000001053266EB0E
    Mono: gc took 13125 usecs . Shutting down GFX
    ++++++++++++++++ [ WARNING ] +++++++++++++++++++
    +
    + POTENTIAL SUSPEND TIME VIOLATION
    + App must not take more than 1 second
    +
    + Suspend watchdog indicates you took:
    + [ 1.922635 ] seconds to suspend
    +
    ++++++++++++++++ [ WARNING ] +++++++++++++++++++
     
  27. DanielSnd

    DanielSnd

    Joined:
    Sep 4, 2013
    Posts:
    382
    I see, thanks ^^ I didn't notice you mentioning the workaround inf your last post. Just messaged through support requesting early access to download it :D You're awesome! Great support!
     
    guavaman likes this.
  28. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    @Tomdominer

    That error is because you have the JoystickElementIdentifier in the scene on Xbox One. That tool does not work on the Xbox One platform in Native mode, simply because there was no need to add an Xbox One Joystick Element Identifier tool because it's all Unity input anyway and there's only one gamepad layout. If you were previously using the JoystickElementIdentifier tool on Xbox One and it didn't show you this error, that proves it was falling back to Unity input instead of using the pseudo-native input which includes the use of UnityEngine.XboxOneInput as well.

    If you look at my instructions above, i said to use the DevTools/UnityJoystickElementIdentifier, not the DevTools/JoystickElementIdentifier. The first tool always only uses UnityEngine.Input as the source. The second tool loads a platform-specific tool for the current build target.

    The solution to your issue is to simply remove the JoystickElementIdentifier tool from the scene and try again. There's no need to have any tool in the scene for that debug code to show the important information. However, you must have your real game's Rewired Input Manager in the scene we can see what joysticks are found and what maps are being loaded. And make sure the code can be run after the joysticks have been detected because they may not be detected on Awake/Start on this platform. (Use a coroutine or something to delay running the code for a second or so, or make it only run the code when you press a button, or on ReInput.ControllerConnectedEvent.)
     
    Last edited: Sep 4, 2016
  29. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    To make it easier, I made a CS file for you. Just add this to some object in a scene of your game, build to Xbox One, and post the log file. It will debug log information after 2 seconds and whenever a joystick is connected.
     

    Attached Files:

  30. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    Ok, here is the new Xbox One log file using my Input Manager and your new debug script.

    Unity for Xbox built on XDK 693765307.
    PlayerConnection initialized from G:/Data (debug = 0)
    PlayerConnection initialized network socket : 0.0.0.0 4600
    Multi-casting "[IP] 192.168.0.22 [Port] 4600 [Flags] 2 [Guid] 95738185 [EditorId] 3617938106 [Version] 1048832 [Id] XboxOnePlayer(192.168.0.22):4601 [Debug] 0" to [225.0.0.222:34997]...
    Socket: bind failed, error: Unknown error(10013)

    (Filename: C:\buildslave\unity\build\Runtime/Network/Sockets.cpp Line: 421)

    The above line (Multi-casting/Socket bind failed 10013) indicates you don't have port UDP 34997 exempted in your manifest, so profiling and script debugging won't work. See "Multiplayer->Overview" in the XboxOne Plugins docs for more information.

    GfxDevice: creating device client; threaded=1
    XboxOne Direct3D:
    Version: Xbox One Direct3D 11.1
    Renderer: Microsoft Xbox One Renderer (ID=0x0)
    Vendor: Microsoft
    VRAM: 6144 MB
    Mono debug trace mode 5
    Initialize mono
    Mono path[0] = 'G:/Data/Managed'
    Mono config path = 'G:/Data/Managed'
    Mono: Config attempting to parse: 'G:\Data\Managed\mono\config'.Mono: Config attempting to parse: 'game:\Media\.mono/config'.PlayerConnection already initialized - listening to [192.168.0.22:4600]
    Mono: gc took 64 usecsMono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: Image addref mscorlib 0000020435169D30 -> G:\Data\Managed\mscorlib.dll 00000204351EE110: 2
    Mono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: AOT loaded AOT Module for G:\Data\Managed\mscorlib.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\mscorlib.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\mscorlib.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\mscorlib\mscorlib.config'.Mono: AOT FOUND function 'generic_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'restore_context' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'call_filter' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rethrow_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_8' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_pending_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'throw_corlib_exception' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.OutOfMemoryException:.ctor (string) 0000010770F146E0 - 0000010770F14730 0000010771433D38
    Mono: AOT FOUND function 'generic_trampoline_6' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this___object (object,intptr,intptr,intptr) 00000107711CDF10 - 00000107711CDFE0 000001077144279E
    Mono: AOT FOUND AOT compiled code for System.NullReferenceException:.ctor (string) 0000010770F09A90 - 0000010770F09AE0 0000010771433AFC
    Mono: AOT FOUND AOT compiled code for System.StackOverflowException:.ctor (string) 0000010770F16CF0 - 0000010770F16D10 0000010771433E0B
    Mono: Assembly mscorlib 0000020435169D30 added to domain Unity Root Domain, ref_count=1
    Initialize engine version: 5.4.0p2 (38a9e1a3db04)
    Begin MonoManager ReloadAssembly
    Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.dll'.Platform assembly: G:\Data\Managed\UnityEngine.dll (this message is harmless)
    Mono: Image addref UnityEngine 000002043BABE3C0 -> G:\Data\Managed\UnityEngine.dll 000002043B8914B0: 2
    Mono: Assembly UnityEngine 000002043BABE3C0 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.dll'.Platform assembly: G:\Data\Managed\System.dll (this message is harmless)
    Mono: Image addref System 000002043BABEF30 -> G:\Data\Managed\System.dll 000002043B889040: 2
    Mono: Assembly System 000002043BABEF30 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Mono.Security.dll'.Platform assembly: G:\Data\Managed\Mono.Security.dll (this message is harmless)
    Mono: Image addref Mono.Security 000002043CA2B7B0 -> G:\Data\Managed\Mono.Security.dll 000002043C9E3700: 2
    Mono: Assembly Mono.Security 000002043CA2B7B0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Mono.Security.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Mono.Security.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Mono.Security.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Mono.Security\Mono.Security.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Configuration.dll'.Platform assembly: G:\Data\Managed\System.Configuration.dll (this message is harmless)
    Mono: Image addref System.Configuration 000002043CA4F630 -> G:\Data\Managed\System.Configuration.dll 000002043C9D1530: 2
    Mono: Assembly System.Configuration 000002043CA4F630 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Xml.dll'.Platform assembly: G:\Data\Managed\System.Xml.dll (this message is harmless)
    Mono: Image addref System.Xml 000002043CA59D10 -> G:\Data\Managed\System.Xml.dll 000002043C9D1B00: 2
    Mono: Assembly System.Xml 000002043CA59D10 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\System.Xml.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Xml.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Xml.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Xml\System.Xml.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Security.dll'.Platform assembly: G:\Data\Managed\System.Security.dll (this message is harmless)
    Mono: Image addref System.Security 000002043CA7F580 -> G:\Data\Managed\System.Security.dll 000002043C9D2690: 2
    Mono: Assembly System.Security 000002043CA7F580 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\System.Security.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Security.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Security.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Security\System.Security.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.Configuration.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Configuration.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Configuration.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Configuration\System.Configuration.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System\System.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Core.dll'.Platform assembly: G:\Data\Managed\System.Core.dll (this message is harmless)
    Mono: Image addref System.Core 000002043CA7FD00 -> G:\Data\Managed\System.Core.dll 000002043CAAD160: 2
    Mono: Assembly System.Core 000002043CA7FD00 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Mono.Posix.dll'.Platform assembly: G:\Data\Managed\Mono.Posix.dll (this message is harmless)
    Mono: Image addref Mono.Posix 000002043CA7F4C0 -> G:\Data\Managed\Mono.Posix.dll 000002043CAFA930: 2
    Mono: Assembly Mono.Posix 000002043CA7F4C0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Mono.Posix.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Mono.Posix.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Mono.Posix.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Mono.Posix\Mono.Posix.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\System.Core.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\System.Core.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\System.Core.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\System.Core\System.Core.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine\UnityEngine.config'.Mono: Assembly Ref addref UnityEngine 000002043BABE3C0 -> mscorlib 0000020435169D30: 2
    Mono: AOT FOUND AOT compiled code for UnityEngine.ClassLibraryInitializer:Init () 0000010771BCB210 - 0000010771BCB230 0000010771F9EF80
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr) 00000107711BCCB0 - 00000107711BCD60 00000107714421C5
    Mono: AOT FOUND AOT compiled code for UnityEngine.UnityLogWriter:Init () 0000010771AA51A0 - 0000010771AA5200 0000010771F997E5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_specific (intptr) 00000107712288C0 - 0000010771228940 0000010771444575
    Mono: AOT FOUND AOT compiled code for UnityEngine.UnityLogWriter:.ctor () 0000010771AA5100 - 0000010771AA5120 0000010771F997E1
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:.ctor () 0000010770FA4CC0 - 0000010770FA4D30 000001077143709B
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:.cctor () 0000010770FA4DC0 - 0000010770FA4E20 00000107714370A3
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter/NullTextWriter:.ctor () 0000010770FA61E0 - 0000010770FA6200 0000010771437162
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_NewLine () 0000010770EF95C0 - 0000010770EF9630 00000107714335C5
    Mono: AOT FOUND AOT compiled code for string:ToCharArray (int,int) 0000010770E10DB0 - 0000010770E10F90 000001077142EF84
    Mono: AOT FOUND AOT compiled code for string:.cctor () 0000010770E10420 - 0000010770E104B0 000001077142EF2D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:GetLOSLimit () 0000010770E1BF10 - 0000010770E1BF80 000001077142F1B6
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_specific (intptr,int) 000001077122B760 - 000001077122B7E0 000001077144462B
    Mono: AOT FOUND AOT compiled code for System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle) 0000010770E472D0 - 0000010770E473B0 000001077142FD49
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr) 0000010770E47250 - 0000010770E472D0 000001077142FD47
    Mono: AOT FOUND AOT compiled code for System.Console:SetOut (System.IO.TextWriter) 0000010770ED6CB0 - 0000010770ED6D20 000001077143252C
    Mono: AOT FOUND function 'delegate_invoke_impl_has_target' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'delegate_invoke_impl_target_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_7' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Console:.cctor () 0000010770ED6060 - 0000010770ED67A0 0000010771432482
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_fast (intptr) 000001077122B8E0 - 000001077122B960 0000010771444631
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Text.Encoding:InternalCodePage (int&) 0000010771168B00 - 0000010771168B80 0000010771440918
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:.cctor () 0000010771165A20 - 0000010771166240 000001077144078E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_ptrfree_box (intptr) 000001077122B650 - 000001077122B6D0 0000010771444627
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_new_ptrfree (intptr) 000001077122A4D0 - 000001077122A550 00000107714445E3
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:get_Default () 0000010771168B80 - 0000010771168DA0 000001077144091C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Monitor:Enter (object) 000001077117BF50 - 000001077117BFD0 0000010771440DB8
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:GetEncoding (string) 0000010771168170 - 00000107711685B0 00000107714408A7
    Mono: AOT FOUND AOT compiled code for string:ToLowerInvariant () 0000010770E17C60 - 0000010770E17D50 000001077142F0CB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:InternalAllocateStr (int) 0000010770E1BD90 - 0000010770E1BE10 000001077142F1AD
    Mono: AOT FOUND AOT compiled code for char:ToLowerInvariant (char) 0000010770E0FEA0 - 0000010770E0FF20 000001077142EEF6
    Mono: AOT FOUND AOT compiled code for char:.cctor () 0000010770E0E340 - 0000010770E0E3B0 000001077142EE1D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) char:GetDataTablePointers (byte*&,byte*&,double*&,uint16*&,uint16*&,uint16*&,uint16*&) 0000010770E0E6B0 - 0000010770E0E760 000001077142EE55
    Mono: AOT FOUND function 'generic_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'nullified_class_init_trampoline' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:InvokeI18N (string,object[]) 0000010771167390 - 0000010771167800 000001077144084C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.AppDomain:getCurDomain () 0000010770ECA470 - 0000010770ECA4E0 00000107714320C2
    Mono: AOT FOUND AOT compiled code for System.AppDomain:Load (string) 0000010770ECC480 - 0000010770ECC4B0 000001077143214A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.AppDomain:LoadAssembly (System.AppDomain*,string,System.Security.Policy.Evidence,bool) 0000010770ECB9F0 - 0000010770ECBAB0 000001077143213C
    Mono: Assembly Loader probing location: 'G:\Data\Managed\mono\gac\I18N\2.0.0.0__0738eb9f132ed756\I18N.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\I18N.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\mono\gac\I18N\2.0.0.0__0738eb9f132ed756\I18N.exe'.Mono: Assembly Loader probing location: 'G:\Data\Managed\I18N.exe'.Mono: AOT FOUND AOT compiled code for System.AppDomain:DoAssemblyResolve (string,bool) 0000010770ECE470 - 0000010770ECE810 00000107714321EE
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_object__this___object_sbyte (object,intptr,intptr,intptr) 00000107711D3B60 - 00000107711D3C30 0000010771442980
    Mono: AOT FOUND AOT compiled code for System.IO.FileNotFoundException:.ctor (string,string) 0000010770F8DEC0 - 0000010770F8DF20 0000010771436853
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr) 00000107711CD6C0 - 00000107711CD790 0000010771442775
    [308:] EXCEPTION handling: FileNotFoundException
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_thread_get_undeniable_exception () 0000010771228620 - 0000010771228690 000001077144456B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Monitor:Exit (object) 000001077117BFD0 - 000001077117C050 0000010771440DBA
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string) 0000010770E19040 - 0000010770E191B0 000001077142F11C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:GetExecutingAssembly () 0000010770FB2690 - 0000010770FB2700 0000010771437599
    Mono: AOT FOUND AOT compiled code for System.Reflection.Assembly:GetType (string) 0000010770FB0E00 - 0000010770FB0E30 0000010771437528
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:InternalGetType (System.Reflection.Assembly*,System.Reflection.Module,string,bool,bool) 0000010770FB0E30 - 0000010770FB0F00 000001077143752A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:internal_from_name (string,bool,bool) 0000010770E3C570 - 0000010770E3C600 000001077142F98D
    Mono: AOT FOUND function 'delegate_invoke_impl_target_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Reflection.Missing:.cctor () 0000010770FBEC40 - 0000010770FBEC70 00000107714379F6
    Mono: AOT FOUND AOT compiled code for System.Type:.cctor () 0000010770E3AEF0 - 0000010770E3AFE0 000001077142F8B1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_helper_ldstr_mscorlib (intptr) 000001077122AA80 - 000001077122AB00 00000107714445F9
    Mono: AOT FOUND AOT compiled code for string:Format (string,object) 0000010770E17F80 - 0000010770E17FE0 000001077142F0DF
    Mono: AOT FOUND AOT compiled code for string:FormatHelper (System.Text.StringBuilder,System.IFormatProvider,string,object[]) 0000010770E181B0 - 0000010770E18B20 000001077142F0F1
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:.ctor (int) 000001077116C040 - 000001077116C080 0000010771440A65
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:.ctor (string,int,int,int,int) 000001077116BBF0 - 000001077116C020 0000010771440A5F
    Mono: AOT FOUND AOT compiled code for string:parseFormatSpecifier (string,int&,int&,int&,bool&,string&) 0000010770E1A400 - 0000010770E1A780 000001077142F158
    Mono: AOT FOUND AOT compiled code for string:ToString () 0000010770E17F60 - 0000010770E17F70 000001077142F0D9
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:ToString () 000001077116C900 - 000001077116CB20 0000010771440A92
    Mono: AOT FOUND AOT compiled code for System.ArgumentException:.ctor (string,string) 0000010770ED1D80 - 0000010770ED1DE0 0000010771432325
    [308:] EXCEPTION handling: ArgumentException
    Encoding name 'CP1252' not supported
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:get_UTF8Unmarked () 0000010771168FF0 - 00000107711690C0 0000010771440964
    Mono: AOT FOUND AOT compiled code for System.Text.DecoderFallback:.cctor () 00000107711638F0 - 00000107711639A0 000001077144068F
    Mono: AOT FOUND AOT compiled code for System.Text.DecoderReplacementFallback:.ctor () 0000010771163BD0 - 0000010771163C00 00000107714406C3
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:.ctor (bool,bool) 0000010771173750 - 00000107711738C0 0000010771440C06
    Mono: AOT FOUND AOT compiled code for System.Text.EncoderFallback:.cctor () 0000010771164DA0 - 0000010771164E50 000001077144071A
    Mono: AOT FOUND AOT compiled code for System.Text.EncoderReplacementFallback:.ctor () 00000107711651E0 - 0000010771165210 0000010771440756
    Mono: AOT FOUND AOT compiled code for System.Text.Encoding:.ctor (int) 0000010771165890 - 0000010771165A20 000001077144077E
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardError (int) 0000010770ED6AD0 - 0000010770ED6B10 000001077143250C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleError () 0000010770F98590 - 0000010770F98600 0000010771436C12
    Mono: AOT FOUND AOT compiled code for System.IO.MonoIO:.cctor () 0000010770F96800 - 0000010770F96850 0000010771436AFC
    Mono: AOT FOUND AOT compiled code for System.Console:Open (intptr,System.IO.FileAccess,int) 0000010770ED6940 - 0000010770ED6AB0 00000107714324FE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_InternalConsoleOutputEnabled () 0000010770EF9470 - 0000010770EF94E0 00000107714335BF
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:.ctor () 0000010770F9D5D0 - 0000010770F9D5F0 0000010771436E05
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamWriter:.ctor (System.IO.Stream,System.Text.Encoding) 0000010770FA8750 - 0000010770FA8780 000001077143721A
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanWrite () 0000010770F9D610 - 0000010770F9D620 0000010771436E0B
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Initialize (System.Text.Encoding,int) 0000010770FA1C60 - 0000010770FA1E00 0000010771436F8A
    Mono: AOT FOUND AOT compiled code for System.IO.Stream:.cctor () 0000010770F9CA30 - 0000010770F9CA90 0000010771436DAF
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:.cctor () 0000010770FA1BD0 - 0000010770FA1C60 0000010771436F80
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:.ctor (System.IO.Stream,System.Text.Encoding,int) 0000010770FA1760 - 0000010770FA18D0 0000010771436F6A
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetMaxByteCount (int) 0000010771176070 - 00000107711760E0 0000010771440C44
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanSeek () 0000010770F9D600 - 0000010770F9D610 0000010771436E09
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_Position () 0000010770F9D630 - 0000010770F9D640 0000010771436E0F
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:set_AutoFlush (bool) 0000010770FA1E30 - 0000010770FA1EB0 0000010771436F94
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamWriter:Flush () 0000010770FA8880 - 0000010770FA88D0 0000010771437226
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Decode () 0000010770FA23B0 - 0000010770FA2600 0000010771436FAC
    Mono: AOT FOUND AOT compiled code for System.IO.TextWriter:Synchronized (System.IO.TextWriter,bool) 0000010770FA5010 - 0000010770FA5160 00000107714370CB
    Mono: AOT FOUND AOT compiled code for System.IO.SynchronizedWriter:.ctor (System.IO.TextWriter,bool) 0000010770FA6280 - 0000010770FA62E0 000001077143716E
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:get_IsConsole () 0000010770ED9F40 - 0000010770EDA000 00000107714328A8
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:.cctor () 0000010770ED8C50 - 0000010770ED8D10 0000010771432716
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleOutput () 0000010770F984B0 - 0000010770F98520 0000010771436C0A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.ConsoleDriver:Isatty (intptr) 0000010770EDA000 - 0000010770EDA080 00000107714328B6
    Mono: AOT FOUND AOT compiled code for System.ConsoleDriver:CreateNullConsoleDriver () 0000010770ED8D10 - 0000010770ED8D30 0000010771432726
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardOutput (int) 0000010770ED6B90 - 0000010770ED6BD0 000001077143251C
    Mono: AOT FOUND AOT compiled code for System.Console:OpenStandardInput (int) 0000010770ED6B30 - 0000010770ED6B70 0000010771432514
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_ConsoleInput () 0000010770F98520 - 0000010770F98590 0000010771436C0E
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamReader:.cctor () 0000010770FA80C0 - 0000010770FA8190 00000107714371E8
    Mono: AOT FOUND AOT compiled code for System.IO.UnexceptionalStreamReader:.ctor (System.IO.Stream,System.Text.Encoding) 0000010770FA7F10 - 0000010770FA7F40 00000107714371C8
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:.ctor () 0000010770FA4320 - 0000010770FA4340 000001077143704A
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:.cctor () 0000010770FA4340 - 0000010770FA43A0 000001077143704E
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader/NullTextReader:.ctor () 0000010770FA4780 - 0000010770FA47A0 0000010771437087
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader:.cctor () 0000010770F9E9E0 - 0000010770F9EA60 0000010771436E86
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader/NullStreamReader:.ctor () 0000010770FA1610 - 0000010770FA1630 0000010771436F4F
    Mono: AOT FOUND AOT compiled code for System.IO.StreamReader:Initialize (System.IO.Stream,System.Text.Encoding,bool,int) 0000010770F9EA60 - 0000010770F9F090 0000010771436E92
    Mono: AOT FOUND AOT compiled code for System.IO.NullStream:get_CanRead () 0000010770F9D5F0 - 0000010770F9D600 0000010771436E07
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetMaxCharCount (int) 00000107711760E0 - 0000010771176150 0000010771440C46
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetDecoder () 0000010771176150 - 00000107711761C0 0000010771440C48
    Mono: AOT FOUND AOT compiled code for System.Text.Decoder:.ctor () 0000010771162C80 - 0000010771162CE0 0000010771440652
    Mono: AOT FOUND AOT compiled code for System.Text.UTF8Encoding:GetPreamble () 0000010771176230 - 00000107711762D0 0000010771440C50
    Mono: AOT FOUND AOT compiled code for System.IO.TextReader:Synchronized (System.IO.TextReader) 0000010770FA4630 - 0000010770FA4780 000001077143707C
    Mono: AOT FOUND AOT compiled code for System.IO.SynchronizedReader:.ctor (System.IO.TextReader) 0000010770FA47B0 - 0000010770FA4800 000001077143708B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.GC:SuppressFinalize (object) 0000010770EFBD30 - 0000010770EFBDB0 00000107714336C2
    Mono: gc took 434 usecsMono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_virtual_void__this__ (object,intptr,intptr,intptr) 0000010771227DC0 - 0000010771227EA0 0000010771444549
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Finalize () 0000010770FA31D0 - 0000010770FA3240 0000010771436FFC
    Mono: AOT FOUND AOT compiled code for System.IO.StreamWriter:Dispose (bool) 0000010770FA1F10 - 0000010770FA2130 0000010771436FA0
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Assembly-CSharp.dll'.Platform assembly: G:\Data\Managed\Assembly-CSharp.dll (this message is harmless)
    Mono: Image addref Assembly-CSharp 000002043CA7F7C0 -> G:\Data\Managed\Assembly-CSharp.dll 000002043CC45AB0: 2
    Mono: Assembly Assembly-CSharp 000002043CA7F7C0 added to domain Unity Root Domain, ref_count=1
    Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Platform assembly: G:\Data\Managed\Pathfinding.ClipperLib.dll (this message is harmless)
    Mono: Image addref Pathfinding.ClipperLib 000002043CA7F640 -> G:\Data\Managed\Pathfinding.ClipperLib.dll 000002043CC61780: 2
    Mono: Assembly Pathfinding.ClipperLib 000002043CA7F640 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.ClipperLib.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.ClipperLib.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.ClipperLib\Pathfinding.ClipperLib.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Platform assembly: G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll (this message is harmless)
    Mono: Image addref Pathfinding.Ionic.Zip.Reduced 000002043CA7F940 -> G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll 000002043CC4E080: 2
    Mono: Assembly Pathfinding.Ionic.Zip.Reduced 000002043CA7F940 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.Ionic.Zip.Reduced\Pathfinding.Ionic.Zip.Reduced.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Platform assembly: G:\Data\Managed\Pathfinding.Poly2Tri.dll (this message is harmless)
    Mono: Image addref Pathfinding.Poly2Tri 000002043CA7F100 -> G:\Data\Managed\Pathfinding.Poly2Tri.dll 000002043CC4E9F0: 2
    Mono: Assembly Pathfinding.Poly2Tri 000002043CA7F100 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Pathfinding.Poly2Tri.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Pathfinding.Poly2Tri\Pathfinding.Poly2Tri.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Rewired_Core.dll'.Platform assembly: G:\Data\Managed\Rewired_Core.dll (this message is harmless)
    Mono: Image addref Rewired_Core 000002043CA7EEC0 -> G:\Data\Managed\Rewired_Core.dll 000002043CC4F430: 2
    Mono: Assembly Rewired_Core 000002043CA7EEC0 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\Rewired_Core.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Rewired_Core.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Rewired_Core.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Rewired_Core\Rewired_Core.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.UI.dll'.Platform assembly: G:\Data\Managed\UnityEngine.UI.dll (this message is harmless)
    Mono: Image addref UnityEngine.UI 000002043CA7EF80 -> G:\Data\Managed\UnityEngine.UI.dll 000002043CCC24C0: 2
    Mono: Assembly UnityEngine.UI 000002043CA7EF80 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.UI.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.UI.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.UI.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine.UI\UnityEngine.UI.config'.Mono: AOT loaded AOT Module for G:\Data\Managed\Assembly-CSharp.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\Assembly-CSharp.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\Assembly-CSharp.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\Assembly-CSharp\Assembly-CSharp.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.UI.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\UnityEngine.Networking.dll'.Platform assembly: G:\Data\Managed\UnityEngine.Networking.dll (this message is harmless)
    Mono: Image addref UnityEngine.Networking 000002043CA7F040 -> G:\Data\Managed\UnityEngine.Networking.dll 000002043CCC2FE0: 2
    Mono: Assembly UnityEngine.Networking 000002043CA7F040 added to domain Unity Root Domain, ref_count=1
    Mono: AOT loaded AOT Module for G:\Data\Managed\UnityEngine.Networking.dll.
    Mono: Assembly Loader loaded assembly from location: 'G:\Data\Managed\UnityEngine.Networking.dll'.Mono: Config attempting to parse: 'G:\Data\Managed\UnityEngine.Networking.dll.config'.Mono: Config attempting to parse: 'G:\Data\Managed\mono\assemblies\UnityEngine.Networking\UnityEngine.Networking.config'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.ClipperLib.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Ionic.Zip.Reduced.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Pathfinding.Poly2Tri.dll'.Mono: Assembly Loader probing location: 'G:\Data\Managed\Rewired_Core.dll'.Mono: AOT FOUND AOT compiled code for UnityEngine.StackTraceUtility:.cctor () 0000010771BD8A40 - 0000010771BD8A60 0000010771F9F475
    Mono: AOT FOUND AOT compiled code for UnityEngine.StackTraceUtility:SetProjectFolder (string) 0000010771BD8A60 - 0000010771BD8A80 0000010771F9F47C
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr) 0000010771C5F1E0 - 0000010771C5F2A0 0000010771FA3463
    - Completed reload, in 2.139 seconds
    Mono: Assembly Ref addref Rewired_Core 000002043CA7EEC0 -> UnityEngine 000002043BABE3C0: 2
    Mono: Assembly Ref addref UnityEngine.UI 000002043CA7EF80 -> UnityEngine 000002043BABE3C0: 3
    Mono: Assembly Ref addref UnityEngine.UI 000002043CA7EF80 -> mscorlib 0000020435169D30: 3
    Mono: Assembly Ref addref Rewired_Core 000002043CA7EEC0 -> mscorlib 0000020435169D30: 4
    Mono: Assembly Ref addref UnityEngine.Networking 000002043CA7F040 -> UnityEngine 000002043BABE3C0: 4
    Mono: Assembly Ref addref UnityEngine.Networking 000002043CA7F040 -> mscorlib 0000020435169D30: 5
    Mono: Assembly Ref addref UnityEngine.Networking 000002043CA7F040 -> System.Core 000002043CA7FD00: 2
    Mono: Assembly Ref addref System.Core 000002043CA7FD00 -> mscorlib 0000020435169D30: 6
    Mono: Assembly Ref addref UnityEngine.Networking 000002043CA7F040 -> System 000002043BABEF30: 2
    Mono: Assembly Ref addref System 000002043BABEF30 -> mscorlib 0000020435169D30: 7
    Mono: The request to load the assembly mscorlib v2.0.5.0 was remapped to v2.0.0.0Mono: Assembly Loader probing location: 'G:\Data\Managed\mscorlib.dll'.Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> mscorlib 0000020435169D30: 8
    Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> UnityEngine 000002043BABE3C0: 5
    Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> UnityEngine.UI 000002043CA7EF80: 2
    Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> Rewired_Core 000002043CA7EEC0: 2
    Mono: Assembly Loader probing location: 'G:\Data\Managed\System.Core.dll'.Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> System.Core 000002043CA7FD00: 3
    Mono: Assembly Ref addref Rewired_Core 000002043CA7EEC0 -> System.Core 000002043CA7FD00: 4
    Mono: The request to load the assembly System v2.0.5.0 was remapped to v2.0.0.0Mono: Assembly Loader probing location: 'G:\Data\Managed\System.dll'.Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> System 000002043BABEF30: 3
    Mono: Assembly Ref addref Assembly-CSharp 000002043CA7F7C0 -> Pathfinding.ClipperLib 000002043CA7F640: 2
    Mono: Assembly Ref addref Pathfinding.ClipperLib 000002043CA7F640 -> mscorlib 0000020435169D30: 9
    Mono: Assembly Ref addref Rewired_Core 000002043CA7EEC0 -> System 000002043BABEF30: 4
    Splash: texture[8x8], screen[1920x1080] scaledtexture[1080x1080]
    The following GlobalManagers were stripped from the build (Either because they're not used or not supported on this platform):
    UnityAdsSettings
    ClusterInputManager
    CloudWebServicesManager
    UnityAnalyticsManager
    UnityConnectSettings
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_ActiveSceneChanged (UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene) 0000010771AD2F50 - 0000010771AD2FC0 0000010771F9A7B2
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene_Scene (object,intptr,intptr,intptr) 0000010771CA55C0 - 0000010771CA56A0 0000010771FA4A64
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:.ctor () 0000010773F0B440 - 0000010773F0B460 00000107743444B9
    Mono: AOT FOUND AOT compiled code for <Module>:.cctor () 0000010773ED1020 - 0000010773ED1030 00000107743434F9
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr) 00000107711AD060 - 00000107711AD120 0000010771441C39
    Mono: AOT FOUND AOT compiled code for UnityEngine.ScriptableObject:.ctor () 0000010771A44C40 - 0000010771A44C60 0000010771F982CE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.ScriptableObject:Internal_CreateScriptableObject (UnityEngine.ScriptableObject) 0000010771A44C60 - 0000010771A44CE0 0000010771F982D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:.ctor () 0000010773F172F0 - 0000010773F17C60 000001077434475C
    Mono: gc took 1053 usecsMono: gc took 961 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap:.ctor () 0000010773F5E8F0 - 0000010773F5E910 00000107743459D5
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerElementIdentifier:.ctor () 0000010773FCFE80 - 0000010773FCFE90 000001077434725B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawOrDirectInput/MatchingCriteria:.ctor () 0000010773F20AB0 - 0000010773F20AC0 00000107743449D5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Elements:.ctor () 0000010773F23D50 - 0000010773F23D60 0000010774344A91
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Axis:.ctor () 0000010773F24920 - 0000010773F24950 0000010774344ACF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareAxisInfo:.ctor () 0000010773EE3A90 - 0000010773EE3AE0 000001077434389C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Elements:.ctor () 0000010773F28420 - 0000010773F28430 0000010774344BBB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Axis:.ctor () 0000010773F28FF0 - 0000010773F29020 0000010774344BF7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/MatchingCriteria:.ctor () 0000010773F2C4D0 - 0000010773F2C4E0 0000010774344CD3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Elements:.ctor () 0000010773F2CCC0 - 0000010773F2CCD0 0000010774344CF3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/MatchingCriteria:.ctor () 0000010773F31020 - 0000010773F31030 0000010774344E0A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Elements:.ctor () 0000010773F319D0 - 0000010773F319E0 0000010774344E30
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Axis:.ctor () 0000010773F32BA0 - 0000010773F32C60 0000010774344E78
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/MatchingCriteria:.ctor () 0000010773F36C80 - 0000010773F36C90 0000010774344F6E
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Elements:.ctor () 0000010773F37620 - 0000010773F37630 0000010774344F92
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Axis:.ctor () 0000010773F38480 - 0000010773F384B0 0000010774344FD6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/MatchingCriteria:.ctor () 0000010773F3C4A0 - 0000010773F3C4B0 00000107743450D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Elements:.ctor () 0000010773F3CE70 - 0000010773F3CE80 00000107743450F2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Axis:.ctor () 0000010773F3DC90 - 0000010773F3DCC0 0000010774345134
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/MatchingCriteria:.ctor () 0000010773F41980 - 0000010773F41990 0000010774345221
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Elements:.ctor () 0000010773F42140 - 0000010773F42150 0000010774345241
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Axis:.ctor () 0000010773F42B70 - 0000010773F42B80 000001077434526B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/MatchingCriteria:.ctor () 0000010773F468F0 - 0000010773F46900 000001077434537D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Elements:.ctor () 0000010773F47090 - 0000010773F470A0 000001077434539B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:.ctor () 0000010773F4AC70 - 0000010773F4AC80 00000107743454A4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:.ctor () 0000010773F4B430 - 0000010773F4B440 00000107743454C2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/MatchingCriteria:.ctor () 0000010773F4F070 - 0000010773F4F080 00000107743455CB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Elements:.ctor () 0000010773F4F8D0 - 0000010773F4F8E0 00000107743455ED
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/MatchingCriteria:.ctor () 0000010773F538C0 - 0000010773F538D0 00000107743456FF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Elements:.ctor () 0000010773F54190 - 0000010773F541A0 000001077434571D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/MatchingCriteria:.ctor () 0000010773F58090 - 0000010773F580A0 000001077434581F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Elements:.ctor () 0000010773F58A30 - 0000010773F58A40 0000010774345843
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:.ctor () 0000010773F1F870 - 0000010773F1F920 000001077434498B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base/Button:.ctor () 0000010773F28EF0 - 0000010773F28F20 0000010774344BEF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base/Button:.ctor () 0000010773F32830 - 0000010773F32860 0000010774344E70
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base/Button:.ctor () 0000010773F380A0 - 0000010773F380D0 0000010774344FCA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_WindowsUWP_Base/Button:.ctor () 0000010773F3D8E0 - 0000010773F3D910 0000010774345128
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/Button:.ctor () 0000010773F428B0 - 0000010773F428C0 000001077434525D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base/Button:.ctor () 0000010773F24810 - 0000010773F24840 0000010774344AC5
    Mono: gc took 2255 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.CustomCalculation_CompareElementValues:.ctor () 0000010773F172D0 - 0000010773F172F0 000001077434475A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base/CustomCalculationSourceData:.ctor () 0000010773F422A0 - 0000010773F422B0 0000010774345249
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.CustomCalculation_Accelerometer:.ctor () 0000010773F16DB0 - 0000010773F16DD0 000001077434474E
    Mono: gc took 2575 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Axis:.ctor () 0000010773F2CFB0 - 0000010773F2CFE0 0000010774344D07
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XInput_Base/Button:.ctor () 0000010773F2CE30 - 0000010773F2CE60 0000010774344CFB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:.ctor () 0000010773F4B630 - 0000010773F4B640 00000107743454D8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:.ctor () 0000010773F4B550 - 0000010773F4B560 00000107743454CE
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Axis:.ctor () 0000010773F4FA90 - 0000010773F4FAA0 0000010774345601
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_PS4_Base/Button:.ctor () 0000010773F4F9B0 - 0000010773F4F9C0 00000107743455F7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Axis:.ctor () 0000010773F59920 - 0000010773F59950 0000010774345887
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_SDL2_Base/Button:.ctor () 0000010773F59550 - 0000010773F59580 000001077434587B
    Mono: gc took 3748 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Linux_Base:.ctor () 0000010773F361F0 - 0000010773F36200 0000010774344F44
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_DirectInput_Base:.ctor () 0000010773F23330 - 0000010773F23340 0000010774344A6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_RawInput_Base:.ctor () 0000010773F279D0 - 0000010773F279E0 0000010774344B95
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_OSX_Base:.ctor () 0000010773F30610 - 0000010773F30620 0000010774344DE7
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Fallback_Base:.ctor () 0000010773F41330 - 0000010773F41340 0000010774345208
    Mono: gc took 5739 usecsMono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Axis:.ctor () 0000010773F47250 - 0000010773F47260 00000107743453AF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Ouya_Base/Button:.ctor () 0000010773F47170 - 0000010773F47180 00000107743453A5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/VidPid:.ctor () 0000010773F1FB30 - 0000010773F1FB40 000001077434499A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Axis:.ctor () 0000010773F544D0 - 0000010773F544E0 0000010774345733
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_InternalDriver_Base/Button:.ctor () 0000010773F54340 - 0000010773F54350 0000010774345729
    Mono: gc took 8620 usecsMono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.ctor () 0000010771191710 - 0000010771191780 00000107714414C5
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.cctor () 0000010771191A00 - 0000010771191A70 00000107714414D5
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_class_init_trampoline' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'generic_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap/Entry:.ctor () 0000010773F5EE40 - 0000010773F5EE50 00000107743459E5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickTemplateMap/ElementIdentifierMap:.ctor () 0000010773F5EE50 - 0000010773F5EE60 00000107743459E7
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:.ctor () 0000010773360F60 - 0000010773360F90 000001077372974F
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo:.ctor () 000001077335CA30 - 000001077335CA40 00000107737295AE
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:.ctor () 0000010773F61820 - 0000010773F624E0 0000010774345B01
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:NoAEKCtpCtDypCptwzIYKjdCHckD () 0000010773F7A540 - 0000010773F7A760 0000010774345F55
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Player_Editor:.ctor () 0000010773F5FB50 - 0000010773F5FD30 0000010774345A3F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetPlayerNames () 0000010773F631F0 - 0000010773F633A0 0000010774345B87
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:IterateName (string,int,string[]) 00000107740DDDE0 - 00000107740DE050 000001077434BB35
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:.cctor () 00000107740DD8D0 - 00000107740DD920 000001077434BB0B
    Mono: AOT FOUND AOT compiled code for System.IO.Path:GetInvalidFileNameChars () 0000010770F9B3A0 - 0000010770F9B400 0000010771436D2D
    Mono: AOT FOUND AOT compiled code for System.IO.Path:.cctor () 0000010770F98970 - 0000010770F98B10 0000010771436C32
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_VolumeSeparatorChar () 0000010770F98730 - 0000010770F987A0 0000010771436C1E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_DirectorySeparatorChar () 0000010770F987A0 - 0000010770F98810 0000010771436C22
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_AltDirectorySeparatorChar () 0000010770F98810 - 0000010770F98880 0000010771436C26
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.IO.MonoIO:get_PathSeparator () 0000010770F98880 - 0000010770F988F0 0000010771436C2A
    Mono: AOT FOUND AOT compiled code for System.IO.Path:GetInvalidPathChars () 0000010770F9B400 - 0000010770F9B430 0000010771436D32
    Mono: AOT FOUND AOT compiled code for char:ToString () 0000010770E10210 - 0000010770E10240 000001077142EF09
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char,int) 0000010770E103F0 - 0000010770E10420 000001077142EF2A
    Mono: AOT FOUND AOT compiled code for string:CreateString (char,int) 0000010770E1B540 - 0000010770E1B600 000001077142F188
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char[]) 0000010770E103D0 - 0000010770E103F0 000001077142EF27
    Mono: AOT FOUND AOT compiled code for string:CreateString (char[]) 0000010770E1B420 - 0000010770E1B540 000001077142F183
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Escape (string) 00000107723ACDB0 - 00000107723ACE10 000001077257D9B4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:.cctor () 00000107723ACBA0 - 00000107723ACC20 000001077257D98C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:.ctor (int) 00000107723745D0 - 0000010772374690 000001077257CC8B
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor (int) 0000010770F41190 - 0000010770F411E0 0000010771434BD8
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.cctor () 0000010770F41A30 - 0000010770F41A90 0000010771434C1D
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor (int,single,System.Collections.IHashCodeProvider,System.Collections.IComparer) 0000010770F40E30 - 0000010770F41140 0000010771434BCD
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:ToPrime (int) 0000010770F449B0 - 0000010770F44A90 0000010771434D3A
    Mono: AOT FOUND AOT compiled code for System.Environment:GetEnvironmentVariable (string) 0000010770EF9E50 - 0000010770EF9EF0 00000107714335F4
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Security.SecurityManager:get_SecurityEnabled () 00000107710B4D60 - 00000107710B4DD0 000001077143CD1C
    Mono: AOT FOUND AOT compiled code for System.Security.SecurityManager:.cctor () 00000107710B4C00 - 00000107710B4C70 000001077143CD08
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:internalGetEnvironmentVariable (string) 0000010770EF9DD0 - 0000010770EF9E50 00000107714335F2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:Escape (string) 00000107723A4A30 - 00000107723A4C40 000001077257D7EF
    Mono: AOT FOUND AOT compiled code for string:Concat (object,object) 0000010770E18C20 - 0000010770E18CB0 000001077142F10C
    Mono: AOT FOUND function 'ut_443' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:StripTrailingNumbers (string,int&) 00000107740DD9F0 - 00000107740DDBA0 000001077434BB21
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,string) 00000107723ACF20 - 00000107723ACF50 000001077257D9C5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,string,System.Text.RegularExpressions.RegexOptions) 00000107723ACF50 - 00000107723ACFD0 000001077257D9C9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Init () 00000107723AD420 - 00000107723AD620 000001077257DA02
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Lookup (string,System.Text.RegularExpressions.RegexOptions) 0000010772374920 - 0000010772374B60 000001077257CC99
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Contains (object) 0000010770F42490 - 0000010770F424D0 0000010771434C7A
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:GetHash (object) 0000010770F43870 - 0000010770F43970 0000010771434CFB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache/Key:GetHashCode () 0000010772374C80 - 0000010772374CF0 000001077257CCA8
    Mono: AOT FOUND AOT compiled code for string:GetHashCode () 0000010770E1AA10 - 0000010770E1AAC0 000001077142F165
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:InitNewRegex () 00000107723AD620 - 00000107723AD840 000001077257DA10
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:.cctor () 0000010770F2F240 - 0000010770F2F270 0000010771434516
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:CreateMachineFactory (string,System.Text.RegularExpressions.RegexOptions) 00000107723AD840 - 00000107723ADB80 000001077257DA1E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:.ctor () 00000107723A4670 - 00000107723A4710 000001077257D7DF
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:.ctor () 0000010770F40DE0 - 0000010770F40E30 0000010771434BC9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseRegularExpression (string,System.Text.RegularExpressions.RegexOptions) 00000107723A4CE0 - 00000107723A4EF0 000001077257D80A
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Clear () 0000010770F2FAD0 - 0000010770F2FB70 000001077143455E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetLowerBound (System.Array*,int) 0000010770E303B0 - 0000010770E30460 000001077142F6D1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:ClearInternal (System.Array,int,int) 0000010770E32F00 - 0000010770E32F90 000001077142F749
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Clear () 0000010770F422F0 - 0000010770F42490 0000010771434C76
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseGroup (System.Text.RegularExpressions.Syntax.Group,System.Text.RegularExpressions.RegexOptions,System.Text.RegularExpressions.Syntax.Assertion) 00000107723A5280 - 00000107723A63C0 000001077257D81A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseCharacterClass (System.Text.RegularExpressions.RegexOptions) 00000107723A7AD0 - 00000107723A8310 000001077257D87B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:.ctor (bool,bool) 00000107723C6D60 - 00000107723C6EC0 000001077257DE2E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:.cctor () 00000107723C6F10 - 00000107723C6F70 000001077257DE3E
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:.ctor (int) 0000010770F3C220 - 0000010770F3C2E0 0000010771434A35
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:AddRange (char,char) 00000107723C7140 - 00000107723C74A0 000001077257DE5C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:Add (System.Text.RegularExpressions.Interval) 00000107723A2220 - 00000107723A22B0 000001077257D73F
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Add (object) 0000010770F2F9B0 - 0000010770F2FAD0 000001077143455A
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:EnsureCapacity (int) 0000010770F2F5C0 - 0000010770F2F6F0 0000010771434550
    Mono: AOT FOUND AOT compiled code for System.Array:Copy (System.Array,int,System.Array,int,int) 0000010770E33140 - 0000010770E33800 000001077142F74F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:FastCopy (System.Array,int,System.Array,int,int) 0000010770E30720 - 0000010770E307C0 000001077142F6DB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:.ctor (int,int,bool) 00000107723C41F0 - 00000107723C42C0 000001077257DD2F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:Add (System.Text.RegularExpressions.Syntax.Expression) 00000107723C1C10 - 00000107723C1C60 000001077257DC74
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.Add (object) 0000010770F3E860 - 0000010770F3E9F0 0000010771434AF5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:OnValidate (object) 00000107723C1D40 - 00000107723C1D50 000001077257DC82
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:get_InnerList () 0000010770F3F490 - 0000010770F3F530 0000010771434B17
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:get_Count () 0000010770F2F420 - 0000010770F2F450 000001077143452E
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnInsert (int,object) 0000010770F3F560 - 0000010770F3F570 0000010771434B21
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnInsertComplete (int,object) 0000010770F3F570 - 0000010770F3F580 0000010771434B23
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:set_Item (int,System.Text.RegularExpressions.Syntax.Expression) 00000107723C1CF0 - 00000107723C1D40 000001077257DC7E
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.set_Item (int,object) 0000010770F3EE70 - 0000010770F3F0A0 0000010771434B05
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:get_Item (int) 0000010770F2F270 - 0000010770F2F340 000001077143451C
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnSet (int,object,object) 0000010770F3F5A0 - 0000010770F3F5B0 0000010771434B29
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:set_Item (int,object) 0000010770F2F340 - 0000010770F2F420 0000010771434525
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:OnSetComplete (int,object,object) 0000010770F3F5B0 - 0000010770F3F5C0 0000010771434B2B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:ResolveReferences () 00000107723AA090 - 00000107723AB3D0 000001077257D8CE
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:GetEnumerator () 0000010770F30990 - 0000010770F309D0 00000107714345CF
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:.cctor () 0000010770F31FB0 - 0000010770F31FE0 000001077143467E
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:.ctor (System.Collections.ArrayList) 0000010770F31F10 - 0000010770F31FB0 0000010771434678
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:MoveNext () 0000010770F32000 - 0000010770F321A0 000001077143468A
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Keys () 0000010770F41C60 - 0000010770F41CF0 0000010771434C54
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/HashKeys:GetEnumerator () 0000010770F455F0 - 0000010770F45660 0000010771434D94
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:.cctor () 0000010770F44BF0 - 0000010770F44C10 0000010771434D5E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:FailFast () 0000010770F44C10 - 0000010770F44C90 0000010771434D66
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/KeyMarker:.cctor () 0000010770F44AA0 - 0000010770F44AD0 0000010771434D48
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:MoveNext () 0000010770F44D00 - 0000010770F44F30 0000010771434D70
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:.ctor () 00000107723BD880 - 00000107723BD8D0 000001077257DBD2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.RegularExpression:Compile (System.Text.RegularExpressions.ICompiler,bool) 00000107723C3700 - 00000107723C3A60 000001077257DCE3
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:GetWidth (int&,int&) 00000107723C2540 - 00000107723C2830 000001077257DCAC
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:GetEnumerator () 0000010770F3F0F0 - 0000010770F3F140 0000010771434B09
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList/SimpleEnumerator:get_Current () 0000010770F321A0 - 0000010770F32270 0000010771434690
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:GetWidth (int&,int&) 00000107723C4770 - 00000107723C4840 000001077257DD53
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.ExpressionCollection:get_Item (int) 00000107723C1C60 - 00000107723C1CF0 000001077257DC78
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:System.Collections.IList.get_Item (int) 0000010770F3EE10 - 0000010770F3EE70 0000010771434B03
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:GetWidth (int&,int&) 00000107723C8210 - 00000107723C8240 000001077257DEA4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.PositionAssertion:GetWidth (int&,int&) 00000107723C6650 - 00000107723C6680 000001077257DE06
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitInfo (int,int,int) 00000107723C0420 - 00000107723C04C0 000001077257DC2B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:MakeRoom (int) 00000107723BD8D0 - 00000107723BDA00 000001077257DBD5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:GetAnchorInfo (bool) 00000107723C2830 - 00000107723C3630 000001077257DCB8
    Mono: AOT FOUND AOT compiled code for System.Collections.CollectionBase:get_Count () 0000010770F3F0A0 - 0000010770F3F0F0 0000010771434B07
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:GetAnchorInfo (bool) 00000107723C4840 - 00000107723C4C90 000001077257DD55
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Expression:GetAnchorInfo (bool) 00000107723C1DE0 - 00000107723C1E40 000001077257DC88
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:Normalize () 00000107723A2370 - 00000107723A26C0 000001077257D747
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Sort () 0000010770F310B0 - 0000010770F31140 0000010771434603
    Mono: AOT FOUND AOT compiled code for System.Array:Sort<T> (T[],int,int) 0000010770E366D0 - 0000010770E36720 000001077142F802
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Sort<T> (T[],int,int,System.Collections.Generic.IComparer`1<T>) 0000010770E36780 - 0000010770E36900 000001077142F806
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl<TKey, TValue> (TKey[],TValue[],int,int,System.Collections.Generic.IComparer`1<TKey>) 0000010770E36AB0 - 0000010770E372E0 000001077142F80A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:GetEnumerator () 00000107723A30A0 - 00000107723A3110 000001077257D76B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection/Enumerator:MoveNext () 00000107723A3260 - 00000107723A3380 000001077257D777
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:NewLink () 00000107723C0630 - 00000107723C0690 000001077257DC35
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitAnchor (bool,int,System.Text.RegularExpressions.LinkRef) 00000107723C0550 - 00000107723C0610 000001077257DC2F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:BeginLink (System.Text.RegularExpressions.LinkRef) 00000107723BDDE0 - 00000107723BDE70 000001077257DBE0
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxLinkRef:pushInstructionBase (int) 00000107723BD5F0 - 00000107723BD7B0 000001077257DBCC
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitLink (System.Text.RegularExpressions.LinkRef) 00000107723BDE70 - 00000107723BDF10 000001077257DBE4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitTrue () 00000107723BE020 - 00000107723BE040 000001077257DBF1
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:ResolveLink (System.Text.RegularExpressions.LinkRef) 00000107723C0690 - 00000107723C0870 000001077257DC3B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Group:Compile (System.Text.RegularExpressions.ICompiler,bool) 00000107723C2410 - 00000107723C2540 000001077257DCAA
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Repetition:Compile (System.Text.RegularExpressions.ICompiler,bool) 00000107723C44C0 - 00000107723C4770 000001077257DD43
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:IsComplex () 00000107723C8240 - 00000107723C8250 000001077257DEA8
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitFastRepeat (int,int,bool,System.Text.RegularExpressions.LinkRef) 00000107723C04C0 - 00000107723C0550 000001077257DC2D
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:Compile (System.Text.RegularExpressions.ICompiler,bool) 00000107723C74A0 - 00000107723C8210 000001077257DE6E
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:GetMetaCollection (System.Text.RegularExpressions.IntervalCollection/CostDelegate) 00000107723A26C0 - 00000107723A27F0 000001077257D74F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:GetTypeCodeImpl () 0000010770E3C9B0 - 0000010770E3CA90 000001077142F9A0
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:GetTypeCodeInternal (System.Type) 0000010770E3C930 - 0000010770E3C9B0 000001077142F99D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:IsAssignableFrom (System.Type) 0000010770E3D610 - 0000010770E3D8A0 000001077142F9E5
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_UnderlyingSystemType () 0000010770F07C00 - 0000010770F07C10 0000010771433A18
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:EqualsInternal (System.Type*,System.Type) 0000010770E3C440 - 0000010770E3C4F0 000001077142F987
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsSystemType () 0000010770E3FAC0 - 0000010770E3FB20 000001077142FAA5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:type_is_assignable_from (System.Type,System.Type) 0000010770E3CE30 - 0000010770E3CEB0 000001077142F9CA
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:MoveNullKeysToFront<K, V> (K[],V[],int,int,bool) 0000010770E37EC0 - 0000010770E38140 000001077142F82F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_isinst (object,intptr) 0000010771229B00 - 0000010771229B80 00000107714445BD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:qsort<K, V> (K[],V[],int,int,System.Collections.Generic.IComparer`1<K>) 0000010770E37710 - 0000010770E37CC0 000001077142F822
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Interval:CompareTo (object) 00000107723A1C10 - 00000107723A1CD0 000001077257D712
    Mono: AOT FOUND function 'ut_10545' in AOT file 'G:\Data\Managed\System.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483653' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:swap<K, V> (K[],V[],int,int) 0000010770E38140 - 0000010770E38290 000001077142F836
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:RemoveAt (int) 0000010770F304E0 - 0000010770F305D0 00000107714345AE
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Shift (int,int) 0000010770F2F6F0 - 0000010770F2F9B0 0000010771434555
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection:get_Item (int) 00000107723A20C0 - 00000107723A2190 000001077257D737
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.CharacterClass:GetIntervalCost (System.Text.RegularExpressions.Interval) 00000107723C8250 - 00000107723C82F0 000001077257DEAC
    Mono: AOT FOUND AOT compiled code for (wrapper delegate-invoke) <Module>:invoke_double__this___Interval (System.Text.RegularExpressions.Interval) 0000010772426DF0 - 0000010772426EE0 000001077257FF17
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:get_Item (int) 0000010770F3C6F0 - 0000010770F3C710 0000010771434A48
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.IntervalCollection/Enumerator:get_Current () 00000107723A3170 - 00000107723A3260 000001077257D771
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitRange (char,char,bool,bool,bool) 00000107723BF730 - 00000107723BF860 000001077257DC07
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitOp (System.Text.RegularExpressions.RxOp,bool,bool,bool) 00000107723BE040 - 00000107723BE0B0 000001077257DBF3
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.PositionAssertion:Compile (System.Text.RegularExpressions.ICompiler,bool) 00000107723C65E0 - 00000107723C6650 000001077257DE02
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitPosition (System.Text.RegularExpressions.Position) 00000107723BFD40 - 00000107723BFEA0 000001077257DC0D
    Mono: AOT FOUND AOT compiled code for System.Buffer:BlockCopy (System.Array,int,System.Array,int,int) 0000010770ED4A10 - 0000010770ED4C40 0000010771432438
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Buffer:BlockCopyInternal (System.Array,int,System.Array,int,int) 0000010770ED4DD0 - 0000010770ED4E70 0000010771432440
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:GetMachineFactory () 00000107723BDF40 - 00000107723BE000 000001077257DBEA
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:GetMapping (System.Collections.Hashtable) 00000107723A4EF0 - 00000107723A5280 000001077257D810
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:Add (object,object) 0000010770F422C0 - 0000010770F422F0 0000010771434C72
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:putImpl (object,object,bool) 0000010770F44250 - 0000010770F447E0 0000010771434D20
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_Gap (int) 00000107723C0A20 - 00000107723C0A60 000001077257DC49
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_Mapping (System.Collections.IDictionary) 00000107723C0A90 - 00000107723C0AD0 000001077257DC4D
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_GroupCount () 00000107723C0950 - 00000107723C09F0 000001077257DC45
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_Mapping () 00000107723C0A60 - 00000107723C0A90 000001077257DC4B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:GetGroupNamesArray (int,System.Collections.IDictionary) 00000107723AEDD0 - 00000107723AEF80 000001077257DAD8
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:GetEnumerator () 0000010770F424D0 - 0000010770F42520 0000010771434C7E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:get_Value () 0000010770F450A0 - 0000010770F45120 0000010771434D7E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable/Enumerator:get_Key () 0000010770F45020 - 0000010770F450A0 0000010771434D7A
    Mono: AOT FOUND AOT compiled code for (wrapper stelemref) object:stelemref (object,intptr,object) 000001077122B9E0 - 000001077122BAC0 0000010771444635
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:set_NamesMapping (string[]) 00000107723C0B00 - 00000107723C0B40 000001077257DC51
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Add (string,System.Text.RegularExpressions.RegexOptions,System.Text.RegularExpressions.IMachineFactory) 0000010772374690 - 00000107723747D0 000001077257CC91
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache:Cleanup () 00000107723747D0 - 0000010772374920 000001077257CC95
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Count () 0000010770F41BF0 - 0000010770F41C20 0000010771434C40
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:set_Item (object,object) 0000010770F41FF0 - 0000010770F42020 0000010771434C64
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.MRUList:Use (object) 0000010772374FA0 - 0000010772375250 000001077257CCBE
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_Gap () 00000107723C09F0 - 00000107723C0A20 000001077257DC47
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:get_NamesMapping () 00000107723C0AD0 - 00000107723C0B00 000001077257DC4F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Match (string,int) 00000107723AE150 - 00000107723AE270 000001077257DA72
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:CreateMachine () 00000107723AED70 - 00000107723AEDD0 000001077257DAD2
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreterFactory:NewInstance () 00000107723C08D0 - 00000107723C0950 000001077257DC41
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:.ctor (byte[],System.Text.RegularExpressions.EvalDelegate) 00000107723AF5B0 - 00000107723AF700 000001077257DB1A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:.cctor () 00000107723AF700 - 00000107723AF740 000001077257DB20
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:ResetGroups () 00000107723B00F0 - 00000107723B0330 000001077257DB46
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:.cctor () 00000107723A4270 - 00000107723A42B0 000001077257D7B5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:.ctor () 00000107723A3F80 - 00000107723A4090 000001077257D7A5
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Group:.ctor () 000001077239AAB0 - 000001077239AB60 000001077257D669
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Group:.cctor () 000001077239AB60 - 000001077239ABA0 000001077257D672
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.GroupCollection:.ctor (int,int) 000001077239A4C0 - 000001077239A530 000001077257D63B
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:Scan (System.Text.RegularExpressions.Regex,string,int,int) 00000107723AF840 - 00000107723AFA20 000001077257DB2C
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:EvalByteCode (int,int,int&) 00000107723B1190 - 00000107723BCEA0 000001077257DB74
    Mono: AOT FOUND AOT compiled code for int:ToString () 0000010770E05910 - 0000010770E05940 000001077142EBD2
    Mono: AOT FOUND function 'ut_107' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:NumberToString (int,System.IFormatProvider) 0000010770F0D360 - 0000010770F0D410 0000010771433C13
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:.cctor () 0000010770F09C00 - 0000010770F09C40 0000010771433B07
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.NumberFormatter:GetFormatterTables (ulong*&,int*&,char*&,char*&,long*&,int*&) 0000010770F09C40 - 0000010770F09CE0 0000010771433B17
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:GetInstance () 0000010770F0C620 - 0000010770F0C6E0 0000010771433BCB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_class_static_field_address (intptr,intptr) 000001077122A980 - 000001077122AA00 00000107714445F5
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_CurrentThread () 00000107711810C0 - 0000010771181190 0000010771440F37
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:.cctor () 00000107711806B0 - 0000010771180700 0000010771440EEE
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:.ctor (System.Threading.Thread) 0000010770F09B70 - 0000010770F09C00 0000010771433B02
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_CurrentCulture () 0000010771182080 - 0000010771182390 0000010771440FCF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:GetCachedCurrentCulture (System.Threading.InternalThread) 0000010771181E20 - 0000010771181EA0 0000010771440FBF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:ByteArrayToCurrentDomain (byte[]) 0000010771180960 - 00000107711809E0 0000010771440F1A
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructCurrentCulture () 0000010770F5EAF0 - 0000010770F5EBA0 00000107714355A4
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.cctor () 0000010770F5E860 - 0000010770F5E8E0 000001077143557F
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.ctor (int,bool,bool) 0000010770F5E4C0 - 0000010770F5E640 000001077143556B
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructInvariant (bool) 0000010770F61980 - 0000010770F61C10 0000010771435730
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:get_InvariantInfo () 0000010770F73F10 - 0000010770F73FA0 0000010771435FB3
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:.cctor () 0000010770F71420 - 0000010770F715C0 0000010771435EF6
    Mono: AOT FOUND AOT compiled code for System.Globalization.NumberFormatInfo:.ctor (int,bool) 0000010770F70F30 - 0000010770F713D0 0000010771435EC5
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:.cctor () 0000010770F62AA0 - 0000010770F632E0 00000107714357DC
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:get_InvariantInfo () 0000010770F65030 - 0000010770F650D0 0000010771435954
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:.ctor (bool) 0000010770F62750 - 0000010770F62A80 00000107714357A8
    Mono: AOT FOUND AOT compiled code for System.Globalization.GregorianCalendar:.ctor (System.Globalization.GregorianCalendarTypes) 0000010770F67E80 - 0000010770F67FB0 0000010771435A60
    Mono: AOT FOUND AOT compiled code for System.Globalization.GregorianCalendar:set_CalendarType (System.Globalization.GregorianCalendarTypes) 0000010770F68130 - 0000010770F68180 0000010771435A74
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:ReadOnly (System.Globalization.DateTimeFormatInfo) 0000010770F633C0 - 0000010770F63450 0000010771435864
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:Clone () 0000010770F63450 - 0000010770F634D0 000001077143586A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:MemberwiseClone (object*) 0000010770E011A0 - 0000010770E01240 000001077142EADD
    Mono: AOT FOUND AOT compiled code for System.Globalization.DateTimeFormatInfo:FillInvariantPatterns () 0000010770F66640 - 0000010770F668B0 00000107714359D1
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:CreateTextInfo (bool) 0000010770F61C10 - 0000010770F61CB0 0000010771435742
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_Parent () 0000010770F5FD00 - 0000010770F5FE90 0000010771435664
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_LCID () 0000010770F5FB00 - 0000010770F5FB30 0000010771435650
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:.ctor () 0000010770F5E830 - 0000010770F5E860 000001077143557B
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:ConstructInternalLocaleFromCurrentLocale (System.Globalization.CultureInfo) 0000010770F614A0 - 0000010770F614D0 000001077143570C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Globalization.CultureInfo:construct_internal_locale_from_current_locale (System.Globalization.CultureInfo) 0000010770F616B0 - 0000010770F61730 000001077143571C
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Threading.Thread:SetCachedCurrentCulture (System.Threading.Thread*,System.Globalization.CultureInfo) 0000010771181EA0 - 0000010771181F50 0000010771440FC3
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:SetThreadCurrentCulture (System.Globalization.CultureInfo) 0000010770F0C720 - 0000010770F0C7B0 0000010771433BDB
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:set_CurrentCulture (System.Globalization.CultureInfo) 0000010770F0BA30 - 0000010770F0BAE0 0000010771433B93
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_IsReadOnly () 0000010770F611A0 - 0000010770F611D0 00000107714356E1
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_NumberFormat () 0000010770F60BA0 - 0000010770F60D00 00000107714356BB
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:CheckNeutral () 0000010770F60AE0 - 0000010770F60BA0 00000107714356B7
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_IsNeutralCulture () 0000010770F60A30 - 0000010770F60AE0 00000107714356B3
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Globalization.CultureInfo:construct_number_format (System.Globalization.CultureInfo*) 0000010770F61860 - 0000010770F61900 0000010771435728
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FastIntegerToString (int,System.IFormatProvider) 0000010770F0D8D0 - 0000010770F0DA40 0000010771433C27
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:ResetCharBuf (int) 0000010770F0B510 - 0000010770F0B5A0 0000010771433B79
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:FastAppendDigits (int,bool) 0000010770F117B0 - 0000010770F11A10 0000010771433CAD
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char[],int,int) 0000010770E103A0 - 0000010770E103D0 000001077142EF24
    Mono: AOT FOUND AOT compiled code for string:CreateString (char[],int,int) 0000010770E1B1F0 - 0000010770E1B420 000001077142F17F
    Mono: AOT FOUND AOT compiled code for System.NumberFormatter:Release () 0000010770F0C6E0 - 0000010770F0C720 0000010771433BD5
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Add (T) 00000107711921C0 - 00000107711922D0 0000010771441515
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<T> (T[]&,int) 0000010770E38630 - 0000010770E386B0 000001077142F83E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<T> (T[]&,int,int) 0000010770E386B0 - 0000010770E387A0 000001077142F840
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GbAjGDyMdOqeaRrNQSJOJPbzFpnK () 0000010773F7A940 - 0000010773F7AA90 0000010774345F65
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetActionCategoryNames () 0000010773F66F10 - 0000010773F670C0 0000010774345C3E
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:KeyEquals (object,object) 0000010770F43970 - 0000010770F43AB0 0000010771434D03
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.FactoryCache/Key:Equals (object) 0000010772374CF0 - 0000010772374E10 000001077257CCAA
    Mono: AOT FOUND AOT compiled code for string:Equals (string) 0000010770E109D0 - 0000010770E109F0 000001077142EF72
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:get_Item (object) 0000010770F41D80 - 0000010770F41FF0 0000010771434C60
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ActionCategoryMap:AddCategory (int) 0000010773F12DD0 - 0000010773F12E60 0000010774344674
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:.cctor () 0000010771C12B80 - 0000010771C12BB0 0000010771FA10FB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ActionCategoryMap/Entry:.ctor (int) 0000010773F13A70 - 0000010773F13AF0 000001077434469A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:jweDlaXuiKoIHBDupbarwSaZgipH () 0000010773F7AA90 - 0000010773F7AF50 0000010774345F6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetInputBehaviorNames () 0000010773F68320 - 0000010773F684E0 0000010774345C73
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Clamp (single,single,single) 00000107740E1F80 - 00000107740E2060 000001077434BC77
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:set_mouseXYAxisSensitivity (single) 0000010773FEE3B0 - 0000010773FEE4A0 0000010774347B0E
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:.cctor () 0000010773FF0E90 - 0000010773FF0EA0 0000010774347C51
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:rgNqQznsyjllfnnEJdITzmaxIbT () 0000010773F7AF50 - 0000010773F7B120 0000010774345F73
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetMapCategoryNames () 0000010773F6AA70 - 0000010773F6AC50 0000010774345CB2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:cVnMVSRaDVjnsxJtAxiKnTbMdAR () 0000010773F7B120 - 0000010773F7B250 0000010774345F7D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetJoystickLayoutNames () 0000010773F6C530 - 0000010773F6C6E0 0000010774345CF3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:HpOmukpeJEqPUdfTFtbOSkILfuf () 0000010773F7B250 - 0000010773F7B380 0000010774345F83
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetKeyboardLayoutNames () 0000010773F6DE10 - 0000010773F6DFC0 0000010774345D30
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:pLJVlXuXLWojgEoIGQNFeBTgXMX () 0000010773F7B380 - 0000010773F7B4B0 0000010774345F89
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetMouseLayoutNames () 0000010773F6F6F0 - 0000010773F6F8A0 0000010774345D6B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:awHOlmifMqwOjepqOCgSQdYBjbI () 0000010773F7B4B0 - 0000010773F7B5E0 0000010774345F8F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetCustomControllerLayoutNames () 0000010773F71030 - 0000010773F71200 0000010774345DAA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars/PlatformVars:.ctor () 0000010773F0B360 - 0000010773F0B370 00000107743444B3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Player_Editor/Mapping:.ctor () 0000010773F60700 - 0000010773F60720 0000010774345A7F
    Mono: AOT FOUND AOT compiled code for Rewired.InputAction:.ctor () 0000010773FEDB60 - 0000010773FEDB70 0000010774347AB0
    Mono: AOT FOUND AOT compiled code for Rewired.InputCategory:.ctor () 0000010773FF10D0 - 0000010773FF10E0 0000010774347C69
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:.ctor () 0000010771C128C0 - 0000010771C12900 0000010771FA10D5
    Mono: AOT FOUND AOT compiled code for Rewired.InputMapCategory:.ctor () 0000010773FF1270 - 0000010773FF12E0 0000010774347C73
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ControllerMap_Editor:.ctor () 0000010773FE85B0 - 0000010773FE8620 0000010774347997
    Mono: AOT FOUND AOT compiled code for Rewired.ActionElementMap:.ctor () 0000010773FC8BB0 - 0000010773FC8C20 000001077434709F
    Mono: AOT FOUND AOT compiled code for Rewired.ActionElementMap:.cctor () 0000010773FCA7F0 - 0000010773FCA810 0000010774347145
    Mono: AOT FOUND AOT compiled code for Rewired.ActionElementMap:get_nextUid () 0000010773FC8B00 - 0000010773FC8BB0 000001077434708F
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_SceneUnloaded (UnityEngine.SceneManagement.Scene) 0000010771AD2EF0 - 0000010771AD2F50 0000010771F9A7AC
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene (object,intptr,intptr,intptr) 0000010771CA59E0 - 0000010771CA5AB0 0000010771FA4A78
    UnloadTime: 6.177369 ms
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Awake () 0000010773F9ADF0 - 0000010773F9AE10 000001077434665C
    Mono: AOT FOUND function 'delegate_invoke_impl_target_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Initialize () 0000010773F9B3A0 - 0000010773F9B9D0 000001077434667B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:IsOnlyManagerInScene () 0000010773F9C800 - 0000010773F9C8D0 00000107743466EB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Object:DontDestroyOnLoad (UnityEngine.Object) 0000010771AB7820 - 0000010771AB78A0 0000010771F99F36
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:.cctor () 0000010771AB70F0 - 0000010771AB7110 0000010771F99EF4
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:DetectPlatform () 0000010773360F90 - 0000010773361070 0000010773729751
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.SystemInfo:get_deviceName () 0000010771A44540 - 0000010771A445B0 0000010771F982A0
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.SystemInfo:get_deviceModel () 0000010771A445B0 - 0000010771A44620 0000010771F982A2
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:eek:p_Equality (UnityEngine.Object,UnityEngine.Object) 0000010771AB8440 - 0000010771AB8460 0000010771F99FB2
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:IsNativeObjectAlive (UnityEngine.Object) 0000010771AB7F70 - 0000010771AB7FD0 0000010771F99F73
    Mono: AOT FOUND AOT compiled code for intptr:eek:p_Inequality (intptr,intptr) 0000010770E27170 - 0000010770E271D0 000001077142F47B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:SetPlatformToEditorPlatform () 0000010773F9C440 - 0000010773F9C610 00000107743466C7
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:GetExternalTools () 00000107733610A0 - 00000107733610C0 000001077372975D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:DindbEUKOJFiJmAXlIkShOCUIXic (Rewired.Platforms.Platform,Rewired.Platforms.EditorPlatform,bool,Rewired.Platforms.WebplayerPlatform,Rewired.Utils.Interfaces.IExternalTools) 00000107740E6A20 - 00000107740E6AC0 000001077434BD9F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:.cctor () 00000107740E6A00 - 00000107740E6A20 000001077434BD99
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:gQkcFryjluvtyRzhNWjIRjDHyNO () 00000107740E6E70 - 00000107740E6F90 000001077434BDC9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Application:get_unityVersion () 0000010771AA83A0 - 0000010771AA8410 0000010771F99908
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:SGVVyxXJTMyaDGXtMXXvVojDmIr (string) 00000107740E6F90 - 00000107740E7AF0 000001077434BDDB
    Mono: AOT FOUND AOT compiled code for string:IsNullOrEmpty (string) 0000010770E16230 - 0000010770E16280 000001077142F083
    Mono: AOT FOUND AOT compiled code for string:Split (char[]) 0000010770E10F90 - 0000010770E10FC0 000001077142EF88
    Mono: AOT FOUND AOT compiled code for string:Split (char[],int) 0000010770E10FC0 - 0000010770E110C0 000001077142EF8B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) string:InternalSplit (string*,char[],int,int) 0000010770E1BCD0 - 0000010770E1BD90 000001077142F1AA
    Mono: AOT FOUND AOT compiled code for int:TryParse (string,int&) 0000010770E05840 - 0000010770E058A0 000001077142EBCE
    Mono: AOT FOUND AOT compiled code for int:parse (string,bool,int&,System.Exception&) 0000010770E03580 - 0000010770E03910 000001077142EB99
    Mono: AOT FOUND AOT compiled code for char:IsWhiteSpace (char) 0000010770E0FB10 - 0000010770E0FB90 000001077142EEE3
    Mono: AOT FOUND AOT compiled code for string:IndexOf (char,int) 0000010770E14A80 - 0000010770E14BD0 000001077142F047
    Mono: AOT FOUND AOT compiled code for string:Concat (object) 0000010770E18BD0 - 0000010770E18C20 000001077142F108
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Debug:get_isDebugBuild () 0000010771AB1F70 - 0000010771AB1FE0 0000010771F99C68
    Mono: AOT FOUND AOT compiled code for UnityEngine.Debug:.cctor () 0000010771AB0DF0 - 0000010771AB0E50 0000010771F99B4C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:zvLElNDjUwgOwKfITqMRKQqcxoj () 00000107740E7BD0 - 00000107740E7FA0 000001077434BDF9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Component:get_gameObject (UnityEngine.Component*) 0000010771AB8550 - 0000010771AB8600 0000010771F99FBE
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetComponent<T> (UnityEngine.GameObject) 00000107740E8700 - 00000107740E8940 000001077434BE71
    Mono: AOT FOUND AOT compiled code for UnityEngine.GameObject:GetComponents (System.Type) 0000010771ABC2F0 - 0000010771ABC3A0 0000010771F9A0AE
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.GameObject:GetComponentsInternal (UnityEngine.GameObject*,System.Type,bool,bool,bool,bool,object) 0000010771ABC900 - 0000010771ABC9E0 0000010771F9A0D2
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_object_castclass (object,intptr) 000001077122AFA0 - 000001077122B020 000001077144460D
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:DindbEUKOJFiJmAXlIkShOCUIXic (Rewired.InputManager_Base,System.Func`2<Rewired.Data.ConfigVars, object>,Rewired.Data.ConfigVars,Rewired.Data.ControllerDataFiles,Rewired.Data.UserData,Rewired.Data.UserDataStore) 00000107740667A0 - 0000010774066EC0 0000010774349890
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_platform () 00000107740E6310 - 00000107740E6330 000001077434BCFD
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_webplayerPlatform () 00000107740E6490 - 00000107740E64B0 000001077434BD23
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_editorPlatform () 00000107740E6430 - 00000107740E6450 000001077434BD11
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:DindbEUKOJFiJmAXlIkShOCUIXic () 0000010773F7BD50 - 0000010773F7C450 0000010774345FB5
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:.ctor (System.Collections.Generic.IList`1<T>) 00000107711980B0 - 0000010771198120 00000107714416B7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:get_Item (int) 00000107711955E0 - 00000107711956A0 0000010771441619
    Mono: AOT FOUND AOT compiled code for Rewired.InputMapCategory:DindbEUKOJFiJmAXlIkShOCUIXic () 0000010773FF13C0 - 0000010773FF1460 0000010774347C7D
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:.ctor (System.Collections.Generic.IList`1<int>) 0000010771D30560 - 0000010771D305D0 0000010771FA78C4
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper:.ctor () 00000107740692B0 - 0000010774069340 0000010774349A9F
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper/PollingHelper:.ctor (Rewired.ReInput/ControllerHelper) 000001077406B1D0 - 000001077406B260 0000010774349BAA
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH:.ctor () 00000107740A3C40 - 00000107740A3ED0 000001077434ACE1
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO:.ctor () 00000107740A4430 - 00000107740A4550 000001077434AD0B
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO/JeBrvwHHXdobugwfFsTprHiOHxbH:.ctor (int) 00000107740A4DB0 - 00000107740A4F50 000001077434AD2F
    Mono: AOT FOUND AOT compiled code for kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO/QXegKWmhatzkipglulZmaEHojKL:.ctor () 00000107740A5B40 - 00000107740A5C10 000001077434AD51
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:Add (int,kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO) 000001077414DF40 - 000001077414E0B0 000001077434E001
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:ContainsKey (int) 000001077414E230 - 000001077414E3A0 000001077434E00B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:get_Default () 0000010771238CB0 - 0000010771238CD0 0000010771444AF6
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:.cctor () 0000010771238CE0 - 0000010771238E40 0000010771444B10
    Mono: AOT FOUND AOT compiled code for System.Type:MakeGenericType (System.Type[]) 0000010770E40070 - 0000010770E404D0 000001077142FAC5
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsUserType () 0000010770E41370 - 0000010770E414D0 000001077142FB13
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsGenericTypeDefinition () 0000010770E3FB60 - 0000010770E3FC00 000001077142FAAF
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetGenericArguments () 0000010770F085F0 - 0000010770F08690 0000010771433A48
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsCompilerContext () 0000010770E3FA20 - 0000010770E3FAC0 000001077142FAA0
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_Assembly () 0000010770F07C10 - 0000010770F07CB0 0000010771433A1A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:MakeGenericType (System.Type,System.Type[]) 0000010770E3FD80 - 0000010770E3FE00 000001077142FABB
    Mono: AOT FOUND AOT compiled code for System.Activator:CreateInstance (System.Type,bool) 0000010770EC8270 - 0000010770EC8520 0000010771431F84
    Mono: AOT FOUND AOT compiled code for System.Activator:CheckType (System.Type) 0000010770EC8520 - 0000010770EC8660 0000010771431F8A
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_ContainsGenericParameters () 0000010770F08690 - 0000010770F08850 0000010771433A4A
    Mono: AOT FOUND AOT compiled code for System.MonoType:get_IsGenericParameter () 0000010770F08850 - 0000010770F088F0 0000010771433A4C
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsGenericType () 0000010770E3FCE0 - 0000010770E3FD80 000001077142FAB8
    Mono: AOT FOUND AOT compiled code for System.MonoType:HasElementTypeImpl () 0000010770F06480 - 0000010770F06530 00000107714339E8
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsArrayImpl () 0000010770F06530 - 0000010770F06550 00000107714339EA
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:IsArrayImpl (System.Type) 0000010770E3E8B0 - 0000010770E3E930 000001077142FA56
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsByRefImpl () 0000010770F06550 - 0000010770F065F0 00000107714339EC
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsPointerImpl () 0000010770F06690 - 0000010770F06730 00000107714339F0
    Mono: AOT FOUND AOT compiled code for System.Activator:CheckAbstractType (System.Type) 0000010770EC8660 - 0000010770EC8750 0000010771431F95
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetAttributeFlagsImpl () 0000010770F04E70 - 0000010770F04E90 000001077143399F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoType:get_attributes (System.Type) 0000010770F04CF0 - 0000010770F04D70 0000010771433997
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetDefaultConstructor () 0000010770F04D70 - 0000010770F04E70 0000010771433999
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructorImpl (System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) 0000010770F04E90 - 0000010770F04F00 00000107714339A1
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructors (System.Reflection.BindingFlags) 0000010770F052A0 - 0000010770F052D0 00000107714339AF
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoType:GetConstructors_internal (System.MonoType*,System.Reflection.BindingFlags,System.Type) 0000010770F051F0 - 0000010770F052A0 00000107714339AD
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder:.cctor () 0000010770FB5E40 - 0000010770FB5E70 00000107714376DB
    Mono: AOT FOUND AOT compiled code for System.MonoType:GetConstructorImpl (System.Reflection.ConstructorInfo[],System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) 0000010770F04F00 - 0000010770F051F0 00000107714339A3
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder/Default:SelectMethod (System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) 0000010770FB7730 - 0000010770FB7760 000001077143774D
    Mono: AOT FOUND AOT compiled code for System.Reflection.Binder/Default:SelectMethod (System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[],bool) 0000010770FB7760 - 0000010770FB7DF0 000001077143774F
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:GetParameters () 0000010770FCA140 - 0000010770FCA180 0000010771437D7D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_parameter_info (intptr,System.Reflection.MemberInfo) 0000010770FC8190 - 0000010770FC8210 0000010771437D07
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:get_Attributes () 0000010770FCA810 - 0000010770FCA850 0000010771437D89
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&) 0000010770FC7EB0 - 0000010770FC7F30 0000010771437CF9
    Mono: AOT FOUND AOT compiled code for System.Reflection.ConstructorInfo:Invoke (object[]) 0000010770FB9040 - 0000010770FB90C0 00000107714377B5
    Mono: AOT FOUND AOT compiled code for System.Reflection.ConstructorInfo:.cctor () 0000010770FB8E30 - 0000010770FB8E60 0000010771437785
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:Invoke (System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) 0000010770FCA740 - 0000010770FCA7A0 0000010771437D85
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) 0000010770FCA240 - 0000010770FCA740 0000010771437D81
    Mono: AOT FOUND AOT compiled code for System.Reflection.MonoCMethod:get_DeclaringType () 0000010770FCA8C0 - 0000010770FCA900 0000010771437D8F
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (System.Reflection.MonoCMethod*,object,object[],System.Exception&) 0000010770FCA180 - 0000010770FCA240 0000010771437D7F
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1<int>:.ctor () 00000107711A4280 - 00000107711A42A0 0000010771441A26
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1<int>:.ctor () 0000010771238CD0 - 0000010771238CE0 0000010771444B04
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1<int>:Equals (int,int) 00000107711A42E0 - 00000107711A4350 0000010771441A2A
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IndexedDictionary`2<int, kbdIFDmOyUGtBlLjnxXyUiNwRmH/aJapOxXxTxdmqPqbvqaGLCueOhO>:IndexOfKey (int) 000001077414E0B0 - 000001077414E230 000001077434E007
    Mono: AOT FOUND AOT compiled code for System.Diagnostics.Stopwatch:.cctor () 0000010772253850 - 0000010772253880 000001077257545C
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:.ctor (Rewired.Config.UpdateLoopSetting) 000001077408CBB0 - 000001077408CC60 000001077434A56D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:.cctor () 00000107740AE440 - 00000107740AE470 000001077434AED8
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:XJHjikjbhQPuKWVbSfbamNjpCOqa (Rewired.Config.UpdateLoopSetting) 000001077408CD20 - 000001077408D060 000001077434A577
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001077413EFE0 - 000001077413F0E0 000001077434DCF1
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsValueType () 0000010770E3C1C0 - 0000010770E3C200 000001077142F96E
    Mono: AOT FOUND AOT compiled code for System.Type:IsValueTypeImpl () 0000010770E3E930 - 0000010770E3E9A0 000001077142FA59
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsSubclassOf (System.Type) 0000010770F067D0 - 0000010770F06830 00000107714339F4
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Type:type_is_subtype_of (System.Type,System.Type,bool) 0000010770E3CDA0 - 0000010770E3CE30 000001077142F9C7
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Time:get_realtimeSinceStartup () 0000010771AC2850 - 0000010771AC28D0 0000010771F9A235
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS,bool) 0000010774140970 - 00000107741411D0 000001077434DD4C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 00000107741407D0 - 0000010774140970 000001077434DD45
    Mono: AOT FOUND AOT compiled code for OnVhgVIhxSfHLjYZDKtOTImJgCN:.cctor () 00000107740AE380 - 00000107740AE3E0 000001077434AEC3
    Mono: AOT FOUND AOT compiled code for OnVhgVIhxSfHLjYZDKtOTImJgCN:sJvUYOjdqCsKRSVgrfteBDYNaMX (int) 00000107740AE100 - 00000107740AE2E0 000001077434AEAF
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:GetHashCode (int) 00000107740AE410 - 00000107740AE430 000001077434AED0
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:emVARzFCVWZdYJBYzjiIwgGuEvsG (System.Func`2<Rewired.Data.ConfigVars, object>) 0000010774068340 - 0000010774068E50 00000107743499E2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:DoesPlatformUseFallback (Rewired.Platforms.Platform,Rewired.Platforms.WebplayerPlatform,bool) 0000010773F09A70 - 0000010773F09C90 00000107743443FD
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:DoesPlatformUseSDL2 (Rewired.Platforms.Platform,Rewired.Platforms.WebplayerPlatform,bool) 0000010773F09C90 - 0000010773F09E00 0000010774344405
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:.ctor () 00000107740F7F00 - 00000107740F8120 000001077434C28E
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:.ctor (int) 0000010773F087B0 - 0000010773F08930 0000010774344385
    Mono: AOT FOUND AOT compiled code for System.Enum:IsDefined (System.Type,object) 0000010770E2BC50 - 0000010770E2BED0 000001077142F5AE
    Mono: AOT FOUND AOT compiled code for System.Enum:.cctor () 0000010770E2AB70 - 0000010770E2ABE0 000001077142F54D
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsEnum () 0000010770E3BAB0 - 0000010770E3BB00 000001077142F92A
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:GetInfo (System.Type,System.MonoEnumInfo&) 0000010770EF8580 - 0000010770EF8E60 000001077143356D
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:.cctor () 0000010770EF8360 - 0000010770EF8450 0000010771433542
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:get_Cache () 0000010770EF84D0 - 0000010770EF8580 0000010771433561
    Mono: AOT FOUND AOT compiled code for System.Collections.Hashtable:ContainsKey (object) 0000010770F42710 - 0000010770F42760 0000010771434C8A
    Mono: AOT FOUND AOT compiled code for System.Type:GetHashCode () 0000010770E3DB20 - 0000010770E3DBF0 000001077142FA01
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoEnumInfo:get_enum_info (System.Type,System.MonoEnumInfo&) 0000010770EF8450 - 0000010770EF84D0 000001077143355D
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetLength (System.Array*,int) 0000010770E302D0 - 0000010770E30380 000001077142F6CD
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl (System.Array,System.Array,int,int,System.Collections.IComparer) 0000010770E34FD0 - 0000010770E35930 000001077142F7A2
    Mono: AOT FOUND AOT compiled code for System.Array:MoveNullKeysToFront (System.Array,System.Array,int,int,bool) 0000010770E360E0 - 0000010770E362E0 000001077142F7F1
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetValueImpl (System.Array*,int) 0000010770E305C0 - 0000010770E30670 000001077142F6D7
    Mono: AOT FOUND AOT compiled code for System.Array:qsort (System.Array,System.Array,int,int,System.Collections.IComparer) 0000010770E35D40 - 0000010770E360E0 000001077142F7E2
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo/IntComparer:Compare (object,object) 0000010770EF9090 - 0000010770EF9180 00000107714335A5
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:SetValueImpl (System.Array*,object,int) 0000010770E30670 - 0000010770E30720 000001077142F6D9
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo:.ctor (System.MonoEnumInfo) 0000010770EF8290 - 0000010770EF8360 000001077143353E
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:ToObject (System.Type,object) 0000010770E2D3B0 - 0000010770E2D430 000001077142F603
    Mono: AOT FOUND AOT compiled code for System.Enum:FindPosition (object,System.Array) 0000010770E2B450 - 0000010770E2BA80 000001077142F591
    Mono: AOT FOUND AOT compiled code for System.Array:BinarySearch<int> (int[],int,int,int,System.Collections.Generic.IComparer`1<int>) 00000107712341B0 - 0000010771234470 00000107714449C2
    Mono: AOT FOUND AOT compiled code for System.MonoEnumInfo/IntComparer:Compare (int,int) 0000010770EF9180 - 0000010770EF91C0 00000107714335A9
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:rqaEdJgZtwEcWesTiuTPMcxGfxt (uint,bool) 00000107740F8910 - 00000107740F8BB0 000001077434C2C2
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_externalTools () 00000107740E69E0 - 00000107740E6A00 000001077434BD93
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_IsGamepadActive (uint) 00000107733612E0 - 0000010773361300 0000010773729787
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:IsGamepadActive (uint) 0000010771BC11E0 - 0000010771BC1260 0000010771F9EB50
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:.ctor (Rewired.Platforms.XboxOne.IXboxOneInputSource,ulong,int,bool) 00000107740F9190 - 00000107740F93B0 000001077434C2F4
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:.ctor (string,System.Nullable`1<long>,int,int,int) 0000010773F094C0 - 0000010773F09710 00000107743443E1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:GetUnityInputAxisNameByJoystickId (int,int) 00000107740E98E0 - 00000107740E9A30 000001077434BEBB
    Mono: AOT FOUND AOT compiled code for string:Concat (object[]) 0000010770E19790 - 0000010770E19950 000001077142F12F
    Mono: AOT FOUND AOT compiled code for string:ConcatInternal (string[],int) 0000010770E19A40 - 0000010770E19B70 000001077142F137
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:.ctor (bool,Rewired.Platforms.XboxOne.IXboxOneInputSource) 00000107740F5F70 - 00000107740F60D0 000001077434C228
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:SourceUpdated (Rewired.Interfaces.IControllerExtensionSource) 00000107740F7820 - 00000107740F78A0 000001077434C270
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:populate<T> (T[],int,int) 00000107740D83B0 - 00000107740D8640 000001077434B938
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Activator:CreateInstance<T> () 0000010770EC7A80 - 0000010770EC7AE0 0000010771431F67
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Utility.TimerAbs:.ctor () 00000107740CA360 - 00000107740CA370 000001077434B652
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:AddJoystick (Rewired.Platforms.Custom.CustomInputSource/Joystick) 0000010773F08930 - 0000010773F08A20 0000010774344397
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Contains (T) 0000010771192AB0 - 0000010771192B50 0000010771441545
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:IndexOf<T> (T[],T,int,int) 0000010770E39780 - 0000010770E39980 000001077142F860
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:.cctor () 0000010771190FC0 - 00000107711911A0 000001077144149C
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1/DefaultComparer:.ctor () 0000010771191410 - 0000010771191460 00000107714414AF
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:.ctor () 0000010771190FB0 - 0000010771190FC0 0000010771441498
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1:get_Default () 00000107711913C0 - 0000010771191410 00000107714414AB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.EqualityComparer`1/DefaultComparer:Equals (T,T) 00000107711914B0 - 0000010771191520 00000107714414B3
    Mono: AOT FOUND AOT compiled code for object:Equals (object) 0000010770E01030 - 0000010770E01060 000001077142EAD3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:add_XboxOneInput_OnGamepadStateChange (System.Action`2<uint, bool>) 0000010773361130 - 00000107733611E0 0000010773729765
    Mono: AOT FOUND AOT compiled code for System.Delegate:Combine (System.Delegate,System.Delegate) 0000010770E2A810 - 0000010770E2A8E0 000001077142F539
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:.ctor (Rewired.Platforms.Custom.CustomInputSource,Rewired.Config.UpdateLoopSetting,System.Func`2<Rewired.BridgedControllerHWInfo, Rewired.HardwareJoystickMap_InputManager>,System.Func`1<int>) 0000010773FB6340 - 0000010773FB6600 0000010774346CDD
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_ldvirtfn (object,intptr) 0000010771229340 - 00000107712293C0 000001077144459F
    Mono: AOT FOUND function 'generic_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_delegate_ctor (object,object,intptr) 000001077122A8F0 - 000001077122A980 00000107714445F3
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:add__JoystickConnectedEvent (System.Action) 0000010773F08300 - 0000010773F08400 0000010774344361
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:add__JoystickDisconnectedEvent (System.Action) 0000010773F084D0 - 0000010773F08600 000001077434436D
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:.ctor () 0000010773FA8CB0 - 0000010773FA8D60 00000107743469DD
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:.ctor (Rewired.Data.ConfigVars,Rewired.PlatformInputManager) 0000010773FA9FF0 - 0000010773FAA290 0000010774346A31
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:.ctor (string) 0000010773F02110 - 0000010773F02570 000001077434420D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:FormatHardwareIdentifierString (string) 00000107740D2250 - 00000107740D22E0 000001077434B81F
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,string) 00000107723AD130 - 00000107723AD160 000001077257D9E0
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,string,System.Text.RegularExpressions.RegexOptions) 00000107723AD160 - 00000107723AD1E0 000001077257D9E4
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseEscape () 00000107723A9220 - 00000107723A96C0 000001077257D8B9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Syntax.Parser:parseSpecial (System.Text.RegularExpressions.RegexOptions) 00000107723A8900 - 00000107723A9220 000001077257D88B
    Mono: AOT FOUND AOT compiled code for System.Collections.BitArray:set_Item (int,bool) 0000010770F3C710 - 0000010770F3C740 0000010771434A4A
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitCategory (System.Text.RegularExpressions.Category,bool,bool) 00000107723BE370 - 00000107723BF6C0 000001077257DBFF
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxCompiler:EmitOpNegateReverse (System.Text.RegularExpressions.RxOp,bool,bool) 00000107723BE110 - 00000107723BE170 000001077257DBF7
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Regex:Replace (string,string,int,int) 00000107723AE850 - 00000107723AE9E0 000001077257DAA6
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.BaseMachine:Replace (System.Text.RegularExpressions.Regex,string,string,int,int) 00000107723733C0 - 0000010772373540 000001077257CC65
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.BaseMachine:LTRReplace (System.Text.RegularExpressions.Regex,string,System.Text.RegularExpressions.BaseMachine/MatchAppendEvaluator,int,int,bool) 0000010772373D50 - 00000107723740A0 000001077257CC82
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.RxInterpreter:GenerateMatch (System.Text.RegularExpressions.Regex) 00000107723B0B00 - 00000107723B1080 000001077257DB60
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:Append (string,int,int) 000001077116DED0 - 000001077116E060 0000010771440ACB
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.ReplacementEvaluator:EvaluateAppend (System.Text.RegularExpressions.Match,System.Text.StringBuilder) 00000107723C0D40 - 00000107723C1190 000001077257DC5C
    Mono: AOT FOUND AOT compiled code for System.Text.StringBuilder:Append (string) 000001077116D5E0 - 000001077116D800 0000010771440AA9
    Mono: AOT FOUND AOT compiled code for System.Text.RegularExpressions.Match:NextMatch () 00000107723A4350 - 00000107723A4540 000001077257D7CB
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerDataUpdater:.ctor (Rewired.InputSource,int,int,Rewired.UnknownControllerHat[]) 0000010773F86080 - 0000010773F861E0 0000010774346262
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:.ctor (int,Rewired.InputSource,string,string,string,Rewired.ControllerType,int,bool[],Rewired.Controller/Extension,Rewired.ControllerDataUpdater) 0000010773EE5CA0 - 0000010773EE61A0 0000010774343A6C
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:htLfeMXMAFeaUWMHZfLXFFmbbKE (Rewired.Controller/Extension) 0000010773EE7770 - 0000010773EE7880 0000010774343AC6
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:.ctor (string,bool) 0000010773EEAE50 - 0000010773EEAF10 0000010774343BCE
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv:.ctor (Rewired.Config.UpdateLoopSetting,bool) 0000010773EEB4C0 - 0000010773EEB640 0000010774343BE8
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element/rLtXVOsPnPLUXiVCeWRtKqSwdFP:.ctor (Rewired.Config.UpdateLoopSetting) 0000010773EE7E20 - 0000010773EE8080 0000010774343AE8
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv/zgBdWDIjAJnatXklyDhIAfXDqso:.ctor () 0000010773EEB930 - 0000010773EEBA00 0000010774343BFA
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:.ctor () 0000010773ED7990 - 0000010773ED7A50 0000010774343660
    Mono: AOT FOUND AOT compiled code for aMKryKeZCweXDfKqkQuZuCBIVUO:.ctor (single) 0000010773ED83E0 - 0000010773ED8480 000001077434367E
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:Connected () 0000010773EE79C0 - 0000010773EE79F0 0000010774343ACE
    Mono: AOT FOUND AOT compiled code for Rewired.Consts:.cctor () 0000010773EE3BC0 - 0000010773EE5940 00000107743438A3
    Mono: AOT FOUND AOT compiled code for System.Guid:.ctor (string) 0000010770EFC210 - 0000010770EFC2D0 00000107714336D2
    Mono: AOT FOUND AOT compiled code for System.Guid:.cctor () 0000010770EFC6F0 - 0000010770EFC780 00000107714336E4
    Mono: AOT FOUND AOT compiled code for string:Trim () 0000010770E11B50 - 0000010770E11C70 000001077142EFB2
    Mono: AOT FOUND AOT compiled code for System.Guid/GuidParser:parseGuid1 () 0000010770EFE850 - 0000010770EFEB10 0000010771433781
    Mono: AOT FOUND AOT compiled code for char:IsDigit (char) 0000010770E0F230 - 0000010770E0F270 000001077142EE91
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:Fill<int> (int[],int) 00000107740FA3D0 - 00000107740FA4C0 000001077434C33D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_isAndroidPlatform () 00000107740E67C0 - 00000107740E68A0 000001077434BD65
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:GetUnifiedMouseSource () 0000010773FB6C30 - 0000010773FB6C40 0000010774346D19
    Mono: AOT FOUND AOT compiled code for Rewired.Mouse:.ctor (string,Rewired.Interfaces.IUnifiedMouseSource) 0000010773F07940 - 0000010773F07B00 0000010774344340
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_axisCount () 0000010773F9E880 - 0000010773F9E890 0000010774346784
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_buttonCount () 0000010773F9E870 - 0000010773F9E880 0000010774346782
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_hardwareMap () 0000010773F9E830 - 0000010773F9E870 000001077434677A
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:jOpfUUHRKmheZhIwiYIyDEUdvjEV () 0000010773F9EAC0 - 0000010773F9F1B0 0000010774346794
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:get_Count () 0000010771198A40 - 0000010771198AC0 00000107714416F8
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__ICollection_get_Count () 0000010770E2F7D0 - 0000010770E2F800 000001077142F6A7
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:System.Collections.Generic.IList<T>.get_Item (int) 0000010771D306C0 - 0000010771D30700 0000010771FA78D0
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<int>:get_Item (int) 0000010771D30E90 - 0000010771D30EF0 0000010771FA791F
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__get_Item<int> (int) 00000107711A8950 - 00000107711A89F0 0000010771441B07
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetGenericValueImpl (System.Array*,int,int&) 0000010771240DD0 - 0000010771240EB0 000001077144535C
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:System.Collections.Generic.IList<T>.get_Item (int) 0000010771198210 - 0000010771198260 00000107714416C3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__get_Item<T> (int) 0000010770E2FF80 - 0000010770E30040 000001077142F6BD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483653' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:GetGenericValueImpl (System.Array*,int,object&) 00000107711ACE10 - 00000107711ACEF0 0000010771441C2D
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerElementIdentifier:.ctor (int,string,Rewired.ControllerElementType,bool) 0000010773FD0030 - 0000010773FD0110 0000010774347261
    Mono: AOT FOUND AOT compiled code for string:memset (byte*,int,int) 0000010770E1B600 - 0000010770E1B700 000001077142F18C
    Mono: AOT FOUND AOT compiled code for string:memcpy (byte*,byte*,int) 0000010770E1B910 - 0000010770E1BA30 000001077142F198
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:.ctor (string,Rewired.ControllerElementIdentifier[],int[],int[],Rewired.AxisCalibrationData[],Rewired.AxisRange[],Rewired.Data.Mapping.HardwareAxisInfo[],Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement[]) 0000010773FEB4C0 - 0000010773FEC0E0 0000010774347A2B
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:DeepClone<T> (T[]) 00000107740D27F0 - 00000107740D29F0 000001077434B842
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:ToArray () 0000010771C15EE0 - 0000010771C15F70 0000010771FA12EE
    Mono: AOT FOUND AOT compiled code for System.Array:Copy (System.Array,System.Array,int) 0000010770E33030 - 0000010770E33140 000001077142F74D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001077412F6E0 - 000001077412F7E0 000001077434D6C1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010774130ED0 - 0000010774131070 000001077434D715
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.ControllerElementIdentifier,bool) 0000010774131070 - 00000107741318D0 000001077434D71C
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:SajRKfNBfWtUXyNJNKyvLDRizyv (Rewired.ControllerElementIdentifier[],int) 0000010773FECB90 - 0000010773FECD00 0000010774347A6A
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:get_inputSource () 0000010773F9E820 - 0000010773F9E830 0000010774346778
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:.ctor (int,Rewired.InputSource,string,string,string,Rewired.ControllerType,int,int,bool[],Rewired.HardwareControllerMap_Game,Rewired.Controller/Extension,Rewired.ControllerDataUpdater) 0000010773EF1370 - 0000010773EF1D40 0000010774343D34
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:.ctor (string,Rewired.AxisRange,Rewired.Data.Mapping.HardwareAxisInfo) 0000010773EE8FB0 - 0000010773EE9080 0000010774343B47
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm:.ctor (Rewired.Config.UpdateLoopSetting) 0000010773EE9630 - 0000010773EE9770 0000010774343B63
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:.ctor (Rewired.AxisCalibrationData[]) 0000010773FCAA80 - 0000010773FCACB0 000001077434715B
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:.ctor (bool,single,single,single,single,bool,bool,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 0000010773FCD950 - 0000010773FCDB70 00000107743471F3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Abs (single) 00000107740DEA70 - 00000107740DEB80 000001077434BB7D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:Copy (UnityEngine.AnimationCurve) 00000107740E9D50 - 00000107740E9F00 000001077434BEF1
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:Reset () 0000010773FCEE70 - 0000010773FCF0B0 000001077434720F
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF:.ctor (Rewired.Config.UpdateLoopSetting,Rewired.Keyboard) 0000010773F9CC00 - 0000010773F9CE20 000001077434670C
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB:.ctor (Rewired.Keyboard) 0000010773F9D280 - 0000010773F9D3C0 0000010774346724
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.ExpandableArray_DataContainer`1:.ctor (int,bool,int) 0000010773F95790 - 0000010773F959B0 000001077434654E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB/plYTUcssEwvcscpWoSJvZDxYtIT:.ctor () 0000010773F9DE80 - 0000010773F9DE90 0000010774346748
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:GetAllPlatformVars () 0000010773F0ACA0 - 0000010773F0AD10 0000010774344497
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_effectivePlatform () 00000107740E6330 - 00000107740E6430 000001077434BD03
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.UnityTools:get_isEditor () 00000107740E6450 - 00000107740E6470 000001077434BD17
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ConfigVars:GetPlatformVars (Rewired.Platforms.Platform) 0000010773F0AD80 - 0000010773F0B060 000001077434449D
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_DeviceConnectedEvent (System.Action`1<Rewired.BridgedController>) 0000010773ED8CD0 - 0000010773ED8D70 000001077434368F
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_DeviceDisconnectedEvent (System.Action`1<Rewired.ControllerDisconnectedEventArgs>) 0000010773ED8E10 - 0000010773ED8EB0 0000010774343695
    Mono: AOT FOUND AOT compiled code for Rewired.PlatformInputManager:add_UpdateControllerInfoEvent (System.Action`1<Rewired.UpdateControllerInfoEventArgs>) 0000010773ED8F50 - 0000010773ED8FF0 000001077434369B
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:add_ControllerDisconnectStartedEvent (System.Action`1<Rewired.ControllerStatusChangedEventArgs>) 0000010773FA9EB0 - 0000010773FA9F50 0000010774346A29
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:ZnnDXlDqoTIESARNhSPbHlpwMtfs () 0000010774067700 - 00000107740678C0 0000010774349953
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:DindbEUKOJFiJmAXlIkShOCUIXic () 0000010773FC42B0 - 0000010773FC51F0 0000010774346F6B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:get_Count () 00000107711955B0 - 00000107711955E0 0000010771441615
    Mono: AOT FOUND AOT compiled code for Rewired.Player:.ctor (bool,int,string,string,CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[]) 0000010773FF4650 - 0000010773FF4740 0000010774347D64
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:.ctor (Rewired.Player,CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[],CojNFkqScloNTjLVKGDWzcnkFEA[]) 0000010773FFB6B0 - 0000010773FFB960 0000010774347FA9
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/ConflictCheckingHelper:.ctor (Rewired.Player,Rewired.Player/ControllerHelper) 000001077404E100 - 000001077404E1C0 000001077434924C
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:.ctor () 000001077405C4F0 - 000001077405C630 00000107743494F6
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:.ctor () 0000010773FE42A0 - 0000010773FE43B0 00000107743478F9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: Assembly Ref addref Rewired_Core 000002043CA7EEC0 -> System.Xml 000002043CA59D10: 2
    Mono: Assembly Ref addref System.Xml 000002043CA59D10 -> mscorlib 0000020435169D30: 10
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:DindbEUKOJFiJmAXlIkShOCUIXic () 0000010773FFE080 - 0000010773FFE240 000001077434807A
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:ykxmVYnbqGtjMQxSHgQkACFwvoj () 000001077405D260 - 000001077405D340 0000010774349519
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Clear () 00000107711929F0 - 0000010771192AB0 0000010771441541
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:ykxmVYnbqGtjMQxSHgQkACFwvoj (bool) 0000010773FE54C0 - 0000010773FE57C0 000001077434791F
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:EmDGDKOVglGWKCMlHaYGHBDhSHY (bool) 000001077400B150 - 000001077400B7B0 00000107743483D3
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:DNOWISNTStEfSwqpZLYAGCsBpst (bool) 000001077400B7B0 - 000001077400BE10 00000107743483DA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Player_Editor/Mapping:LubpFgondbtKyKEAbKOlDyBGPEN () 0000010773F608A0 - 0000010773F60940 0000010774345A89
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:FindKeyboardMap_Game (int,int) 0000010773F75670 - 0000010773F757D0 0000010774345E6F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:RpseuqcCQKdjpJjcaZIwduRUVNOF (System.Collections.Generic.List`1<Rewired.Data.Mapping.ControllerMap_Editor>,System.Collections.Generic.List`1<Rewired.InputLayout>,int,int,bool) 0000010773F7B890 - 0000010773F7B970 0000010774345F9F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:jAiIbXEjNrXUDTzwpVHOFiGnxkV (System.Collections.Generic.List`1<Rewired.Data.Mapping.ControllerMap_Editor>,int,int) 0000010773F7B720 - 0000010773F7B890 0000010774345F9B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ControllerMap_Editor:HbKDYIvydZYIgRXDUXTaVahacRB (System.Func`2<int, bool>) 0000010773FE8B50 - 0000010773FE8BF0 00000107743479B5
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:.ctor () 0000010773FD0AA0 - 0000010773FD0B90 00000107743472B7
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:.cctor () 0000010773FD7D70 - 0000010773FD7D80 00000107743475D1
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:get_nextUid () 0000010773FD09E0 - 0000010773FD0AA0 00000107743472A7
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:.ctor () 00000107740AF000 - 00000107740AF030 000001077434AF1A
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:.cctor () 00000107740B4000 - 00000107740B4070 000001077434B07E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ControllerMap_Editor:SnXMsnKdBieyNHwbbAQjyLqerTLC (System.Func`2<int, bool>,Rewired.ControllerMap,Rewired.HardwareControllerMapIdentifier,Rewired.Data.Mapping.HardwareJoystickMap,bool) 0000010773FE8D00 - 0000010773FE9680 00000107743479C1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.StringTools:ToGuid (string) 00000107740DE290 - 00000107740DE350 000001077434BB4F
    Mono: AOT FOUND AOT compiled code for System.FormatException:.ctor (string) 0000010770EFB830 - 0000010770EFB880 00000107714336A8
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    Mono: AOT FOUND AOT compiled code for System.Guid/GuidParser:parseGuid2 () 0000010770EFEB50 - 0000010770EFED90 0000010771433786
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:ContainsAction (int) 0000010773F659F0 - 0000010773F65A30 0000010774345C11
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:IndexOfAction (int) 0000010773F65A30 - 0000010773F65B90 0000010774345C13
    Mono: AOT FOUND AOT compiled code for UnityEngine.Object:eek:p_Inequality (UnityEngine.Object,UnityEngine.Object) 0000010771AB8460 - 0000010771AB8490 0000010771F99FB6
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:AddActionMapping_BeforeBake (Rewired.ActionElementMap) 0000010773FD5430 - 0000010773FD54D0 00000107743474BD
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:System.Collections.Generic.ICollection<T>.Add (T) 00000107740B3550 - 00000107740B35B0 000001077434B028
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:ryuoTaJyuKIrWBDIvKuwCisPajgI (T) 00000107740AFAB0 - 00000107740AFC20 000001077434AF3A
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:XnvKvgDQYEYQbFRyfqYCtYZvuTV (int,bool) 00000107740B30E0 - 00000107740B3270 000001077434B012
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:HWyEYaZEWaWajTOnEFEzfNIhouV (int,int) 00000107740B3270 - 00000107740B3330 000001077434B018
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:RoundUpToPowerOf2 (uint) 00000107740E2810 - 00000107740E28E0 000001077434BC93
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:DPptwpnHnxwZsvrPWDTloaTyDTO (int,bool) 00000107740B3330 - 00000107740B3520 000001077434B01E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:SpPxpCVbFnlPKAKlaTMDXPNOeSt (Rewired.KeyboardMap,Rewired.BoolOption) 0000010774012050 - 0000010774012130 0000010774348559
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_controllers () 0000010774065D60 - 0000010774065D90 00000107743497D0
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:NmntqrZXKsKxUpOPLUqWfrCvVwY (Rewired.Controller,Rewired.ControllerMap) 000001077400CBC0 - 000001077400CCB0 00000107743483FE
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:BakeMap (Rewired.ControllerMap) 0000010773F054D0 - 0000010773F05680 00000107743442C6
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:get_Count () 00000107740AED80 - 00000107740AEDB0 000001077434AF00
    Mono: AOT FOUND AOT compiled code for cNTVnYhhMLYHtJghIKJWTMwiAvh:get_Item (int) 00000107740AEE70 - 00000107740AEF40 000001077434AF10
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:BakeActionElementMap (Rewired.ActionElementMap) 0000010773F05680 - 0000010773F05960 00000107743442D0
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:GetKeyName (UnityEngine.KeyCode) 0000010773F043D0 - 0000010773F04470 0000010774344288
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:IndexOf (int[],int) 00000107740D73C0 - 00000107740D74D0 000001077434B904
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:ryuoTaJyuKIrWBDIvKuwCisPajgI (T,Rewired.BoolOption) 0000010773FE4400 - 0000010773FE4750 00000107743478FD
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:VZlfeUGJndTQjBLhmUKzayeZvgg (int,int) 0000010773FE51D0 - 0000010773FE5450 0000010774347917
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:FindMouseMap_Game (int,int) 0000010773F76820 - 0000010773F76990 0000010774345EA1
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ControllerMap_Editor:QtGlIWgkFskHutUFBJKBMgAvGPc (System.Func`2<int, bool>) 0000010773FE8BF0 - 0000010773FE8C90 00000107743479B9
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:.ctor () 0000010773FDB490 - 0000010773FDB560 00000107743476A1
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:AddActionMapping_BeforeBake (Rewired.ActionElementMap) 0000010773FDE360 - 0000010773FDE420 000001077434778F
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:xPkaQWqrRGVjDWdGOqEFnKdvdeZC (Rewired.MouseMap,Rewired.BoolOption) 0000010774013890 - 0000010774013970 00000107743485CB
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:BakeMap (Rewired.ControllerMap) 0000010773EF5C80 - 0000010773EF5E50 0000010774343DFD
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithMap:BakeMap (Rewired.ControllerMap) 0000010773EEF9B0 - 0000010773EEFB70 0000010774343CEC
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:BakeActionElementMap (Rewired.ActionElementMap) 0000010773EF5E50 - 0000010773EF6080 0000010774343E09
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetButtonIndex (int) 0000010773FEC530 - 0000010773FEC640 0000010774347A5B
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetElementIdentifierName (int) 0000010773FEC0E0 - 0000010773FEC1B0 0000010774347A4F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.ControllerElementIdentifier>:FhSWBgMaqfDFmahUJQZQpInthIR (int) 0000010774130B20 - 0000010774130ED0 000001077434D70D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.IntComparer:Equals (int,int) 00000107740AE3E0 - 00000107740AE410 000001077434AECC
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    [308:] EXCEPTION handling: FormatException
    Invalid format for Guid.Guid(string).
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetActions_Copy () 0000010773F624E0 - 0000010773F62650 0000010774345B53
    Mono: AOT FOUND AOT compiled code for System.StringComparer:.cctor () 0000010770F16DA0 - 0000010770F16EC0 0000010771433E17
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_InvariantCulture () 0000010770F5E8E0 - 0000010770F5E900 000001077143558F
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_CompareInfo () 0000010770F60860 - 0000010770F60990 00000107714356A9
    Mono: AOT FOUND AOT compiled code for System.Globalization.CompareInfo:.cctor () 0000010770F5B6F0 - 0000010770F5B770 000001077143543A
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:get_IsReady () 0000010770E53CF0 - 0000010770E53D10 0000010771430241
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:.cctor () 0000010770E522C0 - 0000010770E52770 0000010771430166
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:GetResource (string) 0000010770E53D10 - 0000010770E53D80 0000010771430246
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Reflection.Assembly:GetManifestResourceInternal (System.Reflection.Assembly*,string,int&,System.Reflection.Module&) 0000010770FB05D0 - 0000010770FB0690 000001077143750C
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:UInt32FromBytePtr (byte*,uint) 0000010770E53D80 - 0000010770E53DF0 0000010771430249
    Mono: AOT FOUND AOT compiled code for System.Globalization.CompareInfo:.ctor (System.Globalization.CultureInfo) 0000010770F5B3C0 - 0000010770F5B6F0 0000010771435422
    Mono: AOT FOUND AOT compiled code for int:GetHashCode () 0000010770E03400 - 0000010770E03420 000001077142EB91
    Mono: AOT FOUND function 'ut_87' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.cctor () 0000010770E55380 - 0000010770E55410 00000107714302FF
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.ctor (System.Globalization.CultureInfo) 0000010770E54D90 - 0000010770E55380 00000107714302F8
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_TextInfo () 0000010770F5FE90 - 0000010770F5FFA0 000001077143566A
    Mono: AOT FOUND AOT compiled code for System.Globalization.CultureInfo:get_Name () 0000010770F5FB30 - 0000010770F5FB60 0000010771435654
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:FillCJK (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 0000010770E53DF0 - 0000010770E53EB0 000001077143024C
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:FillCJKCore (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 0000010770E53EB0 - 0000010770E545E0 0000010771430251
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:Init (int,System.Collections.Generic.IEqualityComparer`1<string>) 000001077119CCE0 - 000001077119CDE0 000001077144180A
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1:.ctor () 0000010771191520 - 0000010771191570 00000107714414B5
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_4' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_6' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:InitArrays (int) 000001077119CDE0 - 000001077119CFA0 000001077144180E
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:Add (string,int) 000001077119D6B0 - 000001077119DCD0 000001077144182E
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.GenericEqualityComparer`1:GetHashCode (T) 0000010771191570 - 00000107711915C0 00000107714414B7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.Dictionary`2<string, int>:TryGetValue (string,int&) 000001077119F140 - 000001077119F440 0000010771441873
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:SetCJKReferences (string,Mono.Globalization.Unicode.CodePointIndexer&,byte*&,byte*&,Mono.Globalization.Unicode.CodePointIndexer&,byte*&) 0000010770E52FE0 - 0000010770E532F0 00000107714301BB
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:GetTailoringInfo (int) 0000010770E52770 - 0000010770E52880 000001077143018E
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.ContractionComparer:.cctor () 0000010770E51EE0 - 0000010770E51F10 0000010771430142
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.Level2MapComparer:.cctor () 0000010770E521B0 - 0000010770E521E0 0000010771430155
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.MSCompatUnicodeTable:BuildTailoringTables (System.Globalization.CultureInfo,Mono.Globalization.Unicode.TailoringInfo,Mono.Globalization.Unicode.Contraction[]&,Mono.Globalization.Unicode.Level2Map[]&) 0000010770E52880 - 0000010770E52FE0 0000010771430197
    Mono: AOT FOUND AOT compiled code for System.Runtime.InteropServices.Marshal:Copy (intptr,char[],int,int) 0000010771033A90 - 0000010771033AD0 0000010771439993
    Mono: AOT FOUND AOT compiled code for System.Runtime.InteropServices.Marshal:.cctor () 0000010771033420 - 0000010771033490 0000010771439942
    Mono: AOT FOUND AOT compiled code for System.Environment:get_OSVersion () 0000010770EF9710 - 0000010770EF97B0 00000107714335CB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:GetOSVersionString () 0000010770EF96A0 - 0000010770EF9710 00000107714335C9
    Mono: AOT FOUND AOT compiled code for System.Version:CreateFromString (string) 0000010770F2A290 - 0000010770F2A4B0 0000010771434418
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Environment:get_Platform () 0000010770EF9630 - 0000010770EF96A0 00000107714335C7
    Mono: AOT FOUND AOT compiled code for System.OperatingSystem:.ctor (System.PlatformID,System.Version) 0000010770F14150 - 0000010770F14210 0000010771433CFB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Runtime.InteropServices.Marshal:copy_from_unmanaged (intptr,int,System.Array,int) 0000010771033830 - 00000107710338D0 000001077143996B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-managed) string:.ctor (char*,int,int) 0000010770E102E0 - 0000010770E10310 000001077142EF18
    Mono: AOT FOUND AOT compiled code for string:CreateString (char*,int,int) 0000010770E1B0C0 - 0000010770E1B1F0 000001077142F17B
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:Sort (System.Collections.IComparer) 0000010770F31140 - 0000010770F311A0 0000010771434609
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.ContractionComparer:Compare (object,object) 0000010770E51F10 - 0000010770E52140 0000010771430149
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:ToArray (System.Type) 0000010770F312A0 - 0000010770F31320 0000010771434616
    Mono: AOT FOUND AOT compiled code for System.Array:CreateInstance (System.Type,int) 0000010770E31530 - 0000010770E315B0 000001077142F70B
    Mono: AOT FOUND AOT compiled code for System.Array:CreateInstance (System.Type,int[]) 0000010770E31730 - 0000010770E31970 000001077142F714
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Array:CreateInstanceImpl (System.Type,int[],int[]) 0000010770E307C0 - 0000010770E30850 000001077142F6DD
    Mono: AOT FOUND AOT compiled code for System.Collections.ArrayList:CopyTo (System.Array) 0000010770F307B0 - 0000010770F30810 00000107714345C3
    Mono: AOT FOUND AOT compiled code for Mono.Globalization.Unicode.SimpleCollator:.ctor (System.Globalization.CultureInfo) 0000010770E54D90 - 0000010770E55380 00000107714302F8
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:DindbEUKOJFiJmAXlIkShOCUIXic (System.Collections.Generic.List`1<Rewired.InputAction>) 0000010773FA8D60 - 0000010773FA93E0 00000107743469E7
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:ToArray () 00000107711952F0 - 00000107711953A0 0000010771441601
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN/MhdMRBqcQycFVTufNIucalACsgCB:.ctor (Rewired.InputAction,int) 0000010773FA9DC0 - 0000010773FA9EB0 0000010774346A25
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2:.ctor (int,System.Collections.Generic.IEqualityComparer`1<TKey>) 00000107740A6670 - 00000107740A67F0 000001077434AD89
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2:DindbEUKOJFiJmAXlIkShOCUIXic (int) 00000107740A8360 - 00000107740A8530 000001077434ADBF
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2:Add (TKey,TValue) 00000107740A6F60 - 00000107740A6F90 000001077434AD9F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2:zRwPuFbgGxbRHeIIhdSNliaTkKz (TKey,TValue,bool) 00000107740A8530 - 00000107740A8E40 000001077434ADC4
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.OrdinalComparer:GetHashCode (string) 0000010770F17830 - 0000010770F178F0 0000010771433E7B
    Mono: AOT FOUND AOT compiled code for char:ToUpperInvariant (char) 0000010770E10090 - 0000010770E10110 000001077142EF01
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:GetInputDataUpdateDelegate () 0000010773FB6920 - 0000010773FB6950 0000010774346D07
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetInputBehaviors_Copy () 0000010773F62650 - 0000010773F627E0 0000010774345B5B
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:Clone () 0000010773FEF240 - 0000010773FEF2D0 0000010774347B91
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:AJyHCTzbmRmHZCSfKBFezdvwyBd (Rewired.InputBehavior,Rewired.InputBehavior,bool) 0000010773FF0990 - 0000010773FF0E90 0000010774347C4B
    Mono: AOT FOUND AOT compiled code for Rewired.InputBehavior:get_nextUid () 0000010773FEED50 - 0000010773FEEE00 0000010774347B68
    Mono: AOT FOUND function 'delegate_invoke_impl_target_3' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:DindbEUKOJFiJmAXlIkShOCUIXic (System.Collections.Generic.List`1<Rewired.InputBehavior>) 0000010773FB16E0 - 0000010773FB2BC0 0000010774346BFA
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 0000010774124340 - 0000010774124440 000001077434D456
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_players () 0000010774065D30 - 0000010774065D60 00000107743497CA
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB:.ctor (System.Collections.Generic.List`1<Rewired.InputBehavior>) 0000010773FB4BA0 - 0000010773FB4E40 0000010774346C87
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:.ctor (int) 0000010771191900 - 00000107711919A0 00000107714414CD
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 000001077412ABF0 - 000001077412ACF0 000001077434D5C4
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,Rewired.InputBehavior,bool) 000001077412C580 - 000001077412CDE0 000001077434D61F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 000001077412C3E0 - 000001077412C580 000001077434D618
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB,bool) 0000010774125CD0 - 0000010774126530 000001077434D4B1
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010774125B30 - 0000010774125CD0 000001077434D4AA
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:qxQSmkrCbMuOwTdBAfBencTdUvo (Rewired.Data.ConfigVars) 0000010773F9F580 - 0000010773F9F600 00000107743467DD
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:.cctor () 0000010773F9F2D0 - 0000010773F9F300 00000107743467C3
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV:.ctor (Rewired.Config.UpdateLoopSetting) 0000010773FA8630 - 0000010773FA8870 00000107743469BF
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:.ctor (int,System.Collections.Generic.IEqualityComparer`1<int>) 0000010774120150 - 0000010774120250 000001077434D388
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:zRwPuFbgGxbRHeIIhdSNliaTkKz (int,RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx,bool) 0000010774121AE0 - 0000010774122340 000001077434D3E3
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:DindbEUKOJFiJmAXlIkShOCUIXic (int) 0000010774121940 - 0000010774121AE0 000001077434D3DC
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:AYqUOwOmQGaNzlEqxJmaNJPBClfB (int) 0000010773FA9560 - 0000010773FA9650 00000107743469FD
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, ThYjtQgRQvCxZGbNYUbsMKnGOTx/aNfYzQdClaKqFqLjSaMQxPkJfBB>:FhSWBgMaqfDFmahUJQZQpInthIR (int) 0000010774125780 - 0000010774125B30 000001077434D4A2
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:TryGetValue (int,Rewired.InputBehavior&) 000001077412DAE0 - 000001077412DBF0 000001077434D63C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, Rewired.InputBehavior>:FhSWBgMaqfDFmahUJQZQpInthIR (int) 000001077412C030 - 000001077412C3E0 000001077434D610
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<Rewired.InputActionSourceData>:.cctor () 000001077411B790 - 000001077411B7C0 000001077434D0FE
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:.ctor (int,int,string,Rewired.InputBehavior,Rewired.Data.ConfigVars) 0000010773F9F300 - 0000010773F9F580 00000107743467CB
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe:.ctor (Rewired.Config.UpdateLoopSetting,Rewired.InputBehavior) 0000010773FA6760 - 0000010773FA69C0 0000010774346958
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:.ctor (Rewired.InputBehavior) 0000010773FA7210 - 0000010773FA75F0 0000010774346985
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:ObgDhDLlYeZKufJNuqLQhVCdwJC () 0000010773FA84A0 - 0000010773FA8600 00000107743469B9
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:VaoSeBwUnwrFvnaRCWqKLTOnyAd () 0000010773FA8120 - 0000010773FA84A0 00000107743469B1
    Mono: AOT FOUND AOT compiled code for aMKryKeZCweXDfKqkQuZuCBIVUO:XJHjikjbhQPuKWVbSfbamNjpCOqa () 0000010773ED8B90 - 0000010773ED8CB0 0000010774343688
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:XJHjikjbhQPuKWVbSfbamNjpCOqa () 0000010773ED7FD0 - 0000010773ED8110 000001077434366B
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:populate<T> (T[]) 00000107740D8640 - 00000107740D86E0 000001077434B93C
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for kAyAuzAzeygpEQWFDQzAwitdtyq:.ctor () 0000010773EE0460 - 0000010773EE0470 00000107743437E6
    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1<Rewired.InputActionSourceData>:.ctor (System.Collections.Generic.IList`1<Rewired.InputActionSourceData>) 000001077411F650 - 000001077411F6C0 000001077434D326
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_2 (intptr,intptr,intptr) 000001077122B6D0 - 000001077122B760 0000010771444629
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) object:__icall_wrapper_helper_stelem_ref_check (object,object) 00000107712281B0 - 0000010771228230 0000010771444559
    Mono: AOT FOUND AOT compiled code for wkwvdclLwICmufCWPAXIESAhwhMq:.ctor () 0000010773ED9A80 - 0000010773ED9B40 00000107743436C9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for tBasxZatbsiZMxDTNVALpbZSDVC:.ctor () 0000010773ED9FD0 - 0000010773EDA040 00000107743436DB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:Initialize () 0000010773FB6680 - 0000010773FB6780 0000010774346CF5
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo:Awake () 000001077335CA40 - 000001077335CAE0 00000107737295B0
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:add_ControllerConnectedEvent (System.Action`1<Rewired.ControllerStatusChangedEventArgs>) 00000107740658D0 - 0000010774065940 000001077434977E
    Mono: AOT FOUND AOT compiled code for UnityEngine.MonoBehaviour:StartCoroutine (System.Collections.IEnumerator) 0000010771AB3360 - 0000010771AB3380 0000010771F99D20
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.MonoBehaviour:StartCoroutine_Auto (UnityEngine.MonoBehaviour*,System.Collections.IEnumerator) 0000010771AB3380 - 0000010771AB3430 0000010771F99D22
    Mono: AOT FOUND AOT compiled code for UnityEngine.SetupCoroutine:InvokeMoveNext (System.Collections.IEnumerator,intptr) 0000010771BCEBB0 - 0000010771BCECF0 0000010771F9EFEB
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_object_intptr (object,intptr,intptr,intptr) 0000010771D0E4A0 - 0000010771D0E560 0000010771FA6BB4
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo/<Go>c__Iterator1C:MoveNext () 00000107733F80C0 - 00000107733F8210 000001077372B5BD
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo/<Go>c__Iterator1C:System.Collections.IEnumerator.get_Current () 00000107733F8090 - 00000107733F80C0 000001077372B5BB
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr) 00000107734B45A0 - 00000107734B4660 000001077372FAE9
    Mono: AOT FOUND AOT compiled code for UnityEngine.SceneManagement.SceneManager:Internal_SceneLoaded (UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode) 0000010771AD2E80 - 0000010771AD2EF0 0000010771F9A7A6
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_Scene_int (object,intptr,intptr,intptr) 0000010771CA5900 - 0000010771CA59E0 0000010771FA4A74
    Mono: gc took 12887 usecsMono: AOT FOUND AOT compiled code for UnityEngine.Coroutine:Finalize () 0000010771A44C00 - 0000010771A44C40 0000010771F982CC
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Coroutine:ReleaseCoroutine (UnityEngine.Coroutine*) 0000010771A44B50 - 0000010771A44C00 0000010771F982CA
    . [ 2.741800 ] seconds to load first level
    ** CONSTRAINED MODE NOTIFICATION **
    Window has gained focus
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Start () 0000010773F9AE10 - 0000010773F9AEB0 000001077434665E
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:QqtWUdqRUivEvEiEDRwyyYmdscy () 0000010774066EC0 - 0000010774066F60 00000107743498FA
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:HoHzAqHnkBdOZyGdofdgFapYhrRT () 000001077408CC60 - 000001077408CD20 000001077434A573
    Mono: AOT FOUND AOT compiled code for System.Diagnostics.Stopwatch:Start () 0000010772253C10 - 0000010772253C80 000001077257548A
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Diagnostics.Stopwatch:GetTimestamp () 0000010772253880 - 00000107722538F0 0000010772575464
    Launch Activation Detected
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:ResourceAvailabilityChangedEventResult (bool) 0000010771BC0880 - 0000010771BC08E0 0000010771F9EAFC
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_sbyte (object,intptr,intptr,intptr) 0000010771C5F2A0 - 0000010771C5F360 0000010771FA3467
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:GPUAvailabilityChangedEventResult (int) 0000010771BC0940 - 0000010771BC09A0 0000010771F9EB08
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int (object,intptr,intptr,intptr) 0000010771C5F420 - 0000010771C5F4E0 0000010771FA346F
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:WindowActivatedChangedEventResult (UnityEngine.XboxOneCoreWindowActivationState) 0000010771BC08E0 - 0000010771BC0940 0000010771F9EB02
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:FixedUpdate () 0000010773F9AF90 - 0000010773F9B090 0000010774346666
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:Update () 0000010773F9AEB0 - 0000010773F9AF90 0000010774346662
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager_Base:DoUpdate (Rewired.UpdateLoopType) 0000010773F9B090 - 0000010773F9B2A0 000001077434666A
    Mono: AOT FOUND AOT compiled code for Rewired.InputManager:CheckRecompile () 0000010773361070 - 0000010773361080 0000010773729757
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 0000010774066F60 - 0000010774067240 0000010774349902
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 000001077408D060 - 000001077408D220 000001077434A585
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/TKyfYNtfkqZeBUxTbGDwGHsStNd/tRCEWlpUPIAuSFbFRbQbFcZeMCqS:pwBdWMCYAQPaOfIhQvRIYhRzvWO () 000001077408D390 - 000001077408D660 000001077434A597
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:Tick (uint&) 00000107740EDB90 - 00000107740EDC20 000001077434BFCE
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:Update (Rewired.UpdateLoopType) 0000010773FB6780 - 0000010773FB68B0 0000010774346D01
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:get_isReady () 00000107740F7ED0 - 00000107740F7F00 000001077434C28C
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:Update () 00000107740F8120 - 00000107740F82D0 000001077434C2A0
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:WdEnIHOHHCqAtbFHLeNccNghGsu () 00000107740F8650 - 00000107740F8910 000001077434C2BE
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOne_Gamepad_UpdatePlugin () 0000010773361340 - 0000010773361390 000001077372978D
    Mono: DllImport attempting to load: 'Gamepad'.Mono: DllImport loading location: 'G:/Data\Plugins\Gamepad.dll'.Mono: Searching for 'UpdatePlugin'.Mono: Probing 'UpdatePlugin'.Mono: Found as 'UpdatePlugin'.Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) Rewired.Utils.ExternalTools:Ext_Gamepad_UpdatePlugin () 00000107734E27F0 - 00000107734E2890 000001077373093B
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:Update () 00000107740F93B0 - 00000107740F9EA0 000001077434C2FD
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:vZVLculcsvcNYlZzqmQPvWRMlpG () 0000010773F08C70 - 0000010773F08E70 00000107743443AB
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:iuGgvriqNjwQSMVOKLfXdIqoBOw (Rewired.Platforms.Custom.CustomInputSource/Joystick[]) 0000010773FB82D0 - 0000010773FB8A30 0000010774346D56
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:cMkknAJkHTYFjllVkKNeHYYokFo () 0000010773FB7220 - 0000010773FB7300 0000010774346D27
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:pwBdWMCYAQPaOfIhQvRIYhRzvWO (Rewired.UpdateLoopType) 0000010773FAA5B0 - 0000010773FAA6D0 0000010774346A57
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF/mrxJWXaxnwTuinJWgPRpEuAmQAB:pwBdWMCYAQPaOfIhQvRIYhRzvWO () 0000010773F9D3C0 - 0000010773F9D5A0 000001077434672C
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.ExpandableArray_DataContainer`1:Clear () 0000010773F96160 - 0000010773F96360 000001077434656A
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:iciIaohgmOGHcKpGRuhQPqhuBjXb (Rewired.UpdateLoopType) 0000010773FB2BC0 - 0000010773FB31D0 0000010774346C44
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:GetKey (UnityEngine.KeyCode) 0000010771AB5B80 - 0000010771AB5BA0 0000010771F99E0C
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:.cctor () 0000010771AB5380 - 0000010771AB5390 0000010771F99DBC
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetKeyInt (int) 0000010771AB5400 - 0000010771AB5480 0000010771F99DC4
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:UpdateData (Rewired.UpdateLoopType) 0000010773F04AD0 - 0000010773F04B00 00000107743442B6
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:UpdateData (Rewired.UpdateLoopType) 0000010773EE75E0 - 0000010773EE7770 0000010774343AC2
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:FMUdGJzIXOZLSzRuMdVfYGCVEmf (Rewired.UpdateLoopType,int,Rewired.ControllerDataUpdater) 0000010773EEB200 - 0000010773EEB4C0 0000010774343BE0
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element/rLtXVOsPnPLUXiVCeWRtKqSwdFP:set_updateLoop (Rewired.UpdateLoopType) 0000010773EE7CA0 - 0000010773EE7E20 0000010774343AE4
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button/ljeJVHIIEZCbkDWueTuciFTRLhsv/zgBdWDIjAJnatXklyDhIAfXDqso:FMUdGJzIXOZLSzRuMdVfYGCVEmf (bool) 0000010773EEBA00 - 0000010773EEBB40 0000010774343C00
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:pwBdWMCYAQPaOfIhQvRIYhRzvWO (bool) 0000010773ED7C00 - 0000010773ED7DB0 0000010774343666
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:jIHSnAvSMaRZKNkRfcASKueijPS () 0000010773F06050 - 0000010773F06770 00000107743442F0
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Button:get_value () 0000010773EEA190 - 0000010773EEA220 0000010774343B88
    Mono: AOT FOUND AOT compiled code for Rewired.Keyboard:KdoSuxoCvwaulFJuHBDyCfxhnxbn (Rewired.ModifierKeyFlags) 0000010773F04790 - 0000010773F04930 00000107743442AE
    Mono: AOT FOUND AOT compiled code for Rewired.UnityUnifiedMouseSource:UpdateMouseInputData (Rewired.ControllerDataUpdater) 0000010773F9E8A0 - 0000010773F9EAC0 0000010774346788
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetAxisRaw (string) 0000010771AB5780 - 0000010771AB5800 0000010771F99DE0
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:GetButton (string) 0000010771AB5800 - 0000010771AB5880 0000010771F99DE4
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:UpdateData (Rewired.UpdateLoopType) 0000010773EF4ED0 - 0000010773EF5690 0000010774343DF5
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:igGWfALZRKmUqEHsKEIHKgHJpjG (Rewired.UpdateLoopType) 0000010773EE9080 - 0000010773EE9170 0000010774343B4D
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:set_valueRaw (single) 0000010773EE8490 - 0000010773EE8540 0000010774343B03
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm/fmyGjvAzXrwFcbcxaaVHjqMicBE:fDdVbuEjEJOyuKDkYKtaqpXUdCE (single) 0000010773EE9DE0 - 0000010773EE9F30 0000010774343B7A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:NcrPoiLNTtcvIuoIqmTxQJcWnYJ () 0000010773EE93B0 - 0000010773EE94A0 0000010774343B57
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:mlSDjipXXJUdCumNgYXwOchLvEt () 0000010773EE9570 - 0000010773EE9630 0000010774343B5F
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis/ogzCsRakMJvAXyauYwRWJaSIITm/fmyGjvAzXrwFcbcxaaVHjqMicBE:pwBdWMCYAQPaOfIhQvRIYhRzvWO (bool) 0000010773EE9970 - 0000010773EE9DE0 0000010774343B75
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:Approximately (single,single) 00000107740DEC70 - 00000107740DEF20 000001077434BB85
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:IsNear (single,single,single) 00000107740DF620 - 00000107740DF780 000001077434BBA1
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:ZSRISlzemUqpdKYpIZpYBGUFLzT (Rewired.UpdateLoopType) 0000010773FB31D0 - 0000010773FB3BB0 0000010774346C4C
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:nNtJisgwVkfsuGackwcyFEaBINz (Rewired.UpdateLoopType) 0000010773F9F600 - 0000010773F9F720 00000107743467E5
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV:XLooaBbXosHZOlocrbGXqfxAxET (Rewired.UpdateLoopType) 0000010773FA8870 - 0000010773FA8990 00000107743469CB
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Data.DictionaryNoAlloc`2<int, RYOSbRQkbojukmlMhdrTGSFvmnvM/vsBuSpfQXMAKWzaDexHkoxMrGZV/xoAPBEcPSxRdMOjdRJYigoSAfmx>:FhSWBgMaqfDFmahUJQZQpInthIR (int) 0000010774121590 - 0000010774121940 000001077434D3D4
    Mono: AOT FOUND AOT compiled code for UnityEngine.Input:get_mousePosition () 0000010771AB5E80 - 0000010771AB5ED0 0000010771F99E34
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Input:INTERNAL_get_mousePosition (UnityEngine.Vector3&) 0000010771AB5ED0 - 0000010771AB5F50 0000010771F99E38
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector3:eek:p_Subtraction (UnityEngine.Vector3,UnityEngine.Vector3) 0000010771A6D8F0 - 0000010771A6DA20 0000010771F98C88
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:GetMaps<T> (int) 0000010774002790 - 0000010774002A00 0000010774348169
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for object:ReferenceEquals (object,object) 0000010770E012A0 - 0000010770E012D0 000001077142EAE1
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for oMnedyMNEAFhkilkpwqypTCEePUF:phHrkhFAXBiaxXcIjBmIipraUAKl (Rewired.KeyboardMap) 0000010773F9CF10 - 0000010773F9D110 0000010774346718
    Mono: AOT FOUND AOT compiled code for Rewired.ActionElementMap:get_hasModifiers () 0000010773FC88C0 - 0000010773FC89B0 0000010774347071
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:gQLFhTSUwUHoJZlWISymFpyxRic (System.Action`3<bool, int, int>) 0000010773FFF3D0 - 0000010773FFF420 00000107743480C7
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:nEfyYfEbkSXylDskLOERCJBjGQb<T, TMap> (Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO<T, TMap>,Rewired.ControllerType,System.Action`3<bool, int, int>) 0000010774000450 - 00000107740010B0 00000107743480E3
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:get_Count () 000001077405C3B0 - 000001077405C430 00000107743494F0
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:LwcphjICxtqaoYgsapHNyAXCDDQ (Rewired.Keyboard,oMnedyMNEAFhkilkpwqypTCEePUF,System.Action`3<bool, int, int>) 0000010773FFF420 - 0000010773FFFAA0 00000107743480CB
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:get_Count () 0000010773FE40E0 - 0000010773FE4180 00000107743478F3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:UsWCnwQDyNiSKrDuXhIRvhnEGrQ (Rewired.Mouse,System.Action`3<bool, int, int>) 0000010773FFFAA0 - 0000010774000400 00000107743480D4
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:mMKKlCUzrdmZvVpeOHmHGwgdJHx (System.Action`3<bool, int, int>) 0000010774000400 - 0000010774000450 00000107743480DF
    Mono: AOT FOUND AOT compiled code for NHqqNzmlyePKfNovnWUCGUAVLeD:get_Item (int) 0000010773FE4180 - 0000010773FE4210 00000107743478F5
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Controller:GetButton (int) 0000010773EE61A0 - 0000010773EE6250 0000010774343A80
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:YxUFEmPAtBxiXcqKwiXscEvlWww (bool,int,int) 0000010773FB3BB0 - 0000010773FB3DA0 0000010774346C58
    Mono: AOT FOUND AOT compiled code for RBtlItJlAOIMkRYcbrGMuKCYAUN:VZlfeUGJndTQjBLhmUKzayeZvgg (int,bool) 0000010773FA9780 - 0000010773FA98D0 0000010774346A05
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:vMeEWBceCqivGJPiUfwJXywJJNAM (bool) 0000010773F9FB90 - 0000010773FA1080 0000010774346808
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithMap:wHgBqOKtJjyIRLiFgyFdgjsvGanY (Rewired.ActionElementMap,int,single&,bool&) 0000010773EEFC70 - 0000010773EF00D0 0000010774343CF6
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:gIeeVVdrQpLdjdcCKfSWLdIdOdiO () 0000010773FA1080 - 0000010773FA1710 0000010774346822
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:eek:AOSddrRhpdwOmfhAJszpOaQVLZ () 0000010773F9F720 - 0000010773F9F770 00000107743467FA
    Mono: AOT FOUND AOT compiled code for UnityEngine.Canvas:SendWillRenderCanvases () 0000010771B5E670 - 0000010771B5E6C0 0000010771F9CC79
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPreCull (UnityEngine.Camera) 0000010771AADEB0 - 0000010771AADF10 0000010771F99A89
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPreRender (UnityEngine.Camera) 0000010771AADF10 - 0000010771AADF70 0000010771F99A8F
    Mono: AOT FOUND AOT compiled code for UnityEngine.Camera:FireOnPostRender (UnityEngine.Camera) 0000010771AADF70 - 0000010771AADFD0 0000010771F99A95
    Mono: AOT FOUND AOT compiled code for UnityEngine.Event:Internal_MakeMasterEventCurrent (int) 0000010771B63020 - 0000010771B630F0 0000010771F9CDA9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:Init (UnityEngine.Event*,int) 0000010771B661A0 - 0000010771B66250 0000010771F9CE67
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:set_displayIndex (UnityEngine.Event*,int) 0000010771B674C0 - 0000010771B67570 0000010771F9CEA3
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.Event:Internal_SetNativeEvent (intptr) 0000010771B67390 - 0000010771B67410 0000010771F9CE9F
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads:.cctor () 0000010771A41030 - 0000010771A410B0 0000010771F981AC
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads/CallbackQueue:.ctor () 0000010771A41630 - 0000010771A416B0 0000010771F981CD
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOne.Threads:InvokeAllUnityMainThreadCallbacks () 0000010771A41320 - 0000010771A414F0 0000010771F981BD
    Launch Activation Detected
    Mono: Assembly Ref addref UnityEngine 000002043BABE3C0 -> System 000002043BABEF30: 5
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:OnActivatedImpl (int,int,string,string,string) 0000010771BC0C80 - 0000010771BC0EB0 0000010771F9EB24
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_int_object_object_object (object,intptr,intptr,intptr) 0000010771D0BDF0 - 0000010771D0BED0 0000010771FA6AD9
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo:ShowDebugInfo () 000001077335CB50 - 000001077335E030 00000107737295C0
    Mono: AOT FOUND AOT compiled code for UnityEngine.Debug:Log (object) 0000010771AB1380 - 0000010771AB13E0 0000010771F99B88
    Mono: AOT FOUND AOT compiled code for UnityEngine.Logger:Log (UnityEngine.LogType,object) 0000010771BE38A0 - 0000010771BE39B0 0000010771F9F878
    Mono: AOT FOUND AOT compiled code for UnityEngine.Logger:GetString (object) 0000010771BE3840 - 0000010771BE38A0 0000010771F9F874
    Mono: AOT FOUND AOT compiled code for UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) 0000010771AB0D60 - 0000010771AB0DB0 0000010771F99B44
    Mono: AOT FOUND AOT compiled code for string:Format (string,object[]) 0000010770E18120 - 0000010770E18150 000001077142F0EB
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,string,UnityEngine.Object) 0000010771AB0C50 - 0000010771AB0CE0 0000010771F99B40
    Rewired is in native mode
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for string:Concat (object,object,object) 0000010770E18CB0 - 0000010770E18DA0 000001077142F10F
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string,string) 0000010770E191B0 - 0000010770E194A0 000001077142F120
    Rewired found 0 joysticks attached.
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for System.Collections.ObjectModel.ReadOnlyCollection`1:GetEnumerator () 0000010771198940 - 00000107711989C0 00000107714416F4
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:InternalArray__IEnumerable_GetEnumerator<T> () 0000010770E2F810 - 0000010770E2F8A0 000001077142F6AB
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483654' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:.ctor (System.Array) 0000010770E3A3A0 - 0000010770E3A400 000001077142F874
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:MoveNext () 0000010770E3A4C0 - 0000010770E3A5B0 000001077142F87C
    Mono: AOT FOUND function 'ut_1161' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:get_Current () 0000010770E3A5B0 - 0000010770E3A700 000001077142F87E
    Mono: AOT FOUND function 'ut_1162' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    PlayerId = 0 is assigned 0 joysticks.
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:System.Collections.Generic.IEnumerable<T>.GetEnumerator () 0000010771191A70 - 0000010771191AE0 00000107714414D9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1/Enumerator:.ctor (System.Collections.Generic.List`1<T>) 0000010771195750 - 00000107711957C0 0000010771441621
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_5' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1/Enumerator:MoveNext () 0000010771195A80 - 0000010771195BF0 000001077144162B
    Mono: AOT FOUND function 'ut_17248' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1/Enumerator:Dispose () 00000107711958D0 - 0000010771195910 0000010771441627
    Mono: AOT FOUND function 'ut_17246' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array/InternalEnumerator`1:Dispose () 0000010770E3A480 - 0000010770E3A4C0 000001077142F87A
    Mono: AOT FOUND function 'ut_1160' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: GC Warning: Removing nonexistent thread 292
    Mono: GC Warning: Removing nonexistent thread 296
    Mono: GC Warning: Removing nonexistent thread 300
    Mono: GC Warning: Removing nonexistent thread 332
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOneInput:TriggerOnGamepadStateChange (uint,bool) 0000010771BC1010 - 0000010771BC1070 0000010771F9EB3A
    Mono: AOT FOUND AOT compiled code for (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_sbyte (object,intptr,intptr,intptr) 0000010771C60C00 - 0000010771C60CD0 0000010771FA34F3
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:TktNMVrqRNEpFDDZfmHHhsGqLjaj (uint,bool) 00000107740F82D0 - 00000107740F84C0 000001077434C2AA
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetControllerId (uint) 00000107733612C0 - 00000107733612E0 0000010773729785
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetControllerId (uint) 0000010771BC1260 - 0000010771BC12E0 0000010771F9EB52
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetControllerType (ulong) 0000010773361300 - 0000010773361320 0000010773729789
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetControllerType (ulong) 0000010771BC15F0 - 0000010771BC1670 0000010771F9EB60
    Mono: AOT FOUND AOT compiled code for string:eek:p_Equality (string,string) 0000010770E1BF80 - 0000010770E1BFA0 000001077142F1B9
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource:rppOkOQFSqPixWzIjmpkdbyoWQB (uint,bool) 00000107740F84C0 - 00000107740F8650 000001077434C2B4
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:DindbEUKOJFiJmAXlIkShOCUIXic (ulong) 00000107740F9EA0 - 00000107740FA060 000001077434C329
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ExternalTools:XboxOneInput_GetJoystickId (ulong) 0000010773361320 - 0000010773361340 000001077372978B
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) UnityEngine.XboxOneInput:GetJoystickId (ulong) 0000010771BC12E0 - 0000010771BC1360 0000010771F9EB54
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneInputSource/UuyFtGKypAmmomCuiVgHmJtVfjj:idyhvcNVToRslITkEALtshphaMH () 00000107740FA060 - 00000107740FA160 000001077434C331
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource:OnJoystickConnected () 0000010773F08B50 - 0000010773F08BC0 00000107743443A5
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:SystemDeviceConnected () 0000010773FB6B20 - 0000010773FB6BA0 0000010774346D13
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:DlFbxZUxQeEkPkdHnbcwGPuHCFnK (Rewired.Platforms.Custom.CustomInputSource/Joystick[]) 0000010773FB6C40 - 0000010773FB7220 0000010774346D1B
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:.ctor (Rewired.Platforms.Custom.CustomInputSource,System.Nullable`1<long>,int,Rewired.Platforms.Custom.CustomInputSource/Joystick,Rewired.InputSource,Rewired.Controller/Extension,System.Func`2<Rewired.BridgedControllerHWInfo, Rewired.HardwareJoystickMap_InputManager>) 0000010773FB93C0 - 0000010773FB96A0 0000010774346D82
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:MEYFBdAUCKiYOJZcQxctJEKATiBj () 0000010773FBAC00 - 0000010773FBAD60 0000010774346DC0
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:WvXQFsnlIiHhtXPbsFvRleuxDlhd () 0000010773FBA010 - 0000010773FBA0A0 0000010774346D96
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:nfbwbWztNafkZaVWRjpSkQLMIsF (Rewired.BridgedControllerHWInfo) 0000010773FB9920 - 0000010773FB9B00 0000010774346D8C
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:AmPttmhxZBIdNBwDCVVRgEZhZYI () 0000010773FBAE10 - 0000010773FBB0F0 0000010774346DC8
    Mono: AOT FOUND AOT compiled code for System.Enum:ToString () 0000010770E2D0F0 - 0000010770E2D120 000001077142F5E1
    Mono: AOT FOUND AOT compiled code for System.Enum:ToString (string) 0000010770E2D150 - 0000010770E2D1E0 000001077142F5E9
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:get_value (System.Enum*) 0000010770E2B0A0 - 0000010770E2B140 000001077142F583
    Mono: AOT FOUND AOT compiled code for System.Enum:Format (System.Type,object,string) 0000010770E2ECE0 - 0000010770E2F300 000001077142F687
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.Enum:get_underlying_type (System.Type) 0000010770E2BED0 - 0000010770E2BF50 000001077142F5B4
    Mono: AOT FOUND AOT compiled code for System.MonoType:IsDefined (System.Type,bool) 0000010770F08090 - 0000010770F080C0 0000010771433A2E
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:IsDefined (System.Reflection.ICustomAttributeProvider,System.Type,bool) 0000010770F04150 - 0000010770F04340 000001077143395D
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:.cctor () 0000010770F02C90 - 0000010770F02CF0 00000107714338E1
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:IsUserCattrProvider (object) 0000010770F02CF0 - 0000010770F02E90 00000107714338ED
    Mono: AOT FOUND AOT compiled code for (wrapper managed-to-native) System.MonoCustomAttrs:IsDefinedInternal (System.Reflection.ICustomAttributeProvider,System.Type) 0000010770F04340 - 0000010770F043C0 0000010771433963
    Mono: AOT FOUND AOT compiled code for System.MonoCustomAttrs:GetPseudoCustomAttributes (System.Reflection.ICustomAttributeProvider,System.Type) 0000010770F02F20 - 0000010770F032D0 0000010771433905
    Mono: AOT FOUND AOT compiled code for System.Type:GetPseudoCustomAttributes () 0000010770E411F0 - 0000010770E41370 000001077142FB0B
    Mono: AOT FOUND AOT compiled code for string:Format (string,object,object,object) 0000010770E18070 - 0000010770E18120 000001077142F0E7
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:GetHardwareJoystickMap_InputManager (Rewired.BridgedControllerHWInfo) 00000107740673F0 - 0000010774067440 0000010774349937
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:uESHxoZCHJhelyWhkFdOhsXcnI (Rewired.BridgedControllerHWInfo) 0000010773F0CBC0 - 0000010773F0D200 00000107743444FB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:ZvfFJnNSghnsKVlJaAcdDYKTWgY () 0000010773F0D570 - 0000010773F0D6C0 000001077434450D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:IsNullOrEmpty<T> (T[]) 00000107740D9460 - 00000107740D95A0 000001077434B96B
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483650' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Type:get_IsClass () 0000010770E3B9C0 - 0000010770E3BA30 000001077142F921
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:Matches (Rewired.BridgedControllerHWInfo,bool,bool,Rewired.InputPlatform&,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 0000010773F1A070 - 0000010773F1A7A0 000001077434482D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:Matches (Rewired.BridgedControllerHWInfo,bool,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 0000010773F4C1B0 - 0000010773F4C3C0 000001077434550C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:Matches (Rewired.BridgedControllerHWInfo,bool,int&,Rewired.Data.Mapping.HardwareJoystickMap/Platform&) 0000010773F48910 - 0000010773F48A10 0000010774345415
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:Matches (Rewired.BridgedControllerHWInfo,bool) 0000010773F4A8E0 - 0000010773F4AB00 0000010774345493
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/MatchingCriteria:Matches (Rewired.BridgedControllerHWInfo,bool) 0000010773F43B60 - 0000010773F43C30 00000107743452B9
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:get_isAllowed () 0000010773F4A890 - 0000010773F4A8E0 0000010774345491
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform:get_variantCount () 0000010773F1D790 - 0000010773F1D830 00000107743448FD
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:get_variants_base () 0000010773F4C180 - 0000010773F4C1B0 000001077434550A
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base:StringMatches (string,string,bool) 0000010773F1F6D0 - 0000010773F1F7F0 0000010774344981
    Mono: AOT FOUND AOT compiled code for string:Equals (string,System.StringComparison) 0000010770E12B50 - 0000010770E12B90 000001077142EFE9
    Mono: AOT FOUND AOT compiled code for string:Compare (string,string,System.StringComparison) 0000010770E12700 - 0000010770E12900 000001077142EFDC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform:ToHardwareJoystickMap_InputManager (Rewired.Data.Mapping.HardwareJoystickMap,Rewired.InputSource,Rewired.InputPlatform,int) 0000010773F1E360 - 0000010773F1E840 000001077434492D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T) 00000107740ED490 - 00000107740ED540 000001077434BFAB
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:DeepClone () 0000010773F4C3C0 - 0000010773F4C430 0000010774345510
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform) 0000010773F4C430 - 0000010773F4C510 0000010774345514
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform) 0000010773F4A6A0 - 0000010773F4A7A0 0000010774345481
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:DeepClone () 0000010773F4AB00 - 0000010773F4AB70 0000010774345498
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/MatchingCriteria:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base) 0000010773F4AB70 - 0000010773F4AC70 000001077434549C
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/MatchingCriteria:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/MatchingCriteria_Base) 0000010773F43C30 - 0000010773F43D00 00000107743452BD
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:ShallowCopy<T> (T[]) 00000107740D29F0 - 00000107740D2B20 000001077434B848
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:DeepClone () 0000010773F4B2A0 - 0000010773F4B310 00000107743454B4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base) 0000010773F4B310 - 0000010773F4B430 00000107743454B8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Elements_Base) 0000010773F1EEE0 - 0000010773F1EF40 000001077434495D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483651' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:DeepClone () 0000010773F1FA50 - 0000010773F1FA90 0000010774344994
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:.ctor (Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement) 0000010773F1F920 - 0000010773F1F9B0 000001077434498F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement:ImportVars (Rewired.Data.Mapping.HardwareJoystickMap/CompoundElement) 0000010773F1FA90 - 0000010773F1FB30 0000010774344998
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.ArrayTools:ShallowCopy<int> (int[]) 00000107740FA860 - 00000107740FA990 000001077434C34D
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483652' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:DeepClone () 0000010773F4B560 - 0000010773F4B5D0 00000107743454D0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Axis:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010773F4B5D0 - 0000010773F4B630 00000107743454D4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Axis:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010773F43EE0 - 0000010773F44110 00000107743452D1
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareAxisInfo:DeepClone () 0000010773EE3B40 - 0000010773EE3BC0 00000107743438A0
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:DeepClone () 0000010773F4B440 - 0000010773F4B4F0 00000107743454C4
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Button:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010773F4B4F0 - 0000010773F4B550 00000107743454CA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Button:CopyVars (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Element) 0000010773F43E30 - 0000010773F43ED0 00000107743452CB
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T[]) 00000107740ED610 - 00000107740ED770 000001077434BFB3
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483649' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_assignedButtonCount () 0000010773F48110 - 0000010773F48190 00000107743453F3
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:get_buttonCount () 0000010773F4AC80 - 0000010773F4ACF0 00000107743454A6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_assignedAxisCount () 0000010773F48190 - 0000010773F48210 00000107743453F5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:get_axisCount () 0000010773F4ACF0 - 0000010773F4AD60 00000107743454A8
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareJoystickMap_InputManager:.ctor (Rewired.HardwareControllerMapIdentifier,Rewired.Data.Mapping.HardwareJoystickMap/Platform,string,int,int,int) 0000010773FECDE0 - 0000010773FECED0 0000010774347A72
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IsElementIdentifierMapped (int) 0000010773F490D0 - 0000010773F49530 0000010774345435
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IterateAxes () 0000010773F48A10 - 0000010773F48A80 0000010774345419
    Mono: AOT FOUND AOT compiled code for System.Threading.Thread:get_ManagedThreadId () 0000010771184A00 - 0000010771184AC0 000001077144110B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.Collections.Generic.IEnumerable<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Axis>.GetEnumerator () 0000010773F4B640 - 0000010773F4B790 00000107743454DA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:MoveNext () 0000010773F4B7B0 - 0000010773F4BAD0 00000107743454E2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.Collections.Generic.IEnumerator<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Axis>.get_Current () 0000010773F4BAD0 - 0000010773F4BB00 00000107743454E8
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/ZfPwtbppqMsDgKpRSgGLyjCnkIp:System.IDisposable.Dispose () 0000010773F4BB30 - 0000010773F4BB40 00000107743454EC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetEffectiveElementIdentifierType (Rewired.ControllerElementIdentifier) 0000010773F4A520 - 0000010773F4A5A0 0000010774345479
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/Elements:GetEffectiveElementIdentifierType (Rewired.ControllerElementIdentifier) 0000010773F4AD60 - 0000010773F4AF90 00000107743454AA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:IterateButtons () 0000010773F48A80 - 0000010773F48AF0 000001077434541D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.Collections.Generic.IEnumerable<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Button>.GetEnumerator () 0000010773F4BBF0 - 0000010773F4BD50 00000107743454F2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:MoveNext () 0000010773F4BD70 - 0000010773F4C060 00000107743454FA
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.Collections.Generic.IEnumerator<Rewired.Data.Mapping.HardwareJoystickMap.Platform_Custom.Button>.get_Current () 0000010773F4C060 - 0000010773F4C090 0000010774345500
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base/jcHaxoXsHVbHipqLDcdLisOwyNMG:System.IDisposable.Dispose () 0000010773F4C0C0 - 0000010773F4C0D0 0000010774345504
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:XmZTpZLIBAsdwonMQQJXzZzYons () 0000010773FBA190 - 0000010773FBA470 0000010774346DA6
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_Axes () 0000010773F48290 - 0000010773F48450 00000107743453FB
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:HwKsyLnlHhQQvnvgPHdLiWrUHFv (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Axis) 0000010773FBA970 - 0000010773FBAB30 0000010774346DB8
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:GetAxisValue (int) 0000010773F09710 - 0000010773F097E0 00000107743443EF
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:uApTxWmfjWMbLpoUiAZieHDHMpx () 0000010773FBA470 - 0000010773FBA730 0000010774346DAC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_Buttons () 0000010773F48450 - 0000010773F48600 0000010774345401
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:zpBEioHLPACRdjjdpAFUFhrsUHk (Rewired.Data.Mapping.HardwareJoystickMap/Platform_Custom/Button) 0000010773FBA730 - 0000010773FBA910 0000010774346DB2
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.Custom.CustomInputSource/Joystick:GetButtonValue (int) 0000010773F097E0 - 0000010773F098F0 00000107743443F1
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:HSYzVmCPInrKoJrFHbgLptOESBW (int,int,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>) 0000010773FB7300 - 0000010773FB7700 0000010774346D2B
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1:Sort (System.Comparison`1<T>) 0000010771195150 - 0000010771195240 00000107714415F9
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_6' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for System.Array:SortImpl<T> (T[],int,System.Comparison`1<T>) 0000010770E373C0 - 0000010770E374B0 000001077142F81E
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:DTAugjZNTjJJjMhOvAGAguWNNIa (int,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL/CndGqxdMAppWObTDcEGyJVkeGWhE) 0000010773FB7F60 - 0000010773FB8240 0000010774346D50
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:LfIydlYVfHVeLVxECMEhIBWBFRd (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL/CndGqxdMAppWObTDcEGyJVkeGWhE) 0000010773FBBC60 - 0000010773FBBDE0 0000010774346DF8
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:aYiAxHaSFzkEdGZRVTfnEctlcrLW (System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>) 0000010773FB79D0 - 0000010773FB7B30 0000010774346D44
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:gDzyeHpnFFFJTXIoymUbFAiVXvY (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ) 0000010773FBB450 - 0000010773FBBB20 0000010774346DEE
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/ACHJcItmEzRlmHGgHgwwmtQfTbL:KLvEfiBtEiZIABoHhXQSXIinILi (int,int) 0000010773FBBF00 - 0000010773FBC070 0000010774346E00
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:rjTYywpgayUZTpIWroOdBfgcCSK (Rewired.UpdateControllerInfoEventArgs) 00000107740682F0 - 0000010774068340 00000107743499DF
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:BSSNtnWryRyuDUwoqseVvqJNddY (Rewired.UpdateControllerInfoEventArgs) 0000010773FAA970 - 0000010773FAABF0 0000010774346A5F
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_rewiredId () 0000010773FB9100 - 0000010773FB9130 0000010774346D6C
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:DvujOiDiZtdiEmADfrdQYLyicdi (int,ThYjtQgRQvCxZGbNYUbsMKnGOTx/YHgqrgupdZenOKhbzrOHBPaSxCHY) 0000010773FAAC30 - 0000010773FAAE60 0000010774346A69
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:CmFEKOidZkhdqFfZtyzUijuCbfse (System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,System.Collections.Generic.List`1<Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ>,bool) 0000010773FB8A30 - 0000010773FB8D30 0000010774346D5A
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:eek:GpLbkdUtqtSdAsoWMhNWPqlWVq (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,bool) 0000010773FB8D30 - 0000010773FB8E30 0000010774346D5E
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:NRQqgJFqBnEYqEeILgkyHFLRXFJ (Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ,bool) 0000010773FB8E30 - 0000010773FB8FE0 0000010774346D62
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:ToBridgedController () 0000010773FBA0A0 - 0000010773FBA130 0000010774346D9C
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareJoystickMap_InputManager:ToGameHardwareControllerMap () 0000010773FECED0 - 0000010773FED770 0000010774347A76
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetGameElementIdentifierIdMappings (int[]&,int[]&) 0000010773F49530 - 0000010773F49A30 000001077434544F
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetAxisCalibrationData () 0000010773F49A30 - 0000010773F4A110 0000010774345469
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:GetAxisData (Rewired.AxisRange[]&,Rewired.Data.Mapping.HardwareAxisInfo[]&) 0000010773F4A110 - 0000010773F4A520 000001077434546F
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MiscTools:DeepClone<T> (T,bool) 00000107740ED540 - 00000107740ED610 000001077434BFAF
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform_XboxOne_Base:get_elements_base () 0000010773F488D0 - 0000010773F48900 0000010774345411
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:Add (int) 0000010771C13370 - 0000010771C13490 0000010771FA116F
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:GrowIfNeeded (int) 0000010771C13490 - 0000010771C13550 0000010771FA1175
    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1<int>:set_Capacity (int) 0000010771C160D0 - 0000010771C16150 0000010771FA1307
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<int> (int[]&,int) 0000010771D31790 - 0000010771D317F0 0000010771FA7933
    Mono: AOT FOUND AOT compiled code for System.Array:Resize<int> (int[]&,int,int) 0000010771D673D0 - 0000010771D674A0 0000010771FA9293
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:IENSPzqJChjqKNSJMbECYzYkHjk (Rewired.BridgedController) 0000010774067CE0 - 0000010774067F00 00000107743499B3
    Mono: AOT FOUND AOT compiled code for ThYjtQgRQvCxZGbNYUbsMKnGOTx:vmTCgAloVPQKpDMEoEHmRZwdLZz (Rewired.BridgedController) 0000010773FB4240 - 0000010773FB4540 0000010774346C60
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:.ctor (Rewired.BridgedController) 0000010773EFFE30 - 0000010773F00400 0000010774344183
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_name () 0000010773FB91E0 - 0000010773FB92E0 0000010774346D74
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:Clone () 00000107740F78A0 - 00000107740F78E0 000001077434C274
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:.ctor (Rewired.Platforms.XboxOne.XboxOneGamepadExtension) 00000107740F60D0 - 00000107740F6180 000001077434C230
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetAxis2DData (int) 0000010773FEC8A0 - 0000010773FECAC0 0000010774347A64
    Mono: AOT FOUND AOT compiled code for Rewired.HardwareControllerMap_Game:GetAxisIndex (int) 0000010773FEC1B0 - 0000010773FEC2C0 0000010774347A52
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:.ctor (string,Rewired.Controller/Axis,Rewired.Controller/Axis,int,int,Rewired.CalibrationMap) 0000010773EED330 - 0000010773EED410 0000010774343C62
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:.ctor (string,Rewired.CompoundControllerElementType) 0000010773EEBF00 - 0000010773EEBFB0 0000010774343C16
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_elementCapacity () 0000010773EECF20 - 0000010773EECF30 0000010774343C50
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:dBRSDcMSCqbbrGSmqWfeibbMgfM (Rewired.Controller/Element,int) 0000010773EEC4A0 - 0000010773EEC650 0000010774343C26
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:MlFNOtuTuVrIJzUJEvUGpceTqab (Rewired.Controller/Element) 0000010773EEC7B0 - 0000010773EEC970 0000010774343C3C
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:szXIIdGptawjIKqtsmxWhSqWDkI () 0000010773EECDA0 - 0000010773EECEC0 0000010774343C4A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:EHgMmeLDawvxhNBbSinqFpKKNRBA (Rewired.Controller/Element,int,int) 0000010773EEC970 - 0000010773EECB50 0000010774343C40
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Element:AhbgPrYGWFWGezVUEGpGkFElcXA () 0000010773EE7B70 - 0000010773EE7BE0 0000010774343ADA
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:qlakjiUEBpCvpmRcpEPTsfodSNg (Rewired.Joystick) 0000010773FC51F0 - 0000010773FC55B0 0000010774346F8B
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:iDHKdFSbiQpGpdkMMdSVKKakiRnO (Rewired.Joystick) 0000010773FC73B0 - 0000010773FC77E0 0000010774346FF4
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:IlloQJVByIXOKCTtmFQqmJxsPwP () 0000010773FC7BA0 - 0000010773FC7E80 0000010774346FFC
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:KYvQitcOYAKijOuwXJuyIPMxIIOH (int) 0000010773FC7E80 - 0000010773FC8250 0000010774347000
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/koAAqAKUNJyqaYLcFqHGdBZhntt:VZlfeUGJndTQjBLhmUKzayeZvgg (int) 000001077405D8B0 - 000001077405D9E0 0000010774349534
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:iRBseKhVoZjevzArbzVxZwxnRhl (Rewired.Joystick) 0000010773FC77E0 - 0000010773FC7BA0 0000010774346FF8
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:GWVlFLqCHackValLcewHTHwebvWW (Rewired.Joystick,bool) 0000010773FFE440 - 0000010773FFE750 0000010774348084
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:ThgAOSJOJZHymvNoKSpmHkNQNlDB (int) 000001077405CC00 - 000001077405CDC0 0000010774349508
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper:RemoveJoystickFromAllPlayers (Rewired.Joystick,bool) 0000010774069E20 - 0000010774069E70 0000010774349AF8
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:hWMZHHrbTByqSqwtuQLpMXLiPBY (Rewired.Joystick,bool) 0000010773FC6BA0 - 0000010773FC6D60 0000010774346FDC
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:wafYFEKRTjfMhIKDoPAuIArHCGG (Rewired.Joystick) 0000010773FFE930 - 0000010773FFE9D0 0000010774348096
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:wafYFEKRTjfMhIKDoPAuIArHCGG (int) 0000010773FFE810 - 0000010773FFE930 0000010774348092
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:lSOjEbCkPTjyeJFxXCIMDdsBPHfm (int) 000001077405C630 - 000001077405C6D0 00000107743494F8
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:VZlfeUGJndTQjBLhmUKzayeZvgg (int) 000001077405CE10 - 000001077405CFD0 000001077434950E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:WUPbdXoBxYoAKvFMdTGnzCkSXiE (int) 000001077405C830 - 000001077405CAA0 00000107743494FE
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:XLKfQndCCcgzkgUBrNGdXaHljNHQ (Rewired.Joystick,bool) 000001077400C3B0 - 000001077400C590 00000107743483E6
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:baZAwGBUaCsUKPWYyREgnuENJPkB (Rewired.Joystick,NHqqNzmlyePKfNovnWUCGUAVLeD<Rewired.JoystickMap>,CojNFkqScloNTjLVKGDWzcnkFEA,bool) 000001077400C590 - 000001077400C7B0 00000107743483EC
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:yxraqPtXdkpiiiSviPWAriGZJVE (Rewired.Joystick,int,int) 0000010773F730F0 - 0000010773F73AA0 0000010774345E05
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:NxRvXjvUCpabtLzEXMPGXnaYNjq (System.Guid) 0000010774067440 - 0000010774067490 000001077434993B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:GetHardwareJoystickMap (System.Guid) 0000010773F0C310 - 0000010773F0C5C0 00000107743444E3
    Mono: AOT FOUND AOT compiled code for System.Guid:eek:p_Equality (System.Guid,System.Guid) 0000010770EFE2D0 - 0000010770EFE300 000001077143376B
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:mKZtkSThcFimChcfqomOwTUMUuF (int,System.Guid,int,bool) 0000010773F73AA0 - 0000010773F73B90 0000010774345E19
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetJoystickMap (int,System.Guid,int) 0000010773F71C60 - 0000010773F71ED0 0000010774345DCF
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_defaultHardwareJoystickMapGuid () 00000107740664C0 - 0000010774066560 0000010774349860
    Mono: AOT FOUND AOT compiled code for Rewired.Data.ControllerDataFiles:get_defaultHardwareJoystickMapGuid () 0000010773F0B370 - 0000010773F0B440 00000107743444B5
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.ControllerMap_Editor:OaLWxLdpdBtUhQySsQIfzfcgfoSJ (System.Func`2<int, bool>,Rewired.HardwareControllerMapIdentifier,Rewired.Data.Mapping.HardwareJoystickMap,bool) 0000010773FE8AB0 - 0000010773FE8B50 00000107743479B1
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:IndexOfElementIdentifier (int) 0000010773F19B20 - 0000010773F19CB0 000001077434481D
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap:GetSpecificPlatformRoot (Rewired.InputPlatform) 0000010773F1D1A0 - 0000010773F1D640 00000107743448EF
    Mono: AOT FOUND AOT compiled code for Rewired.Data.Mapping.HardwareJoystickMap/Platform:GetPlatformMap (int) 0000010773F1E210 - 0000010773F1E2D0 0000010774344927
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO/hkRyBafMvcDMckldpczLZiZsYAZm:.ctor (T,NHqqNzmlyePKfNovnWUCGUAVLeD<TMap>) 000001077405D340 - 000001077405D3A0 000001077434951B
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:ryuoTaJyuKIrWBDIvKuwCisPajgI (Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO/hkRyBafMvcDMckldpczLZiZsYAZm<T, TMap>) 000001077405C720 - 000001077405C830 00000107743494FC
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_1' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/koAAqAKUNJyqaYLcFqHGdBZhntt:gDzyeHpnFFFJTXIoymUbFAiVXvY (Rewired.Joystick,NHqqNzmlyePKfNovnWUCGUAVLeD<Rewired.JoystickMap>) 000001077405D460 - 000001077405D6B0 0000010774349526
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:nzHMMmZsCKIVRGwPvqkuqMwlnRz (Rewired.ControllerStatusChangedEventArgs) 00000107740680A0 - 0000010774068190 00000107743499C5
    Mono: AOT FOUND AOT compiled code for ShowRewiredJoystickInfo:OnControllerConnected (Rewired.ControllerStatusChangedEventArgs) 000001077335CB30 - 000001077335CB50 00000107737295BE
    Rewired is in native mode
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Rewired found 1 joysticks attached.
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for System.Guid:eek:p_Inequality (System.Guid,System.Guid) 0000010770EFE300 - 0000010770EFE340 000001077143376F
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/ControllerHelper:IsControllerAssigned (Rewired.ControllerType,Rewired.Controller) 00000107740698B0 - 0000010774069900 0000010774349AC5
    Mono: AOT FOUND AOT compiled code for hgXSFtspJeSTWmKzIqPYtiUTDgv:vlDDNekyDHohwfVNiYADtEhdtdU (Rewired.ControllerType,int) 0000010773FC6440 - 0000010773FC65A0 0000010774346FC6
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:ContainsController (Rewired.ControllerType,int) 0000010773FFCCA0 - 0000010773FFCD90 0000010774348029
    [0] Joystick: Controller 1
    Hardware Name: Windows.Xbox.Input.Gamepad
    Is Recognized: Yes
    Is Assigned: Yes
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    PlayerId = 0 is assigned 1 joysticks.
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for System.Collections.Generic.List`1/Enumerator:get_Current () 0000010771195BF0 - 0000010771195C30 000001077144162D
    Mono: AOT FOUND function 'ut_17249' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for string:Concat (string,string,string,string) 0000010770E194A0 - 0000010770E19790 000001077142F127
    Joystick: Controller 1
    Is Recognized: Yes
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper:GetMaps (Rewired.ControllerType,int) 0000010774002A00 - 0000010774002AF0 0000010774348179
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper/NYLfrqsokqxGKXsQPenmFCnAjZF:System.Collections.Generic.IEnumerable<Rewired.ControllerMap>.GetEnumerator () 000001077401FDD0 - 000001077401FF80 000001077434881C
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper/NYLfrqsokqxGKXsQPenmFCnAjZF:MoveNext () 000001077401FFA0 - 0000010774020C20 0000010774348824
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO:get_Item (int) 000001077405C460 - 000001077405C4F0 00000107743494F4
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_0' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper/NYLfrqsokqxGKXsQPenmFCnAjZF:System.Collections.Generic.IEnumerator<Rewired.ControllerMap>.get_Current () 0000010774020C20 - 0000010774020C50 000001077434882C
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_mapping () 0000010774065D90 - 0000010774065DC0 00000107743497D6
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/MappingHelper:GetMapCategory (int) 0000010774088C60 - 0000010774088CB0 000001077434A2E2
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetMapCategoryById (int) 0000010773F6AFD0 - 0000010773F6B180 0000010774345CC2
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/MappingHelper:GetJoystickLayout (int) 0000010774089520 - 0000010774089570 000001077434A342
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetJoystickLayoutById (int) 0000010773F6CA30 - 0000010773F6CB00 0000010774345D01
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:IndexOfJoystickLayout (int) 0000010773F6CBD0 - 0000010773F6CD40 0000010774345D07
    Mono: AOT FOUND AOT compiled code for bool:.cctor () 0000010770E26350 - 0000010770E26390 000001077142F3FE
    Mono: AOT FOUND AOT compiled code for bool:ToString () 0000010770E26C20 - 0000010770E26C60 000001077142F450
    Mono: AOT FOUND function 'ut_861' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Controller Map:
    Category = Game
    Layout = Default
    enabled = True
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:GetElementMaps () 0000010773FD27A0 - 0000010773FD29F0 0000010774347395
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:get_elementMapCount () 0000010773FDB2E0 - 0000010773FDB320 0000010774347693
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:get_axisMapCount () 0000010773FDB320 - 0000010773FDB3A0 0000010774347695
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:get_buttonMapCount () 0000010773FD1390 - 0000010773FD1410 000001077434731F
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:get_AllMaps () 0000010773FDB3A0 - 0000010773FDB460 0000010774347699
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes/ZrXoTErHgHaWrDdvkJyZcQcFBOfN:System.Collections.Generic.IEnumerable<Rewired.ActionElementMap>.GetEnumerator () 0000010773FDF920 - 0000010773FDFA80 00000107743477F7
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes/ZrXoTErHgHaWrDdvkJyZcQcFBOfN:MoveNext () 0000010773FDFAA0 - 0000010773FDFFD0 00000107743477FF
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:get_AllMaps () 0000010773FD1410 - 0000010773FD1480 0000010774347325
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap/BciNhkzACWrlNhtAxOBKLkyyWbn:System.Collections.Generic.IEnumerable<Rewired.ActionElementMap>.GetEnumerator () 0000010773FD7D80 - 0000010773FD7EE0 00000107743475D5
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap/BciNhkzACWrlNhtAxOBKLkyyWbn:MoveNext () 0000010773FD7F00 - 0000010773FD81A0 00000107743475DD
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap/BciNhkzACWrlNhtAxOBKLkyyWbn:System.Collections.Generic.IEnumerator<Rewired.ActionElementMap>.get_Current () 0000010773FD81A0 - 0000010773FD81D0 00000107743475E7
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes/ZrXoTErHgHaWrDdvkJyZcQcFBOfN:System.Collections.Generic.IEnumerator<Rewired.ActionElementMap>.get_Current () 0000010773FDFFD0 - 0000010773FE0000 000001077434780E
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes/ZrXoTErHgHaWrDdvkJyZcQcFBOfN:mpxgTSkVsYtnXdCAgTAQspIjOdR () 0000010773FE0160 - 0000010773FE01F0 000001077434781A
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap/BciNhkzACWrlNhtAxOBKLkyyWbn:System.IDisposable.Dispose () 0000010773FD8200 - 0000010773FD8210 00000107743475EB
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes/ZrXoTErHgHaWrDdvkJyZcQcFBOfN:System.IDisposable.Dispose () 0000010773FE0030 - 0000010773FE00B0 0000010774347812
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput/MappingHelper:GetAction (int) 0000010774089BE0 - 0000010774089C30 000001077434A395
    Mono: AOT FOUND AOT compiled code for Rewired.Data.UserData:GetActionById (int) 0000010773F64DA0 - 0000010773F64F20 0000010774345BCF
    Mono: AOT FOUND AOT compiled code for string:Concat (string[]) 0000010770E19950 - 0000010770E19A40 000001077142F134
    Action "Use" is bound to "A"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Eject" is bound to "B"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "EMP" is bound to "Left Shoulder"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Bomb" is bound to "Right Shoulder"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Vertical" is bound to "D-Pad Up"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Horizontal" is bound to "D-Pad Right"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Vertical" is bound to "D-Pad Down"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Negative
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Horizontal" is bound to "D-Pad Left"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Negative
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Restart" is bound to "Menu"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Quit" is bound to "View"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Horizontal" is bound to "Left Stick X"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for Rewired.ActionElementMap:get_axisType () 0000010773FC8790 - 0000010773FC87F0 0000010774347065
    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Move Vertical" is bound to "Left Stick Y"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Look Horizontal" is bound to "Right Stick X"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Look Vertical" is bound to "Right Stick Y"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Defend" is bound to "Left Trigger"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Attack" is bound to "Right Trigger"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Controller Map:
    Category = Menus
    Layout = Default
    enabled = True
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Select" is bound to "A"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Cancel" is bound to "B"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Vertical" is bound to "D-Pad Up"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Horizontal" is bound to "D-Pad Right"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Vertical" is bound to "D-Pad Down"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Negative
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Horizontal" is bound to "D-Pad Left"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Negative
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Horizontal" is bound to "Left Stick X"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Action "Menu Vertical" is bound to "Left Stick Y"
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis contribution: Positive
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Type: Normal
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Axis Range: Full
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Is inverted: False
    Stacktrace is not supported on this platform.
    (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)

    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/MapHelper/NYLfrqsokqxGKXsQPenmFCnAjZF:System.IDisposable.Dispose () 0000010774020C80 - 0000010774020C90 0000010774348830
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:get_inputManagerId () 0000010773EFFCA0 - 0000010773EFFD00 000001077434417D
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:get_inputManagerId () 0000010773FB9170 - 0000010773FB91A0 0000010774346D70
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager:UpdateControllerData (int,Rewired.ControllerDataUpdater) 0000010773FB6950 - 0000010773FB6B20 0000010774346D09
    Mono: AOT FOUND AOT compiled code for Rewired.InputManagers.CustomInputManager/gtAusevStdmzZsBTeKqssETEXnJ:FillData (Rewired.ControllerDataUpdater) 0000010773FB9D00 - 0000010773FBA010 0000010774346D92
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:UpdateData (Rewired.UpdateLoopType) 0000010773F012F0 - 0000010773F01320 00000107743441DC
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:UpdateData (Rewired.UpdateLoopType) 00000107740F7800 - 00000107740F7820 000001077434C26E
    Mono: AOT FOUND AOT compiled code for Rewired.Platforms.XboxOne.XboxOneGamepadExtension:pCYKQoRdZRNNZxwIiGEqGDPlJcJ () 00000107740F78E0 - 00000107740F7A40 000001077434C278
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.Classes.Utility.TimerAbs:Update () 00000107740CA4F0 - 00000107740CA5D0 000001077434B65C
    Mono: AOT FOUND AOT compiled code for Rewired.ReInput:get_checkNeverPressed () 0000010774066350 - 0000010774066490 000001077434984A
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:GetAxis (int) 0000010773FCAE60 - 0000010773FCAF60 000001077434716D
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:qXOoAzpzbjGQtBTMJVAgFkmAIiOb () 0000010773EE94A0 - 0000010773EE9570 0000010774343B5B
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:cswAZWCaSZCkpDqKYebjvWlInraV () 0000010773EED410 - 0000010773EED590 0000010774343C66
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:jAkjdUCmVcwOglBLwNzaeNRQbsFD () 0000010773EED590 - 0000010773EED960 0000010774343C6A
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:LVxIniEvulBwkGGhVxrxGbwuhaP<T> (int,int&) 0000010773EEC2A0 - 0000010773EEC4A0 0000010774343C22
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:get_valueRaw () 0000010773EE83F0 - 0000010773EE8490 0000010774343AFF
    Mono: AOT FOUND AOT compiled code for Rewired.CalibrationMap:mQPzmioHVAmntRBiFcvdHurYBNGC (int,int,single,single,Rewired.DeadZone2DType) 0000010773FCC3C0 - 0000010773FCD420 00000107743471C5
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:TransformAxis2DComponentValue (single,single,single,single) 00000107740D1280 - 00000107740D1510 000001077434B80D
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.MathTools:ValueInNewRange (single,single,single,single,single) 00000107740E00E0 - 00000107740E02D0 000001077434BBBD
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector2:get_magnitude () 0000010771A68490 - 0000010771A68560 0000010771F98BD0
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:ApplySensitivity (single,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 00000107740D2040 - 00000107740D2250 000001077434B81B
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_xAxis () 0000010773EECF30 - 0000010773EECF60 0000010774343C52
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/CompoundElement:HGxoDNXdCfYJyVJvIjJUhgzvojS<T> (int) 0000010773EEC110 - 0000010773EEC2A0 0000010774343C1E
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:FsLvJPvqUfGmQiSSVOeFgZdBGdbu (single) 0000010773EE8ED0 - 0000010773EE8FB0 0000010774343B43
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis2D:get_yAxis () 0000010773EECF60 - 0000010773EECF90 0000010774343C56
    Mono: AOT FOUND AOT compiled code for Rewired.Joystick:pCYKQoRdZRNNZxwIiGEqGDPlJcJ () 0000010773F01890 - 0000010773F01A10 00000107743441FD
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMapWithAxes:get_AxisMaps_orig () 0000010773FDE2F0 - 0000010773FDE360 000001077434778B
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerWithAxes:CuGEhqHggJPOnhNCAzgXdYbskpJx (Rewired.ActionElementMap,int,bool,single&) 0000010773EF5690 - 0000010773EF5C80 0000010774343DF9
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:get_value () 0000010773EE8190 - 0000010773EE82C0 0000010774343AF3
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerMap:get_ButtonMaps_orig () 0000010773FD53C0 - 0000010773FD5430 00000107743474B7
    Mono: AOT FOUND function 'rgctx_fetch_trampoline_2147483648' in AOT file 'G:\Data\Managed\mscorlib.dll.native'.
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper:OhvBjABiqmjkNPhJaSfywfwUsnc<TMap> (Rewired.ControllerWithAxes,int,int,Rewired.ActionElementMap,NHqqNzmlyePKfNovnWUCGUAVLeD<TMap>,int,single&) 00000107740010B0 - 00000107740012E0 00000107743480EB
    Mono: AOT FOUND AOT compiled code for Rewired.ControllerDataUpdater:IsUnknownHatCardinal (int) 0000010773F861E0 - 0000010773F86320 0000010774346268
    Mono: AOT FOUND AOT compiled code for Rewired.Controller/Axis:NcrPoiLNTtcvIuoIqmTxQJcWnYJ (Rewired.AxisCalibration) 0000010773EE9170 - 0000010773EE93B0 0000010774343B51
    Mono: AOT FOUND AOT compiled code for Rewired.AxisCalibration:GetCalibratedValue (single,Rewired.AxisRange,single) 0000010773FCE6A0 - 0000010773FCE9F0 0000010774347205
    Mono: AOT FOUND AOT compiled code for Rewired.Utils.InputTools:GetCalibratedAxisValueClamped (single,single,single,single,single,bool,Rewired.AxisSensitivityType,single,UnityEngine.AnimationCurve) 00000107740D1510 - 00000107740D1AB0 000001077434B811
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:SFONXfqdBaTwNCcBKaGKYdiRgWW () 0000010773FA5EF0 - 0000010773FA5FC0 000001077434692A
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:FxqamrHfiHuiuBamXQZVaLdbwfSM () 0000010773F9F770 - 0000010773F9FB90 0000010774346800
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:ngmjnPZayugLgEBmXBZxgjazSeIU () 0000010773FA7810 - 0000010773FA7AC0 0000010774346999
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:wHieIRSxsCIFmmIwZahdXaKZloe () 0000010773FA7AC0 - 0000010773FA7BB0 000001077434699D
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:WNaNQWKPdvtmEyxhitxJPzkubvu (VYUbfiGLvfeYZVKUsdEIqpGDxmO) 0000010773FA6200 - 0000010773FA6390 0000010774346942
    Mono: AOT FOUND AOT compiled code for Rewired.Player/ControllerHelper/psfetsMRRUlURdeAnfUvGQGQSqO/hkRyBafMvcDMckldpczLZiZsYAZm:SFONXfqdBaTwNCcBKaGKYdiRgWW () 000001077405D3A0 - 000001077405D3F0 000001077434951D
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:HaoFdgUloTLubsCkfCljwCGZsRw () 0000010773FA1710 - 0000010773FA23B0 000001077434682E
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:zAcckoYVHYGNTrkpuCwjVZMDdVM (single) 0000010773FA75F0 - 0000010773FA7810 0000010774346995
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:gpzTHYWoqclwitMGZvKUmbhQcEf () 0000010773FA2A30 - 0000010773FA2C10 000001077434685A
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:pcNACdjuBepZjFryKcDPbmviBiAK () 0000010773FA4200 - 0000010773FA4370 00000107743468B5
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:gIdrBbglhzcotpbqvYojvJpYNBZ (bool,bool) 0000010773FA7BB0 - 0000010773FA7DD0 00000107743469A1
    Mono: AOT FOUND AOT compiled code for aMKryKeZCweXDfKqkQuZuCBIVUO:pwBdWMCYAQPaOfIhQvRIYhRzvWO (single,bool) 0000010773ED8480 - 0000010773ED8B40 0000010774343682
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:VjpUJWQYmqDlWQMKVptDcrdgZtB () 0000010773FA6130 - 0000010773FA6200 000001077434693C
    Mono: AOT FOUND AOT compiled code for UnityEngine.Vector2:Normalize () 0000010771A67D10 - 0000010771A67E40 0000010771F98BB8
    Mono: AOT FOUND AOT compiled code for Rewired.ButtonStateRecorder:zOynRNUHZzcBBTpqswcQtGNCGMhj (int) 0000010773ED8150 - 0000010773ED8230 0000010774343670
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe:pgZmXMlNkHFnKfUIbJaVycRWFgH () 0000010773FA69C0 - 0000010773FA6B30 000001077434695F
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe/RtWGtfSrMwmAvOoPmkPNZpxsAfUI:pgZmXMlNkHFnKfUIbJaVycRWFgH () 0000010773FA7DD0 - 0000010773FA8100 00000107743469A9
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM:VaoSeBwUnwrFvnaRCWqKLTOnyAd (bool) 0000010773FA5FC0 - 0000010773FA60D0 0000010774346930
    Mono: AOT FOUND AOT compiled code for RYOSbRQkbojukmlMhdrTGSFvmnvM/zGFGnmcasIQgkHFnQFvfHipcQBLe:VaoSeBwUnwrFvnaRCWqKLTOnyAd () 0000010773FA6C30 - 0000010773FA6D50 0000010774346967
    ** CONSTRAINED MODE NOTIFICATION **
    Window has lost focus
    ** CONSTRAINED MODE NOTIFICATION **
    Window has gained focus
    ** CONSTRAINED MODE NOTIFICATION **
    Window has lost focus
    ** SUSPEND RECEIVED SHUT DOWN PROCESS RUNNING **
    . Waiting on user to finish saving
    Mono: AOT FOUND AOT compiled code for UnityEngine.XboxOnePLM:SuspendingEventResult () 0000010771BC09A0 - 0000010771BC09F0 0000010771F9EB0E
    . Shutting down GFX
    ++++++++++++++++ [ WARNING ] +++++++++++++++++++
    +
    + POTENTIAL SUSPEND TIME VIOLATION
    + App must not take more than 1 second
    +
    + Suspend watchdog indicates you took:
    + [ 1.906273 ] seconds to suspend
    +
    ++++++++++++++++ [ WARNING ] +++++++++++++++++++
     
  31. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Thanks! I don't see anything wrong in the log. Can you send your Rewired Input Manager prefab so I can look at Input Behaviors, Keyboard Maps, Mouse Maps, and Custom Controllers?

    Also, I've attached a zip with a few files. Extract this into your project, then open the scene inside the Rewired Debug folder. Delete or disable the Rewired Input Manager in the scene and add your Rewired Input Manager and build it. This will display in real-time all the Rewired.Joystick axes and buttons on any connected joysticks. Watch for any axes that are non-zero at rest. Press some buttons and move axes and watch the numbers change. L and R should be zero at rest and 1 when fully pressed.

    Also, in the lower left of the screen a real-time display of Action values will be shown. If any Action's axis value is non-zero, it will appear down there on the screen log.

    This will show whether or not the Joystick L/R triggers are actually returning non-zero values at rest. If the joystick L/R are not non-zero and there is still some Action value being logged in the lower left, then the problem has to lie in some other map such as Keyboard, Mouse, or Custom Controller.
     

    Attached Files:

  32. DanielSnd

    DanielSnd

    Joined:
    Sep 4, 2013
    Posts:
    382
    I've got a question :eek: So I'm using the controller remapping runtime UI thing that comes with Rewired. Is there something within it that I can do easily to make whatever the player remapped there be remembered next time he plays? (Playerprefs or something?) Or do I need to figure out how to build that in myself? Right now Rewired just forgets it and the player has to set his keybindings again.
     
  33. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    It already does that. Saving and loading the mappings, input behaviors, and calibration is an automatic feature of Control Mapper due to the UserDataStore_PlayerPrefs component. The only things it does not save, as explained here, is the current controller assignments and what maps are currently loaded and/or enabled.

    Maps are loaded on start (provided you haven't unchecked that option on the UserDataStore_PlayerPrefs component) and on joystick connect.
     
    DanielSnd likes this.
  34. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    Ok, so I did all that and I can definitely see the problem. It looks like the triggers are still active when not pulled. As soon as the triggers reach the deadzone, instead of returning zero, 1.176408E-08 comes through.

    I've attached my rewired prefab, and the log file.
     

    Attached Files:

  35. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Are you doing something like this to test for trigger active values?

    Code (csharp):
    1. if(player.GetAxis("Action") != 0) {
    2.     // do something
    3. }
    I was under the impression that the triggers were returning a value of 1.0 when not pressed. 1.176408E-08 is an incredibly small fractional value and is caused by floating point precision issues.

    Triggers returning 1.176408E-08 when not pressed should not be an issue if you test axis values using one of the following methods:
    • use player.GetButton("Action") if all you need to know is whether it is pressed or not. (If analog values are not required.) GetButton threshold is set in the InputBehavior assigned to the Action.
    • build in a custom button threshold by checking if(player.GetAxis("Action") > someValue). (If analog values are not required.)
    • use player.GetAxis("Action") directly if analog values are required.
    • use if(!Mathf.Approximately(player.GetAxis("Action"), 0)) if you want to know whether or not the value is non-zero.
    Floating point precision error is a standard universal issue with floating point values on all platforms and all languages. It's very risky to actually test a floating point value like if(value == otherValue) because of this. Mathf.Approximately tests whether a value is extremely close to or equal to another value:

    You can potentially also get this problem with some axes on joysticks not quite reaching a value of 1.0 when fully pressed. You shouldn't ever require either an exact value of 0 or an exact value of 1.0 or you may have issues depending on the controller attached.

    The reason the trigger may return an not-exact zero value would be the combined factors of what value the underlying hardware axis is returning modified by the dead zone scaling of the range of the trigger value. The controller dead zone size may need to be increased for these triggers on this platform due to some kind of processing of the values by the system or Unity.

    You could try increasing the dead zone value for the L/R trigger axes in the Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/MicrosoftXboxOne (Xbox One tab, Axes). It may need to be higher than the current dead zone value for this platform.
     
    Last edited: Sep 5, 2016
  36. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    You are right, I'm using a playerInput.GetAxis("Action") > 0 as GetButton didn't work with analogue triggers and unity input (as far as I remember). I just did a straight swap of code when converting over to rewired. Also, yeah, I should have recognised the low floating point value, obvious now you point it out!

    That said, changing the code to playerInput.GetButtonDown("Attack") I still get the same problem. Also, adjusting the deadzone from 0.05 to something higher seems to return a higher value. Actually. looking at it, it seems to return the last positive value before the deadzone is reached, but never returns zero. So, when I made the deadzone higher I could actually get the value to return something like 0.5 in the debug scene you made me if I released the triggers fast enough...

    Perhaps this needs a quick code fix your end to eliminate this problem?
     
  37. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    I don't understand how this could be possible. What is your Button Dead Zone setting the Input Behavior assigned to this Action? (Edit: Checked the prefab you sent. It's 0.5.) The default is 0.5, meaning GetButton/Down will never be true unless the axis value is > 0.5. An axis value of 1.176408E-08 will never activate GetButton or GetButtonDown if Button Dead Zone is set to a higher value (default of 0.5). In addition, GetButtonDown will not return TRUE for more than one frame in a row (unless you have Button Down Buffer set to non-zero), and if you're seeing the trigger stuck on when using the GetButtonDown code, I have to guess that it did not recompile or the build did not complete properly, there is somewhere else in the code that is using the old if(value != 0) or some other issue of the sort.

    The code for dead zone calculation is the shared on all platforms. I will have to look into this, but I don't see any way this value could return different results on PC or XBox One if it were just a scaling issue unless Xbox One is actually calculating numbers differently somehow even though the same code is used and the same dead zone is applied. There is no code fix that would handle this case. Instead, some kind of workaround would need to be put in place specifically for this platform.

    Edit: I just confirmed it isn't reproducible on Windows using the same data and the same calibration functions in a unit test.
     
    Last edited: Sep 6, 2016
  38. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Just to confirm what you are seeing, are you seeing this 1.176408E-08 value in the list of joystick axes up top on the test or down at the bottom where it lists the Action values? If it's down at the bottom, that lingering value is just the last log entry recorded before 0 was reached. It will never log a value of 0 otherwise all Actions would be spamming the log with 0's every frame. What you describe about releasing the trigger fast seeing a large value here just means that the trigger popped from that value to zero over the course of one frame. (You can change whether the Axis value is logged, or the GetButton value or the GetButtonDown value etc in the inspector of the object with the Logger component on it.)

    If it's up top in the list of joystick elements, that is updated every frame. A non-zero value to the left of the brackets would mean some value is lingering in the axis. If it's zero when the trigger is released, it's working correctly. (The value inside the brackets is the raw value, the value outside is the calibrated value.)

    111.png
     
    Last edited: Sep 6, 2016
  39. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    @Tomdominer I have made you another RewiredDebug.zip which contains a new scene and a new script. Please open the LogAttackDefend scene and run it. It will show you on-screen in real-time the values of the Attack and Defend Actions you have mapped to L/R. It shows the axis value, the raw axis value, the button value, the button down value, and the button up value (button down and up will just flash true for one frame). You will be able to see on-screen what the current GetButton value for the trigger is. If this value is TRUE when no trigger is pressed, there's a problem. If it's not true until you press the trigger about half-way down, it's working correctly. If this works correctly in this test scene but it still does not work correctly in your game, then it means there's likely a problem in one of your scripts processing the input.

    You can also add the LogActionValues prefab into your game (make sure it's at 0, 0, 0) and it should display the information in real-time for these two Actions on-screen. You can also enable the option to show the input sources if you want to find out if any other controllers or elements are contributing input to these Actions.
     

    Attached Files:

  40. Ben-BearFish

    Ben-BearFish

    Joined:
    Sep 6, 2011
    Posts:
    1,204
    @guavaman I'm trying to setup the Xbox One wireless controller for Windows Standalone, and despite setting up all the settings as I usually would, when I start the scene and then check the player.controllers.joysticks there is no joystick that shows up. Do you know if there are any additional steps to setting up for the Xbox One Controller to be detected?

    Under the InputManager debug info it says under Controller Joystick 0 is the Xbox Controller. So it is being detected, but just not in the code.

    [EDIT]
    So under ReInput.controllers.Joysticks[0], I'm able to get the Joystick, but if I do
    player.controllers.Joysticks[0], then the joystick is not found. I though choosing auto-assign joysticks in the Rewired setting would do so, but it seems that's not happening.
     
    Last edited: Sep 6, 2016
  41. Doghelmer

    Doghelmer

    Joined:
    Aug 30, 2014
    Posts:
    120
    I have a small suggestion for future releases. I think that the "Allow Mouse Input if Touch Supported" checkbox in the Rewired Standalone Input Module should be activated by default. (unless it actually is activated by default, and I just checked it by accident, in which case, disregard this message). I just released the game I'm working on to a larger audience, and received a number of messages from people on touchpad-based laptops who were unable to click anything. It's my screwup for not paying attention to the box in the first place, but given how many people these days are on touchpad-based laptops, it seems like having the box unchecked by default could.. well, result in more situations like mine :)
     
  42. IceBeamGames

    IceBeamGames

    Joined:
    Feb 9, 2014
    Posts:
    170
    Hey @guavaman, looks like I have to eat lots of humble pie. You were right, the debug feedback only updates if the joystick is active and the input is only returning true for a frame. The way I was handling input was convoluted and I had two locations where I was originally checking the playerInput.GetAxis("Action") > 0 because of reasons I can't be bothered to explain.

    Anyway, yeah, the GetButton stuff doesn't work actually on the original unity input when referencing an axis on the 360 / xbox one pad, hence all this input nonsense I had. Its maybe worth mentioning in the quick start guide that Rewired replaces any axis based button behaviour?

    Tom.
     
  43. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    Please show your joystick auto-assignment settings. Also show your Player settings. If you have excluded a Player from joystick auto-assignment, it will not be assigned joysticks. There has never been any issue with joystick auto-assignment.
     
  44. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    It is already the default.

    From the source code:

    Code (csharp):
    1. /// <summary>
    2. /// Allows the mouse to be used to select elements if the device also supports touch control.
    3. /// </summary>
    4. [SerializeField]
    5. [Tooltip("Allows the mouse to be used to select elements if the device also supports touch control.")]
    6. private bool m_allowMouseInputIfTouchSupported = true;
    The prefab defaults:

    DefaultSettings.png
     
  45. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    I'm glad it's working now. That's all that matters. However, I still cannot understand how the GetAxis value of the Action would ever be returned as anything except exactly 0.0 on Xbox One when the trigger isn't pressed. The dead zone of 0.05 on the triggers would prevent any microscopic input from returning when idle (unless your controller's idle point is higher than 0.05) and the way I do the calculation ensures that if the raw value is <= dead zone that a fixed 0.0 is always returned. if(player.GetAxis("Action") > 0) should actually work fine when the element has a dead zone unless some other element on another controller is returning a non-zero value for the same Action also. (You could check the contributing input sources for the Action to determine this.)

    The quick start guide isn't where explanation of how the Rewired system works goes. It's only meant to be a quick step-by-step to demonstrate the most basic setup steps. All the documentation in the Essentials and the Concepts sections explain the fundamental concepts of Rewired and the How To's section explains how to achieve specific things. And Rewired should work perfectly fine with the same method calls you use for Unity input as mentioned above (of course replacing Input. with player.).
     
    Last edited: Sep 7, 2016
  46. Doghelmer

    Doghelmer

    Joined:
    Aug 30, 2014
    Posts:
    120
    Ah, my bad!
     
  47. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    allowMouseInputIfTouchSupported was added in 1.0.0.65. If you have been using Rewired since before that version, it's possible that when you upgraded that the allowMouseInputIfTouchSupported field on your GameObject was not automatically set to true. Unity has had problems in the past setting new serialized fields to the default value specified in code when adding a new field. The success/failure may be dependent on the Unity version or other factors.
     
  48. Ben-BearFish

    Ben-BearFish

    Joined:
    Sep 6, 2011
    Posts:
    1,204
    @guavaman I realized the checkbox was the opposite of what I expected. It was exclude auto-assign when I thought it meant enable auto-assign.

    I had one last question. I setup the default Xbox One Joystick Map by clicking Create Defaults, but when trying the GetButtonDown on the RewiredActions it seems to have the buttons and pads incorrectly mapped. Is there an additional step I need to do to have that mapped, or do I need to go through and assign all the correct ids?
     
  49. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,627
    There are no special steps required. Check this: Troubleshooting - Xbox One Controller doesn't work.

    If that doesn't apply, then please post the following information:
    1. Rewired version
    2. Unity version
    3. Is this issue in the editor, build, or both?
    4. OS including version
    5. Build target
    6. Input source(s) chosen for the platform in the Rewired Input Manager
     
  50. Ben-BearFish

    Ben-BearFish

    Joined:
    Sep 6, 2011
    Posts:
    1,204
    Ah, it was due to the UnityEngine.Input conflicting with the Rewired input. I got it now from the documentation. Thanks.