linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
@ 2009-04-15 22:53 Darrick J. Wong
  2009-04-16  0:27 ` [PATCH v2] " Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-15 22:53 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Thomas Renninger, cpufreq, linux-acpi

Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
Renninger's patch last July to eliminate _PPC evaluations when the processor
driver loads, the kernel never actually reads _PPC at all!  This is problematic
if you happen to boot your non-T60 computer in a state where the BIOS _wants_
_PPC to be something other than zero.

So, put the _PPC evaluation back into acpi_processor_get_performance_info if
ignore_ppc isn't 1.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
---

 drivers/acpi/processor_perflib.c |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)


diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index cafb410..0b50e8e 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -150,13 +150,10 @@ static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
 	return 0;
 }
 
-int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
+static int __acpi_processor_ppc_has_changed(struct acpi_processor *pr)
 {
 	int ret;
 
-	if (ignore_ppc)
-		return 0;
-
 	ret = acpi_processor_get_platform_limit(pr);
 
 	if (ret < 0)
@@ -165,6 +162,14 @@ int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
 		return cpufreq_update_policy(pr->id);
 }
 
+int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
+{
+	if (ignore_ppc)
+		return 0;
+
+	return __acpi_processor_ppc_has_changed(pr);
+}
+
 void acpi_processor_ppc_init(void)
 {
 	if (!cpufreq_register_notifier
@@ -348,7 +353,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
 	if (result)
 		goto update_bios;
 
-	return 0;
+	/* We need to call _PPC once when cpufreq starts */
+	if (ignore_ppc != 1)
+		result = __acpi_processor_ppc_has_changed(pr);
+
+	return result;
 
 	/*
 	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-15 22:53 [PATCH] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0 Darrick J. Wong
@ 2009-04-16  0:27 ` Darrick J. Wong
  2009-04-16 10:01   ` Thomas Renninger
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-16  0:27 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Thomas Renninger, cpufreq, linux-acpi

Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
Renninger's patch last July to eliminate _PPC evaluations when the processor
driver loads, the kernel never actually reads _PPC at all!  This is problematic
if you happen to boot your non-T60 computer in a state where the BIOS _wants_
_PPC to be something other than zero.

So, put the _PPC evaluation back into acpi_processor_get_performance_info if
ignore_ppc isn't 1.

This second version restores the correct function call, which simplifies
the patch.  I apologize for the churn and the poor eyesight.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
---

 drivers/acpi/processor_perflib.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index cafb410..85af717 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -348,7 +348,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
 	if (result)
 		goto update_bios;
 
-	return 0;
+	/* We need to call _PPC once when cpufreq starts */
+	if (ignore_ppc != 1)
+		result = acpi_processor_get_platform_limit(pr);
+
+	return result;
 
 	/*
 	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16  0:27 ` [PATCH v2] " Darrick J. Wong
@ 2009-04-16 10:01   ` Thomas Renninger
  2009-04-16 10:32     ` Ingo Molnar
  2009-04-16 17:42     ` Darrick J. Wong
  0 siblings, 2 replies; 34+ messages in thread
From: Thomas Renninger @ 2009-04-16 10:01 UTC (permalink / raw)
  To: djwong; +Cc: linux-kernel, Ingo Molnar, cpufreq, linux-acpi

Hi,

be careful, this could break the T60 again.
Can you and Ingo place acpidump of your machines somewhere, please.

On Thursday 16 April 2009 02:27:12 Darrick J. Wong wrote:
> Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
> reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
> Renninger's patch last July to eliminate _PPC evaluations when the processor
> driver loads, the kernel never actually reads _PPC at all!
This is wrong. _PPC is only evaluated when a cpufreq driver got registered.
> This is problematic
> if you happen to boot your non-T60 computer in a state where the BIOS _wants_
> _PPC to be something other than zero.
Your machine should suffer from that since Ingo's T60 patch?

Reading the _PPC part of the ACPI spec again:
---
In order to support dynamic changes of _PPC object, Notify events on
the processor object. Notify events of type 0x80 will cause OSPM to
reevaluate any _PPC objects residing under the particular processor object
notified.
---
The *reevaluate* implies that the _PPC value has been evaluated/initialized
by the OS already and Ingo's patch would be wrong then.
I'd like to have a look at the T60's ACPI parts and find out what exactly
(or if at all) makes _PPC to return sane values, I expect it's _PDC.

Hmm, I could also imagine that Ingo's T60 patch is not needed anymore since
Yakui's patch (0ac3c571315a53c14d2733564f14ebdb911fe903).
This one could make sure that _PDC is evaluated first making the internal
ACPI _PPC state initialize and makes sure _PPC gets only called afterwards.

If this patch does not break Ingo's T60, I think this should go in.
Due to Yakui's reordering/cleanup of ACPI function calls, I think also
the notifier chain I introduced is not needed anymore and I can clean this
up if I find some time.

> So, put the _PPC evaluation back into acpi_processor_get_performance_info if
> ignore_ppc isn't 1.
> 
> This second version restores the correct function call, which simplifies
> the patch.  I apologize for the churn and the poor eyesight.
> 
> Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
> ---
> 
>  drivers/acpi/processor_perflib.c |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
> 
> 
> diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
> index cafb410..85af717 100644
> --- a/drivers/acpi/processor_perflib.c
> +++ b/drivers/acpi/processor_perflib.c
> @@ -348,7 +348,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
>  	if (result)
>  		goto update_bios;
>  
> -	return 0;
> +	/* We need to call _PPC once when cpufreq starts */
> +	if (ignore_ppc != 1)
> +		result = acpi_processor_get_platform_limit(pr);
> +
> +	return result;
>  
>  	/*
>  	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

You are more or less reverting Ingo's patch (e4233dec749a3519069d9390561b5636a75c7579):
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index 5207f9e..cbb6f08 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -322,10 +322,6 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
        if (result)
                return result;

-       result = acpi_processor_get_platform_limit(pr);
-       if (result)
-               return result;
-
        return 0;
 }


      Thomas


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 10:01   ` Thomas Renninger
@ 2009-04-16 10:32     ` Ingo Molnar
  2009-04-16 17:42     ` Darrick J. Wong
  1 sibling, 0 replies; 34+ messages in thread
From: Ingo Molnar @ 2009-04-16 10:32 UTC (permalink / raw)
  To: Thomas Renninger; +Cc: djwong, linux-kernel, cpufreq, linux-acpi


* Thomas Renninger <trenn@suse.de> wrote:

> The *reevaluate* implies that the _PPC value has been 
> evaluated/initialized by the OS already and Ingo's patch would be 
> wrong then. I'd like to have a look at the T60's ACPI parts and 
> find out what exactly (or if at all) makes _PPC to return sane 
> values, I expect it's _PDC.
> 
> Hmm, I could also imagine that Ingo's T60 patch is not needed 
> anymore since Yakui's patch 
> (0ac3c571315a53c14d2733564f14ebdb911fe903). This one could make 
> sure that _PDC is evaluated first making the internal ACPI _PPC 
> state initialize and makes sure _PPC gets only called afterwards.
> 
> If this patch does not break Ingo's T60, I think this should go 
> in. Due to Yakui's reordering/cleanup of ACPI function calls, I 
> think also the notifier chain I introduced is not needed anymore 
> and I can clean this up if I find some time.

Feel free to do so, if it's expected to work. I'll let you know if 
it breaks the T60 box - i still have it in the -tip test mix.

Acked-by: Ingo Molnar <mingo@elte.hu>

	Ingo

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 10:01   ` Thomas Renninger
  2009-04-16 10:32     ` Ingo Molnar
@ 2009-04-16 17:42     ` Darrick J. Wong
  2009-04-16 18:49       ` Thomas Renninger
  2009-04-16 22:45       ` Matthew Garrett
  1 sibling, 2 replies; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-16 17:42 UTC (permalink / raw)
  To: Thomas Renninger; +Cc: linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Thu, Apr 16, 2009 at 12:01:11PM +0200, Thomas Renninger wrote:
> Hi,
> 
> be careful, this could break the T60 again.

So long as T60 owners boot with ignore_ppc=1, they should still be fine.

> Can you and Ingo place acpidump of your machines somewhere, please.
> 
> On Thursday 16 April 2009 02:27:12 Darrick J. Wong wrote:
> > Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
> > reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
> > Renninger's patch last July to eliminate _PPC evaluations when the processor
> > driver loads, the kernel never actually reads _PPC at all!
> This is wrong. _PPC is only evaluated when a cpufreq driver got registered.

I put a printk just before the call to acpi_evaluate_integer in
acpi_processor_get_platform_limit.  The printk did not appear unless (a)
I triggered the Notify event to get the kernel to reevaluate _PPC or (b)
I took a CPU offline and online.

An alternate way to describe the situation, I think, is that ignore_ppc
doesn't go from -1 to 0 until acpi_processor_ppc_notifier gets called,
and that only seems to happen during an ACPI Notify event.

> > This is problematic
> > if you happen to boot your non-T60 computer in a state where the BIOS _wants_
> > _PPC to be something other than zero.
> Your machine should suffer from that since Ingo's T60 patch?

Yes, but the particular machine I have didn't exist until a couple of
weeks ago, and before that our BIOSes were written so that _PPC always
returned zero, which masked the problem.

The _PPC method in this (preproduction) machine's BIOS also sets a flag
that enables the sending of _PPC Notify events.  I'm not sure if that's
the proper way to do such things, though it seems logical that if an OS
never reads _PPC then sending Notify events for it is pointless.

> Reading the _PPC part of the ACPI spec again:
> ---
> In order to support dynamic changes of _PPC object, Notify events on
> the processor object. Notify events of type 0x80 will cause OSPM to
> reevaluate any _PPC objects residing under the particular processor object
> notified.
> ---
> The *reevaluate* implies that the _PPC value has been evaluated/initialized
> by the OS already and Ingo's patch would be wrong then.
> I'd like to have a look at the T60's ACPI parts and find out what exactly
> (or if at all) makes _PPC to return sane values, I expect it's _PDC.

I recall that on the T60 BIOS, the _PPC was programmed to read the value
out of some register in the embedded controller, but I'll have to go
find a T60 to see what the latest BIOSes do.  There's nothing in the T60
BIOS update changelogs to indicate that they found and corrected a
problem with _PPC... but that doesn't eliminate the possibility that
they "forgot" to document one.

Though I do recall seeing some weird bug with that T60 where putting the
machine to sleep would confuse it into "1ghz only" mode, though I never
noticed this symptom after a fresh boot.

> Hmm, I could also imagine that Ingo's T60 patch is not needed anymore since
> Yakui's patch (0ac3c571315a53c14d2733564f14ebdb911fe903).
> This one could make sure that _PDC is evaluated first making the internal
> ACPI _PPC state initialize and makes sure _PPC gets only called afterwards.
> 
> If this patch does not break Ingo's T60, I think this should go in.
> Due to Yakui's reordering/cleanup of ACPI function calls, I think also
> the notifier chain I introduced is not needed anymore and I can clean this
> up if I find some time.

> You are more or less reverting Ingo's patch (e4233dec749a3519069d9390561b5636a75c7579):

Yes, but preserving the ignore_ppc=1 override.

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 17:42     ` Darrick J. Wong
@ 2009-04-16 18:49       ` Thomas Renninger
  2009-04-16 22:45       ` Matthew Garrett
  1 sibling, 0 replies; 34+ messages in thread
From: Thomas Renninger @ 2009-04-16 18:49 UTC (permalink / raw)
  To: djwong; +Cc: linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Thursday 16 April 2009 19:42:18 Darrick J. Wong wrote:
> On Thu, Apr 16, 2009 at 12:01:11PM +0200, Thomas Renninger wrote:
> > Hi,
> > 
> > be careful, this could break the T60 again.
> 
> So long as T60 owners boot with ignore_ppc=1, they should still be fine.
That would be a regression :)
But as said, I hope with Yakui's patch and your patch,
everything might work out fine for everyone.
Let me send a cleanup on top (your's is in already if I understood Ingo correctly)
in some days and people with affected machines should give it a try.
 
> > Can you and Ingo place acpidump of your machines somewhere, please.
> > 
> > On Thursday 16 April 2009 02:27:12 Darrick J. Wong wrote:
> > > Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
> > > reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
> > > Renninger's patch last July to eliminate _PPC evaluations when the processor
> > > driver loads, the kernel never actually reads _PPC at all!
> > This is wrong. _PPC is only evaluated when a cpufreq driver got registered.
> 
> I put a printk just before the call to acpi_evaluate_integer in
> acpi_processor_get_platform_limit.  The printk did not appear unless (a)
> I triggered the Notify event to get the kernel to reevaluate _PPC or (b)
> I took a CPU offline and online.
> 
> An alternate way to describe the situation, I think, is that ignore_ppc
> doesn't go from -1 to 0 until acpi_processor_ppc_notifier gets called,
> and that only seems to happen during an ACPI Notify event.
> 
> > > This is problematic
> > > if you happen to boot your non-T60 computer in a state where the BIOS _wants_
> > > _PPC to be something other than zero.
> > Your machine should suffer from that since Ingo's T60 patch?
> 
> Yes, but the particular machine I have didn't exist until a couple of
> weeks ago, and before that our BIOSes were written so that _PPC always
> returned zero, which masked the problem.
> 
> The _PPC method in this (preproduction) machine's BIOS also sets a flag
> that enables the sending of _PPC Notify events.
Oh dear, I hope this is not for specific Windows OSes.

> I'm not sure if that's
> the proper way to do such things, though it seems logical that if an OS
> never reads _PPC then sending Notify events for it is pointless.
No it's not.
There is the _PDC call which the OS calls and tells the BIOS that it
has a cpufreq driver. I expect (hope) from this point on (when OS called this
function and told the BIOS that it can do cpufreq) the T60 does
return a sane (zero) _PPC value.
That was what my patch was doing in an ugly way. Making sure cpufreq drivers
were loaded first (and _PDC was called), before any _PPC notifications
are evaluated.
But Yakui's patch moved ACPI function calls in a way, that calling _PDC
is done before _PPC. So everybody (with your patch added) could be happy
in the end.
 
> > Reading the _PPC part of the ACPI spec again:
> > ---
> > In order to support dynamic changes of _PPC object, Notify events on
> > the processor object. Notify events of type 0x80 will cause OSPM to
> > reevaluate any _PPC objects residing under the particular processor object
> > notified.
> > ---
> > The *reevaluate* implies that the _PPC value has been evaluated/initialized
> > by the OS already and Ingo's patch would be wrong then.
> > I'd like to have a look at the T60's ACPI parts and find out what exactly
> > (or if at all) makes _PPC to return sane values, I expect it's _PDC.
> 
> I recall that on the T60 BIOS, the _PPC was programmed to read the value
> out of some register in the embedded controller, but I'll have to go
> find a T60 to see what the latest BIOSes do.  There's nothing in the T60
> BIOS update changelogs to indicate that they found and corrected a
> problem with _PPC... but that doesn't eliminate the possibility that
> they "forgot" to document one.
> 
> Though I do recall seeing some weird bug with that T60 where putting the
> machine to sleep would confuse it into "1ghz only" mode, though I never
> noticed this symptom after a fresh boot.
Yeah, really weird things can happen on really weird (and tons of different)
BIOS implementations.

    Thomas
> 
> > Hmm, I could also imagine that Ingo's T60 patch is not needed anymore since
> > Yakui's patch (0ac3c571315a53c14d2733564f14ebdb911fe903).
> > This one could make sure that _PDC is evaluated first making the internal
> > ACPI _PPC state initialize and makes sure _PPC gets only called afterwards.
> > 
> > If this patch does not break Ingo's T60, I think this should go in.
> > Due to Yakui's reordering/cleanup of ACPI function calls, I think also
> > the notifier chain I introduced is not needed anymore and I can clean this
> > up if I find some time.
> 
> > You are more or less reverting Ingo's patch (e4233dec749a3519069d9390561b5636a75c7579):
> 
> Yes, but preserving the ignore_ppc=1 override.


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 17:42     ` Darrick J. Wong
  2009-04-16 18:49       ` Thomas Renninger
@ 2009-04-16 22:45       ` Matthew Garrett
  2009-04-20  5:13         ` Len Brown
  2009-04-28 19:33         ` Darrick J. Wong
  1 sibling, 2 replies; 34+ messages in thread
From: Matthew Garrett @ 2009-04-16 22:45 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Thu, Apr 16, 2009 at 10:42:18AM -0700, Darrick J. Wong wrote:
> On Thu, Apr 16, 2009 at 12:01:11PM +0200, Thomas Renninger wrote:
> > Hi,
> > 
> > be careful, this could break the T60 again.
> 
> So long as T60 owners boot with ignore_ppc=1, they should still be fine.

That's not really an option. It works with Windows. Please figure out 
how to make it work on everything rather than us just repeatedly 
toggling between different sets of broken machines or being forced to 
have a static table of machines.

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 22:45       ` Matthew Garrett
@ 2009-04-20  5:13         ` Len Brown
  2009-04-20  9:13           ` Thomas Renninger
  2009-04-28 19:33         ` Darrick J. Wong
  1 sibling, 1 reply; 34+ messages in thread
From: Len Brown @ 2009-04-20  5:13 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Darrick J. Wong, Thomas Renninger, linux-kernel, Ingo Molnar,
	cpufreq, linux-acpi

FYI,
Thanks to Ebay, I now have a T60:-)

and so i put the DSDT here:
http://bugzilla.kernel.org/show_bug.cgi?id=13139

I'll poke at this in more detail soon...

thanks,
Len Brown, Intel Open Source Technology Center


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-20  5:13         ` Len Brown
@ 2009-04-20  9:13           ` Thomas Renninger
  2009-04-20 10:45             ` Ingo Molnar
  2009-04-20 22:18             ` Henrique de Moraes Holschuh
  0 siblings, 2 replies; 34+ messages in thread
From: Thomas Renninger @ 2009-04-20  9:13 UTC (permalink / raw)
  To: Len Brown
  Cc: Matthew Garrett, Darrick J. Wong, linux-kernel, Ingo Molnar,
	cpufreq, linux-acpi

On Monday 20 April 2009 07:13:51 Len Brown wrote:
> FYI,
> Thanks to Ebay, I now have a T60:-)
Hmm, Lenovo sold a lot different machines as T60.
I found an acpidump of a T60 here without any _PPC function
at all.

> and so i put the DSDT here:
> http://bugzilla.kernel.org/show_bug.cgi?id=13139
> 
> I'll poke at this in more detail soon...
Ingo, can you place yours somewhere too, please.
This one should be taken into account for _PPC code changes
as it seem to implement some corner case.

Thanks,

      Thomas

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-20  9:13           ` Thomas Renninger
@ 2009-04-20 10:45             ` Ingo Molnar
  2009-04-29 13:19               ` Thomas Renninger
  2009-04-20 22:18             ` Henrique de Moraes Holschuh
  1 sibling, 1 reply; 34+ messages in thread
From: Ingo Molnar @ 2009-04-20 10:45 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Len Brown, Matthew Garrett, Darrick J. Wong, linux-kernel,
	cpufreq, linux-acpi


* Thomas Renninger <trenn@suse.de> wrote:

> On Monday 20 April 2009 07:13:51 Len Brown wrote:
> > FYI,
> > Thanks to Ebay, I now have a T60:-)
> Hmm, Lenovo sold a lot different machines as T60.
> I found an acpidump of a T60 here without any _PPC function
> at all.
> 
> > and so i put the DSDT here:
> > http://bugzilla.kernel.org/show_bug.cgi?id=13139
> > 
> > I'll poke at this in more detail soon...
> Ingo, can you place yours somewhere too, please.
> This one should be taken into account for _PPC code changes
> as it seem to implement some corner case.

Sure, find it attached below.

	Ingo

DSDT @ 0x7f6e65e7
  0000: 44 53 44 54 65 c7 00 00 01 49 4c 45 4e 4f 56 4f  DSDTe....ILENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4d 53 46 54  TP-79    ...MSFT
  0020: 0e 00 00 01 10 20 5c 5f 50 52 5f 5b 83 0b 43 50  ..... \_PR_[..CP
  0030: 55 30 00 10 10 00 00 06 5b 83 0b 43 50 55 31 01  U0......[..CPU1.
  0040: 10 10 00 00 06 10 8e aa 0a 5c 5f 53 42 5f 14 46  .........\_SB_.F
  0050: 30 5f 49 4e 49 00 a0 28 93 5c 53 43 4d 50 5c 5f  0_INI..(.\SCMP\_
  0060: 4f 53 5f 0d 4d 69 63 72 6f 73 6f 66 74 20 57 69  OS_.Microsoft Wi
  0070: 6e 64 6f 77 73 00 00 70 0a 01 5c 57 39 38 46 a1  ndows..p..\W98F.
  0080: 46 0f a0 49 07 5b 12 5c 5f 4f 53 49 60 a0 2c 5c  F..I.[.\_OSI`.,\
  0090: 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30  _OSI.Windows 200
  00a0: 31 00 70 0a 01 5c 57 4e 54 46 70 0a 01 5c 57 58  1.p..\WNTFp..\WX
  00b0: 50 46 70 0a 00 5c 57 53 50 56 a0 20 5c 5f 4f 53  PFp..\WSPV. \_OS
  00c0: 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 53  I.Windows 2001 S
  00d0: 50 31 00 70 0a 01 5c 57 53 50 56 a0 20 5c 5f 4f  P1.p..\WSPV. \_O
  00e0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20  SI.Windows 2001 
  00f0: 53 50 32 00 70 0a 02 5c 57 53 50 56 a1 49 07 a0  SP2.p..\WSPV.I..
  0100: 2b 93 5c 53 43 4d 50 5c 5f 4f 53 5f 0d 4d 69 63  +.\SCMP\_OS_.Mic
  0110: 72 6f 73 6f 66 74 20 57 69 6e 64 6f 77 73 20 4e  rosoft Windows N
  0120: 54 00 00 70 0a 01 5c 57 4e 54 46 a1 4a 04 a0 47  T..p..\WNTF.J..G
  0130: 04 93 5c 53 43 4d 50 5c 5f 4f 53 5f 0d 4d 69 63  ..\SCMP\_OS_.Mic
  0140: 72 6f 73 6f 66 74 20 57 69 6e 64 6f 77 73 4d 45  rosoft WindowsME
  0150: 3a 20 4d 69 6c 6c 65 6e 6e 69 75 6d 20 45 64 69  : Millennium Edi
  0160: 74 69 6f 6e 00 00 70 0a 01 5c 57 4d 45 46 70 0a  tion..p..\WMEFp.
  0170: 01 5c 57 39 38 46 a0 12 92 95 5c 5f 52 45 56 0a  .\W98F....\_REV.
  0180: 02 70 0a 01 5c 48 38 44 52 70 0a 01 5c 4f 53 49  .p..\H8DRp..\OSI
  0190: 46 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  F\/._SB_PCI0LPC_
  01a0: 4d 4f 55 5f 4d 48 49 44 70 5c 53 52 41 48 5c 2f  MOU_MHIDp\SRAH\/
  01b0: 03 5f 53 42 5f 50 43 49 30 52 49 44 5f a0 1e 56  ._SB_PCI0RID_..V
  01c0: 49 47 44 70 5c 53 52 48 45 5c 2f 04 5f 53 42 5f  IGDp\SRHE\/._SB_
  01d0: 50 43 49 30 56 49 44 5f 52 49 44 5f a1 1a 70 5c  PCI0VID_RID_..p\
  01e0: 53 52 48 45 5c 2f 04 5f 53 42 5f 50 43 49 30 41  SRHE\/._SB_PCI0A
  01f0: 47 50 5f 52 49 44 5f 70 5c 53 52 45 30 5c 2f 04  GP_RID_p\SRE0\/.
  0200: 5f 53 42 5f 50 43 49 30 45 58 50 30 52 49 44 5f  _SB_PCI0EXP0RID_
  0210: 70 5c 53 52 45 31 5c 2f 04 5f 53 42 5f 50 43 49  p\SRE1\/._SB_PCI
  0220: 30 45 58 50 31 52 49 44 5f 70 5c 53 52 45 32 5c  0EXP1RID_p\SRE2\
  0230: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32 52 49  /._SB_PCI0EXP2RI
  0240: 44 5f 70 5c 53 52 45 33 5c 2f 04 5f 53 42 5f 50  D_p\SRE3\/._SB_P
  0250: 43 49 30 45 58 50 33 52 49 44 5f 70 5c 53 52 55  CI0EXP3RID_p\SRU
  0260: 30 5c 2f 04 5f 53 42 5f 50 43 49 30 55 53 42 30  0\/._SB_PCI0USB0
  0270: 52 49 44 5f 70 5c 53 52 55 31 5c 2f 04 5f 53 42  RID_p\SRU1\/._SB
  0280: 5f 50 43 49 30 55 53 42 31 52 49 44 5f 70 5c 53  _PCI0USB1RID_p\S
  0290: 52 55 32 5c 2f 04 5f 53 42 5f 50 43 49 30 55 53  RU2\/._SB_PCI0US
  02a0: 42 32 52 49 44 5f 70 5c 53 52 55 33 5c 2f 04 5f  B2RID_p\SRU3\/._
  02b0: 53 42 5f 50 43 49 30 55 53 42 33 52 49 44 5f 70  SB_PCI0USB3RID_p
  02c0: 5c 53 52 55 37 5c 2f 04 5f 53 42 5f 50 43 49 30  \SRU7\/._SB_PCI0
  02d0: 55 53 42 37 52 49 44 5f 70 5c 53 52 50 42 5c 2f  USB7RID_p\SRPB\/
  02e0: 04 5f 53 42 5f 50 43 49 30 50 43 49 31 52 49 44  ._SB_PCI0PCI1RID
  02f0: 5f 70 5c 53 52 4c 50 5c 2f 04 5f 53 42 5f 50 43  _p\SRLP\/._SB_PC
  0300: 49 30 4c 50 43 5f 52 49 44 5f 70 5c 53 52 53 41  I0LPC_RID_p\SRSA
  0310: 5c 2f 04 5f 53 42 5f 50 43 49 30 49 44 45 30 52  \/._SB_PCI0IDE0R
  0320: 49 44 5f 70 5c 53 52 53 41 5c 2f 04 5f 53 42 5f  ID_p\SRSA\/._SB_
  0330: 50 43 49 30 53 41 54 41 52 49 44 5f 70 5c 53 52  PCI0SATARID_p\SR
  0340: 53 4d 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42  SM\/._SB_PCI0SMB
  0350: 55 52 49 44 5f 5b 82 4b 11 4c 4e 4b 41 08 5f 48  URID_[.K.LNKA._H
  0360: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 01 14 28  ID.A...._UID...(
  0370: 5f 53 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f  _STA....VPIR\/._
  0380: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 41 a4  SB_PCI0LPC_PIRA.
  0390: 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06  ........_PRS....
  03a0: 23 f8 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f  #...y../_DIS.}\/
  03b0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52  ._SB_PCI0LPC_PIR
  03c0: 41 0a 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  A..\/._SB_PCI0LP
  03d0: 43 5f 50 49 52 41 08 42 55 46 41 11 09 0a 06 23  C_PIRA.BUFA....#
  03e0: 00 00 18 79 00 8b 42 55 46 41 0a 01 49 52 41 31  ...y..BUFA..IRA1
  03f0: 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50  .:_CRS.{\/._SB_P
  0400: 43 49 30 4c 50 43 5f 50 49 52 41 0a 8f 60 a0 0e  CI0LPC_PIRA..`..
  0410: 56 50 49 52 60 79 0a 01 60 49 52 41 31 a1 08 70  VPIR`y..`IRA1..p
  0420: 0a 00 49 52 41 31 a4 42 55 46 41 14 46 04 5f 53  ..IRA1.BUFA.F._S
  0430: 52 53 01 8b 68 0a 01 49 52 41 32 82 49 52 41 32  RS..h..IRA2.IRA2
  0440: 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  `{\/._SB_PCI0LPC
  0450: 5f 50 49 52 41 0a 70 61 7d 61 76 60 61 70 61 5c  _PIRA.pa}av`apa\
  0460: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49  /._SB_PCI0LPC_PI
  0470: 52 41 5b 82 4b 11 4c 4e 4b 42 08 5f 48 49 44 0c  RA[.K.LNKB._HID.
  0480: 41 d0 0c 0f 08 5f 55 49 44 0a 02 14 28 5f 53 54  A...._UID...(_ST
  0490: 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f  A....VPIR\/._SB_
  04a0: 50 43 49 30 4c 50 43 5f 50 49 52 42 a4 0a 09 a1  PCI0LPC_PIRB....
  04b0: 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e  ....._PRS....#..
  04c0: 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53  .y../_DIS.}\/._S
  04d0: 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 42 0a 80  B_PCI0LPC_PIRB..
  04e0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50  \/._SB_PCI0LPC_P
  04f0: 49 52 42 08 42 55 46 42 11 09 0a 06 23 00 00 18  IRB.BUFB....#...
  0500: 79 00 8b 42 55 46 42 0a 01 49 52 42 31 14 3a 5f  y..BUFB..IRB1.:_
  0510: 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30  CRS.{\/._SB_PCI0
  0520: 4c 50 43 5f 50 49 52 42 0a 8f 60 a0 0e 56 50 49  LPC_PIRB..`..VPI
  0530: 52 60 79 0a 01 60 49 52 42 31 a1 08 70 0a 00 49  R`y..`IRB1..p..I
  0540: 52 42 31 a4 42 55 46 42 14 46 04 5f 53 52 53 01  RB1.BUFB.F._SRS.
  0550: 8b 68 0a 01 49 52 42 32 82 49 52 42 32 60 7b 5c  .h..IRB2.IRB2`{\
  0560: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49  /._SB_PCI0LPC_PI
  0570: 52 42 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f  RB.pa}av`apa\/._
  0580: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 42 5b  SB_PCI0LPC_PIRB[
  0590: 82 4b 11 4c 4e 4b 43 08 5f 48 49 44 0c 41 d0 0c  .K.LNKC._HID.A..
  05a0: 0f 08 5f 55 49 44 0a 03 14 28 5f 53 54 41 00 a0  .._UID...(_STA..
  05b0: 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f 50 43 49  ..VPIR\/._SB_PCI
  05c0: 30 4c 50 43 5f 50 49 52 43 a4 0a 09 a1 04 a4 0a  0LPC_PIRC.......
  05d0: 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e 18 79 00  .._PRS....#...y.
  05e0: 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53 42 5f 50  ./_DIS.}\/._SB_P
  05f0: 43 49 30 4c 50 43 5f 50 49 52 43 0a 80 5c 2f 04  CI0LPC_PIRC..\/.
  0600: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 43  _SB_PCI0LPC_PIRC
  0610: 08 42 55 46 43 11 09 0a 06 23 00 00 18 79 00 8b  .BUFC....#...y..
  0620: 42 55 46 43 0a 01 49 52 43 31 14 3a 5f 43 52 53  BUFC..IRC1.:_CRS
  0630: 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  .{\/._SB_PCI0LPC
  0640: 5f 50 49 52 43 0a 8f 60 a0 0e 56 50 49 52 60 79  _PIRC..`..VPIR`y
  0650: 0a 01 60 49 52 43 31 a1 08 70 0a 00 49 52 43 31  ..`IRC1..p..IRC1
  0660: a4 42 55 46 43 14 46 04 5f 53 52 53 01 8b 68 0a  .BUFC.F._SRS..h.
  0670: 01 49 52 43 32 82 49 52 43 32 60 7b 5c 2f 04 5f  .IRC2.IRC2`{\/._
  0680: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 43 0a  SB_PCI0LPC_PIRC.
  0690: 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f 53 42 5f  pa}av`apa\/._SB_
  06a0: 50 43 49 30 4c 50 43 5f 50 49 52 43 5b 82 4b 11  PCI0LPC_PIRC[.K.
  06b0: 4c 4e 4b 44 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f  LNKD._HID.A...._
  06c0: 55 49 44 0a 04 14 28 5f 53 54 41 00 a0 1c 92 56  UID...(_STA....V
  06d0: 50 49 52 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  PIR\/._SB_PCI0LP
  06e0: 43 5f 50 49 52 44 a4 0a 09 a1 04 a4 0a 0b 08 5f  C_PIRD........._
  06f0: 50 52 53 11 09 0a 06 23 f8 0e 18 79 00 14 2f 5f  PRS....#...y../_
  0700: 44 49 53 00 7d 5c 2f 04 5f 53 42 5f 50 43 49 30  DIS.}\/._SB_PCI0
  0710: 4c 50 43 5f 50 49 52 44 0a 80 5c 2f 04 5f 53 42  LPC_PIRD..\/._SB
  0720: 5f 50 43 49 30 4c 50 43 5f 50 49 52 44 08 42 55  _PCI0LPC_PIRD.BU
  0730: 46 44 11 09 0a 06 23 00 00 18 79 00 8b 42 55 46  FD....#...y..BUF
  0740: 44 0a 01 49 52 44 31 14 3a 5f 43 52 53 00 7b 5c  D..IRD1.:_CRS.{\
  0750: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49  /._SB_PCI0LPC_PI
  0760: 52 44 0a 8f 60 a0 0e 56 50 49 52 60 79 0a 01 60  RD..`..VPIR`y..`
  0770: 49 52 44 31 a1 08 70 0a 00 49 52 44 31 a4 42 55  IRD1..p..IRD1.BU
  0780: 46 44 14 46 04 5f 53 52 53 01 8b 68 0a 01 49 52  FD.F._SRS..h..IR
  0790: 44 32 82 49 52 44 32 60 7b 5c 2f 04 5f 53 42 5f  D2.IRD2`{\/._SB_
  07a0: 50 43 49 30 4c 50 43 5f 50 49 52 44 0a 70 61 7d  PCI0LPC_PIRD.pa}
  07b0: 61 76 60 61 70 61 5c 2f 04 5f 53 42 5f 50 43 49  av`apa\/._SB_PCI
  07c0: 30 4c 50 43 5f 50 49 52 44 5b 82 4b 11 4c 4e 4b  0LPC_PIRD[.K.LNK
  07d0: 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44  E._HID.A...._UID
  07e0: 0a 05 14 28 5f 53 54 41 00 a0 1c 92 56 50 49 52  ...(_STA....VPIR
  07f0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50  \/._SB_PCI0LPC_P
  0800: 49 52 45 a4 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53  IRE........._PRS
  0810: 11 09 0a 06 23 f8 0e 18 79 00 14 2f 5f 44 49 53  ....#...y../_DIS
  0820: 00 7d 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  .}\/._SB_PCI0LPC
  0830: 5f 50 49 52 45 0a 80 5c 2f 04 5f 53 42 5f 50 43  _PIRE..\/._SB_PC
  0840: 49 30 4c 50 43 5f 50 49 52 45 08 42 55 46 45 11  I0LPC_PIRE.BUFE.
  0850: 09 0a 06 23 00 00 18 79 00 8b 42 55 46 45 0a 01  ...#...y..BUFE..
  0860: 49 52 45 31 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f  IRE1.:_CRS.{\/._
  0870: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 45 0a  SB_PCI0LPC_PIRE.
  0880: 8f 60 a0 0e 56 50 49 52 60 79 0a 01 60 49 52 45  .`..VPIR`y..`IRE
  0890: 31 a1 08 70 0a 00 49 52 45 31 a4 42 55 46 45 14  1..p..IRE1.BUFE.
  08a0: 46 04 5f 53 52 53 01 8b 68 0a 01 49 52 45 32 82  F._SRS..h..IRE2.
  08b0: 49 52 45 32 60 7b 5c 2f 04 5f 53 42 5f 50 43 49  IRE2`{\/._SB_PCI
  08c0: 30 4c 50 43 5f 50 49 52 45 0a 70 61 7d 61 76 60  0LPC_PIRE.pa}av`
  08d0: 61 70 61 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  apa\/._SB_PCI0LP
  08e0: 43 5f 50 49 52 45 5b 82 4b 11 4c 4e 4b 46 08 5f  C_PIRE[.K.LNKF._
  08f0: 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 06 14  HID.A...._UID...
  0900: 28 5f 53 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04  (_STA....VPIR\/.
  0910: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 46  _SB_PCI0LPC_PIRF
  0920: a4 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a  ........._PRS...
  0930: 06 23 f8 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c  .#...y../_DIS.}\
  0940: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49  /._SB_PCI0LPC_PI
  0950: 52 46 0a 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  RF..\/._SB_PCI0L
  0960: 50 43 5f 50 49 52 46 08 42 55 46 46 11 09 0a 06  PC_PIRF.BUFF....
  0970: 23 00 00 18 79 00 8b 42 55 46 46 0a 01 49 52 46  #...y..BUFF..IRF
  0980: 31 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f  1.:_CRS.{\/._SB_
  0990: 50 43 49 30 4c 50 43 5f 50 49 52 46 0a 8f 60 a0  PCI0LPC_PIRF..`.
  09a0: 0e 56 50 49 52 60 79 0a 01 60 49 52 46 31 a1 08  .VPIR`y..`IRF1..
  09b0: 70 0a 00 49 52 46 31 a4 42 55 46 46 14 46 04 5f  p..IRF1.BUFF.F._
  09c0: 53 52 53 01 8b 68 0a 01 49 52 46 32 82 49 52 46  SRS..h..IRF2.IRF
  09d0: 32 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  2`{\/._SB_PCI0LP
  09e0: 43 5f 50 49 52 46 0a 70 61 7d 61 76 60 61 70 61  C_PIRF.pa}av`apa
  09f0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50  \/._SB_PCI0LPC_P
  0a00: 49 52 46 5b 82 4b 11 4c 4e 4b 47 08 5f 48 49 44  IRF[.K.LNKG._HID
  0a10: 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 28 5f 53  .A...._UID...(_S
  0a20: 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42  TA....VPIR\/._SB
  0a30: 5f 50 43 49 30 4c 50 43 5f 50 49 52 47 a4 0a 09  _PCI0LPC_PIRG...
  0a40: a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8  ......_PRS....#.
  0a50: 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f  ..y../_DIS.}\/._
  0a60: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 47 0a  SB_PCI0LPC_PIRG.
  0a70: 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  0a80: 50 49 52 47 08 42 55 46 47 11 09 0a 06 23 00 00  PIRG.BUFG....#..
  0a90: 18 79 00 8b 42 55 46 47 0a 01 49 52 47 31 14 3a  .y..BUFG..IRG1.:
  0aa0: 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49  _CRS.{\/._SB_PCI
  0ab0: 30 4c 50 43 5f 50 49 52 47 0a 8f 60 a0 0e 56 50  0LPC_PIRG..`..VP
  0ac0: 49 52 60 79 0a 01 60 49 52 47 31 a1 08 70 0a 00  IR`y..`IRG1..p..
  0ad0: 49 52 47 31 a4 42 55 46 47 14 46 04 5f 53 52 53  IRG1.BUFG.F._SRS
  0ae0: 01 8b 68 0a 01 49 52 47 32 82 49 52 47 32 60 7b  ..h..IRG2.IRG2`{
  0af0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50  \/._SB_PCI0LPC_P
  0b00: 49 52 47 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04  IRG.pa}av`apa\/.
  0b10: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 47  _SB_PCI0LPC_PIRG
  0b20: 5b 82 4b 11 4c 4e 4b 48 08 5f 48 49 44 0c 41 d0  [.K.LNKH._HID.A.
  0b30: 0c 0f 08 5f 55 49 44 0a 08 14 28 5f 53 54 41 00  ..._UID...(_STA.
  0b40: a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f 50 43  ...VPIR\/._SB_PC
  0b50: 49 30 4c 50 43 5f 50 49 52 48 a4 0a 09 a1 04 a4  I0LPC_PIRH......
  0b60: 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e 18 79  ..._PRS....#...y
  0b70: 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53 42 5f  ../_DIS.}\/._SB_
  0b80: 50 43 49 30 4c 50 43 5f 50 49 52 48 0a 80 5c 2f  PCI0LPC_PIRH..\/
  0b90: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52  ._SB_PCI0LPC_PIR
  0ba0: 48 08 42 55 46 48 11 09 0a 06 23 00 00 18 79 00  H.BUFH....#...y.
  0bb0: 8b 42 55 46 48 0a 01 49 52 48 31 14 3a 5f 43 52  .BUFH..IRH1.:_CR
  0bc0: 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  S.{\/._SB_PCI0LP
  0bd0: 43 5f 50 49 52 48 0a 8f 60 a0 0e 56 50 49 52 60  C_PIRH..`..VPIR`
  0be0: 79 0a 01 60 49 52 48 31 a1 08 70 0a 00 49 52 48  y..`IRH1..p..IRH
  0bf0: 31 a4 42 55 46 48 14 46 04 5f 53 52 53 01 8b 68  1.BUFH.F._SRS..h
  0c00: 0a 01 49 52 48 32 82 49 52 48 32 60 7b 5c 2f 04  ..IRH2.IRH2`{\/.
  0c10: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 48  _SB_PCI0LPC_PIRH
  0c20: 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f 53 42  .pa}av`apa\/._SB
  0c30: 5f 50 43 49 30 4c 50 43 5f 50 49 52 48 14 39 56  _PCI0LPC_PIRH.9V
  0c40: 50 49 52 01 70 0a 01 60 a0 0a 7b 68 0a 80 00 70  PIR.p..`..{h...p
  0c50: 0a 00 60 a1 21 7b 68 0a 0f 61 a0 09 95 61 0a 03  ..`.!{h..a...a..
  0c60: 70 0a 00 60 a1 10 a0 0e 91 93 61 0a 08 93 61 0a  p..`......a...a.
  0c70: 0d 70 0a 00 60 a4 60 5b 82 48 68 4d 45 4d 5f 08  .p..`.`[.HhMEM_.
  0c80: 5f 48 49 44 0c 41 d0 0c 01 08 4d 45 39 38 11 42  _HID.A....ME98.B
  0c90: 04 0a 3e 86 09 00 01 00 00 00 00 00 00 0a 00 86  ..>.............
  0ca0: 09 00 00 00 00 0e 00 00 00 02 00 86 09 00 01 00  ................
  0cb0: 00 10 00 00 00 ee 01 86 09 00 00 00 00 c0 fe 00  ................
  0cc0: 00 14 00 86 09 00 00 00 10 d4 fe 00 f0 2b 01 79  .............+.y
  0cd0: 00 8a 4d 45 39 38 0a 1c 4d 45 42 30 8a 4d 45 39  ..ME98..MEB0.ME9
  0ce0: 38 0a 20 4d 45 4c 30 08 4d 47 41 50 11 11 0a 0e  8. MEL0.MGAP....
  0cf0: 86 09 00 00 00 00 00 00 00 00 00 00 79 00 8a 4d  ............y..M
  0d00: 47 41 50 0a 04 4d 47 50 42 8a 4d 47 41 50 0a 08  GAP..MGPB.MGAP..
  0d10: 4d 47 50 4c 08 4d 45 4d 53 11 42 0d 0a ce 86 09  MGPL.MEMS.B.....
  0d20: 00 01 00 00 00 00 00 00 0a 00 86 09 00 00 00 00  ................
  0d30: 0c 00 00 00 00 00 86 09 00 00 00 40 0c 00 00 00  ...........@....
  0d40: 00 00 86 09 00 00 00 80 0c 00 00 00 00 00 86 09  ................
  0d50: 00 00 00 c0 0c 00 00 00 00 00 86 09 00 00 00 00  ................
  0d60: 0d 00 00 00 00 00 86 09 00 00 00 40 0d 00 00 00  ...........@....
  0d70: 00 00 86 09 00 00 00 80 0d 00 00 00 00 00 86 09  ................
  0d80: 00 00 00 c0 0d 00 00 00 00 00 86 09 00 00 00 00  ................
  0d90: 0e 00 00 00 00 00 86 09 00 00 00 40 0e 00 00 00  ...........@....
  0da0: 00 00 86 09 00 00 00 80 0e 00 00 00 00 00 86 09  ................
  0db0: 00 00 00 c0 0e 00 00 00 00 00 86 09 00 00 00 00  ................
  0dc0: 0f 00 00 00 01 00 86 09 00 01 00 00 10 00 00 00  ................
  0dd0: ee 01 86 09 00 00 00 00 c0 fe 00 00 14 00 86 09  ................
  0de0: 00 00 00 10 d4 fe 00 f0 2b 01 79 00 8a 4d 45 4d  ........+.y..MEM
  0df0: 53 0a 14 4d 43 30 4c 8a 4d 45 4d 53 0a 20 4d 43  S..MC0L.MEMS. MC
  0e00: 34 4c 8a 4d 45 4d 53 0a 2c 4d 43 38 4c 8a 4d 45  4L.MEMS.,MC8L.ME
  0e10: 4d 53 0a 38 4d 43 43 4c 8a 4d 45 4d 53 0a 44 4d  MS.8MCCL.MEMS.DM
  0e20: 44 30 4c 8a 4d 45 4d 53 0a 50 4d 44 34 4c 8a 4d  D0L.MEMS.PMD4L.M
  0e30: 45 4d 53 0a 5c 4d 44 38 4c 8a 4d 45 4d 53 0a 68  EMS.\MD8L.MEMS.h
  0e40: 4d 44 43 4c 8a 4d 45 4d 53 0a 74 4d 45 30 4c 8a  MDCL.MEMS.tME0L.
  0e50: 4d 45 4d 53 0a 80 4d 45 34 4c 8a 4d 45 4d 53 0a  MEMS..ME4L.MEMS.
  0e60: 8c 4d 45 38 4c 8a 4d 45 4d 53 0a 98 4d 45 43 4c  .ME8L.MEMS..MECL
  0e70: 8d 4d 45 4d 53 0a 78 4d 43 30 57 8d 4d 45 4d 53  .MEMS.xMC0W.MEMS
  0e80: 0a d8 4d 43 34 57 8d 4d 45 4d 53 0b 38 01 4d 43  ..MC4W.MEMS.8.MC
  0e90: 38 57 8d 4d 45 4d 53 0b 98 01 4d 43 43 57 8d 4d  8W.MEMS...MCCW.M
  0ea0: 45 4d 53 0b f8 01 4d 44 30 57 8d 4d 45 4d 53 0b  EMS...MD0W.MEMS.
  0eb0: 58 02 4d 44 34 57 8d 4d 45 4d 53 0b b8 02 4d 44  X.MD4W.MEMS...MD
  0ec0: 38 57 8d 4d 45 4d 53 0b 18 03 4d 44 43 57 8d 4d  8W.MEMS...MDCW.M
  0ed0: 45 4d 53 0b 78 03 4d 45 30 57 8d 4d 45 4d 53 0b  EMS.x.ME0W.MEMS.
  0ee0: d8 03 4d 45 34 57 8d 4d 45 4d 53 0b 38 04 4d 45  ..ME4W.MEMS.8.ME
  0ef0: 38 57 8d 4d 45 4d 53 0b 98 04 4d 45 43 57 8a 4d  8W.MEMS...MECW.M
  0f00: 45 4d 53 0a ac 4d 45 42 31 8a 4d 45 4d 53 0a b0  EMS..MEB1.MEMS..
  0f10: 4d 45 4c 31 8a 4d 45 4d 53 0a bc 4d 45 4c 32 8a  MEL1.MEMS..MEL2.
  0f20: 4d 45 4d 53 0a c8 4d 45 4c 33 14 46 3d 5f 43 52  MEMS..MEL3.F=_CR
  0f30: 53 00 a0 4d 17 5c 57 39 38 46 74 5c 4d 45 4d 58  S..M.\W98Ft\MEMX
  0f40: 4d 45 42 30 4d 45 4c 30 70 5c 47 41 50 41 4d 47  MEB0MEL0p\GAPAMG
  0f50: 50 42 70 5c 47 41 50 4c 4d 47 50 4c a0 49 0c 90  PBp\GAPLMGPL.I..
  0f60: 4d 47 50 42 4d 47 50 4c 74 87 4d 45 39 38 0a 02  MGPBMGPLt.ME98..
  0f70: 60 08 4d 42 46 30 11 02 60 72 60 87 4d 47 41 50  `.MBF0..`r`.MGAP
  0f80: 60 08 4d 42 46 31 11 02 60 70 4d 45 39 38 4d 42  `.MBF1..`pME98MB
  0f90: 46 30 73 4d 42 46 30 4d 47 41 50 4d 42 46 31 a0  F0sMBF0MGAPMBF1.
  0fa0: 4f 07 92 93 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  O...\/._SB_PCI0L
  0fb0: 50 43 5f 54 50 4d 5f 5f 53 54 41 0a 0f 74 87 4d  PC_TPM__STA..t.M
  0fc0: 42 46 31 0a 02 60 08 4d 42 46 32 11 02 60 72 60  BF1..`.MBF2..`r`
  0fd0: 87 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  0fe0: 54 50 4d 5f 5f 43 52 53 60 08 4d 42 46 33 11 02  TPM__CRS`.MBF3..
  0ff0: 60 70 4d 42 46 31 4d 42 46 32 73 4d 42 46 32 5c  `pMBF1MBF2sMBF2\
  1000: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 54 50  /._SB_PCI0LPC_TP
  1010: 4d 5f 5f 43 52 53 4d 42 46 33 a4 4d 42 46 33 a1  M__CRSMBF3.MBF3.
  1020: 06 a4 4d 42 46 31 a1 49 08 a0 4f 07 92 93 5c 2f  ..MBF1.I..O...\/
  1030: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 54 50 4d  ._SB_PCI0LPC_TPM
  1040: 5f 5f 53 54 41 0a 0f 74 87 4d 45 39 38 0a 02 60  __STA..t.ME98..`
  1050: 08 4d 42 46 34 11 02 60 72 60 87 5c 2f 05 5f 53  .MBF4..`r`.\/._S
  1060: 42 5f 50 43 49 30 4c 50 43 5f 54 50 4d 5f 5f 43  B_PCI0LPC_TPM__C
  1070: 52 53 60 08 4d 42 46 35 11 02 60 70 4d 45 39 38  RS`.MBF5..`pME98
  1080: 4d 42 46 34 73 4d 42 46 34 5c 2f 05 5f 53 42 5f  MBF4sMBF4\/._SB_
  1090: 50 43 49 30 4c 50 43 5f 54 50 4d 5f 5f 43 52 53  PCI0LPC_TPM__CRS
  10a0: 4d 42 46 35 a4 4d 42 46 35 a1 06 a4 4d 45 39 38  MBF5.MBF5...ME98
  10b0: 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 31  {\/._SB_PCI0PAM1
  10c0: 0a 03 60 a0 18 60 70 0b 00 40 4d 43 30 4c a0 0d  ..`..`p..@MC0L..
  10d0: 7b 60 0a 02 00 70 0a 01 4d 43 30 57 7b 5c 2f 03  {`...p..MC0W{\/.
  10e0: 5f 53 42 5f 50 43 49 30 50 41 4d 31 0a 30 60 a0  _SB_PCI0PAM1.0`.
  10f0: 18 60 70 0b 00 40 4d 43 34 4c a0 0d 7b 60 0a 20  .`p..@MC4L..{`. 
  1100: 00 70 0a 01 4d 43 34 57 7b 5c 2f 03 5f 53 42 5f  .p..MC4W{\/._SB_
  1110: 50 43 49 30 50 41 4d 32 0a 03 60 a0 18 60 70 0b  PCI0PAM2..`..`p.
  1120: 00 40 4d 43 38 4c a0 0d 7b 60 0a 02 00 70 0a 01  .@MC8L..{`...p..
  1130: 4d 43 38 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30  MC8W{\/._SB_PCI0
  1140: 50 41 4d 32 0a 30 60 a0 18 60 70 0b 00 40 4d 43  PAM2.0`..`p..@MC
  1150: 43 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 43 43 57  CL..{`. .p..MCCW
  1160: 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 33  {\/._SB_PCI0PAM3
  1170: 0a 03 60 a0 18 60 70 0b 00 40 4d 44 30 4c a0 0d  ..`..`p..@MD0L..
  1180: 7b 60 0a 02 00 70 0a 01 4d 44 30 57 7b 5c 2f 03  {`...p..MD0W{\/.
  1190: 5f 53 42 5f 50 43 49 30 50 41 4d 33 0a 30 60 a0  _SB_PCI0PAM3.0`.
  11a0: 18 60 70 0b 00 40 4d 44 34 4c a0 0d 7b 60 0a 20  .`p..@MD4L..{`. 
  11b0: 00 70 0a 01 4d 44 34 57 7b 5c 2f 03 5f 53 42 5f  .p..MD4W{\/._SB_
  11c0: 50 43 49 30 50 41 4d 34 0a 03 60 a0 18 60 70 0b  PCI0PAM4..`..`p.
  11d0: 00 40 4d 44 38 4c a0 0d 7b 60 0a 02 00 70 0a 01  .@MD8L..{`...p..
  11e0: 4d 44 38 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30  MD8W{\/._SB_PCI0
  11f0: 50 41 4d 34 0a 30 60 a0 18 60 70 0b 00 40 4d 44  PAM4.0`..`p..@MD
  1200: 43 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 44 43 57  CL..{`. .p..MDCW
  1210: 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 35  {\/._SB_PCI0PAM5
  1220: 0a 03 60 a0 18 60 70 0b 00 40 4d 45 30 4c a0 0d  ..`..`p..@ME0L..
  1230: 7b 60 0a 02 00 70 0a 01 4d 45 30 57 7b 5c 2f 03  {`...p..ME0W{\/.
  1240: 5f 53 42 5f 50 43 49 30 50 41 4d 35 0a 30 60 a0  _SB_PCI0PAM5.0`.
  1250: 18 60 70 0b 00 40 4d 45 34 4c a0 0d 7b 60 0a 20  .`p..@ME4L..{`. 
  1260: 00 70 0a 01 4d 45 34 57 7b 5c 2f 03 5f 53 42 5f  .p..ME4W{\/._SB_
  1270: 50 43 49 30 50 41 4d 36 0a 03 60 a0 18 60 70 0b  PCI0PAM6..`..`p.
  1280: 00 40 4d 45 38 4c a0 0d 7b 60 0a 02 00 70 0a 01  .@ME8L..{`...p..
  1290: 4d 45 38 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30  ME8W{\/._SB_PCI0
  12a0: 50 41 4d 36 0a 30 60 a0 18 60 70 0b 00 40 4d 45  PAM6.0`..`p..@ME
  12b0: 43 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 45 43 57  CL..{`. .p..MECW
  12c0: 74 5c 4d 45 4d 58 4d 45 42 31 4d 45 4c 31 a0 2d  t\MEMXMEB1MEL1.-
  12d0: 92 93 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  12e0: 5f 54 50 4d 5f 5f 53 54 41 0a 0f 70 0c 00 00 40  _TPM__STA..p...@
  12f0: 01 4d 45 4c 32 70 0a 00 4d 45 4c 33 a4 4d 45 4d  .MEL2p..MEL3.MEM
  1300: 53 5b 82 49 0d 4c 49 44 5f 08 5f 48 49 44 0c 41  S[.I.LID_._HID.A
  1310: d0 0c 0d 14 3c 5f 4c 49 44 00 a0 1e 5c 48 38 44  ....<_LID...\H8D
  1320: 52 a4 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  R.\/._SB_PCI0LPC
  1330: 5f 45 43 5f 5f 48 50 4c 44 a1 16 a0 0f 7b 5c 52  _EC__HPLD....{\R
  1340: 42 45 43 0a 46 0a 04 00 a4 0a 01 a1 04 a4 0a 00  BEC.F...........
  1350: 14 26 5f 50 52 57 00 a0 15 90 5c 57 39 38 46 92  .&_PRW....\W98F.
  1360: 5c 57 4d 45 46 a4 12 06 02 0a 18 0a 04 a1 09 a4  \WMEF...........
  1370: 12 06 02 0a 18 0a 03 14 44 06 5f 50 53 57 01 a0  ........D._PSW..
  1380: 3f 5c 48 38 44 52 a0 1c 68 70 0a 01 5c 2f 05 5f  ?\H8DR..hp..\/._
  1390: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  13a0: 57 4c 4f a1 1b 70 0a 00 5c 2f 05 5f 53 42 5f 50  WLO..p..\/._SB_P
  13b0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57 4c 4f a1  CI0LPC_EC__HWLO.
  13c0: 1c a0 0d 68 5c 4d 42 45 43 0a 32 0a ff 0a 04 a1  ...h\MBEC.2.....
  13d0: 0c 5c 4d 42 45 43 0a 32 0a fb 0a 00 5b 82 4c 09  .\MBEC.2....[.L.
  13e0: 53 4c 50 42 08 5f 48 49 44 0c 41 d0 0c 0e 14 26  SLPB._HID.A....&
  13f0: 5f 50 52 57 00 a0 15 90 5c 57 39 38 46 92 5c 57  _PRW....\W98F.\W
  1400: 4d 45 46 a4 12 06 02 0a 18 0a 04 a1 09 a4 12 06  MEF.............
  1410: 02 0a 18 0a 03 14 44 06 5f 50 53 57 01 a0 3f 5c  ......D._PSW..?\
  1420: 48 38 44 52 a0 1c 68 70 0a 01 5c 2f 05 5f 53 42  H8DR..hp..\/._SB
  1430: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57 46  _PCI0LPC_EC__HWF
  1440: 4e a1 1b 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49  N..p..\/._SB_PCI
  1450: 30 4c 50 43 5f 45 43 5f 5f 48 57 46 4e a1 1c a0  0LPC_EC__HWFN...
  1460: 0d 68 5c 4d 42 45 43 0a 32 0a ff 0a 10 a1 0c 5c  .h\MBEC.2......\
  1470: 4d 42 45 43 0a 32 0a ef 0a 00 5b 82 81 af 06 50  MBEC.2....[....P
  1480: 43 49 30 5b 82 82 3f 04 4c 50 43 5f 08 5f 41 44  CI0[..?.LPC_._AD
  1490: 52 0c 00 00 1f 00 08 5f 53 33 44 0a 03 08 52 49  R......_S3D...RI
  14a0: 44 5f 0a 00 5b 82 4f 11 53 49 4f 5f 08 5f 48 49  D_..[.O.SIO_._HI
  14b0: 44 0c 41 d0 0c 02 08 5f 55 49 44 0a 00 08 5f 43  D.A...._UID..._C
  14c0: 52 53 11 42 10 0a fe 47 01 10 00 10 00 01 10 47  RS.B...G.......G
  14d0: 01 90 00 90 00 01 10 47 01 24 00 24 00 01 02 47  .......G.$.$...G
  14e0: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47  .(.(...G.,.,...G
  14f0: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47  .0.0...G.4.4...G
  1500: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47  .8.8...G.<.<...G
  1510: 01 a4 00 a4 00 01 02 47 01 a8 00 a8 00 01 02 47  .......G.......G
  1520: 01 ac 00 ac 00 01 02 47 01 b0 00 b0 00 01 06 47  .......G.......G
  1530: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47  .......G.......G
  1540: 01 50 00 50 00 01 04 47 01 72 00 72 00 01 06 47  .P.P...G.r.r...G
  1550: 01 4e 16 4e 16 01 02 47 01 2e 00 2e 00 01 02 47  .N.N...G.......G
  1560: 01 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47  .......G......@G
  1570: 01 00 08 00 08 01 10 47 01 e0 15 e0 15 01 10 47  .......G.......G
  1580: 01 00 16 00 16 01 60 86 09 00 01 00 00 00 f0 00  ......`.........
  1590: 00 00 04 86 09 00 01 00 c0 d1 fe 00 40 00 00 86  ............@...
  15a0: 09 00 01 00 40 d1 fe 00 40 00 00 86 09 00 01 00  ....@...@.......
  15b0: 80 d1 fe 00 10 00 00 86 09 00 01 00 90 d1 fe 00  ................
  15c0: 10 00 00 79 00 5b 80 4c 50 43 53 02 0a 00 0b 00  ...y.[.LPCS.....
  15d0: 01 5b 81 40 0a 4c 50 43 53 00 00 40 30 50 49 52  .[.@.LPCS..@0PIR
  15e0: 41 08 50 49 52 42 08 50 49 52 43 08 50 49 52 44  A.PIRB.PIRC.PIRD
  15f0: 08 53 45 52 51 08 00 18 50 49 52 45 08 50 49 52  .SERQ...PIRE.PIR
  1600: 46 08 50 49 52 47 08 50 49 52 48 08 00 40 0a 58  F.PIRG.PIRH..@.X
  1610: 55 31 41 03 00 01 58 55 32 41 03 00 01 58 50 41  U1A...XU2A...XPA
  1620: 5f 02 00 02 58 46 41 5f 01 00 03 58 55 31 45 01  _...XFA_...XU1E.
  1630: 58 55 32 45 01 58 50 45 5f 01 58 46 45 5f 01 00  XU2E.XPE_.XFE_..
  1640: 0c 58 47 31 45 01 00 06 58 47 31 41 09 00 10 58  .XG1E...XG1A...X
  1650: 47 32 45 01 00 03 58 47 32 41 0c 00 40 0b 00 02  G2E...XG2A..@...
  1660: 43 4c 4b 52 01 47 59 45 4e 01 00 03 43 34 43 33  CLKR.GYEN...C4C3
  1670: 01 00 08 5b 80 4c 50 49 4f 01 0b 80 11 0a 40 5b  ...[.LPIO.....@[
  1680: 81 4f 0a 4c 50 49 4f 03 47 55 30 30 08 47 55 30  .O.LPIO.GU00.GU0
  1690: 31 08 47 55 30 32 08 47 55 30 33 08 47 49 30 30  1.GU02.GU03.GI00
  16a0: 08 47 49 30 31 08 47 49 30 32 08 47 49 30 33 08  .GI01.GI02.GI03.
  16b0: 00 20 47 4c 30 30 08 47 4c 30 31 08 47 4c 30 32  . GL00.GL01.GL02
  16c0: 08 47 4c 30 33 08 00 40 04 47 42 30 30 08 47 42  .GL03..@.GB00.GB
  16d0: 30 31 08 47 42 30 32 08 47 42 30 33 08 00 40 08  01.GB02.GB03..@.
  16e0: 47 56 30 30 08 47 56 30 31 08 47 56 30 32 08 47  GV00.GV01.GV02.G
  16f0: 56 30 33 08 47 55 30 34 08 47 55 30 35 08 47 55  V03.GU04.GU05.GU
  1700: 30 36 08 47 55 30 37 08 47 49 30 34 08 47 49 30  06.GU07.GI04.GI0
  1710: 35 08 47 49 30 36 08 47 49 30 37 08 47 4c 30 34  5.GI06.GI07.GL04
  1720: 08 47 4c 30 35 08 47 4c 30 36 08 47 4c 30 37 08  .GL05.GL06.GL07.
  1730: 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 10 50  [.PMIO......[..P
  1740: 4d 49 4f 00 00 40 21 00 01 53 57 47 45 01 5b 82  MIO..@!..SWGE.[.
  1750: 33 50 49 43 5f 08 5f 48 49 44 0b 41 d0 08 5f 43  3PIC_._HID.A.._C
  1760: 52 53 11 20 0a 1d 47 01 20 00 20 00 01 02 47 01  RS. ..G. . ...G.
  1770: a0 00 a0 00 01 02 47 01 d0 04 d0 04 01 02 22 04  ......G.......".
  1780: 00 79 00 5b 82 25 54 49 4d 52 08 5f 48 49 44 0c  .y.[.%TIMR._HID.
  1790: 41 d0 01 00 08 5f 43 52 53 11 10 0a 0d 47 01 40  A...._CRS....G.@
  17a0: 00 40 00 01 04 22 01 00 79 00 5b 82 42 05 48 50  .@..."..y.[.B.HP
  17b0: 45 54 08 5f 48 49 44 0c 41 d0 01 03 14 2a 5f 53  ET._HID.A....*_S
  17c0: 54 41 00 a0 08 57 39 38 46 a4 0a 00 a1 17 a0 10  TA...W98F.......
  17d0: 90 5c 57 4e 54 46 92 5c 57 58 50 46 a4 0a 00 a1  .\WNTF.\WXPF....
  17e0: 04 a4 0a 0f a4 0a 00 08 5f 43 52 53 11 11 0a 0e  ........_CRS....
  17f0: 86 09 00 00 00 00 d0 fe 00 04 00 00 79 00 5b 82  ............y.[.
  1800: 35 44 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08  5DMAC._HID.A....
  1810: 5f 43 52 53 11 20 0a 1d 47 01 00 00 00 00 01 10  _CRS. ..G.......
  1820: 47 01 80 00 80 00 01 10 47 01 c0 00 c0 00 01 20  G.......G...... 
  1830: 2a 10 05 79 00 5b 82 22 53 50 4b 52 08 5f 48 49  *..y.[."SPKR._HI
  1840: 44 0c 41 d0 08 00 08 5f 43 52 53 11 0d 0a 0a 47  D.A...._CRS....G
  1850: 01 61 00 61 00 01 01 79 00 5b 82 25 46 50 55 5f  .a.a...y.[.%FPU_
  1860: 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 52 53 11  ._HID.A...._CRS.
  1870: 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 20 79 00  ...G.......". y.
  1880: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b  [.%RTC_._HID.A..
  1890: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00  .._CRS....G.p.p.
  18a0: 01 02 22 00 01 79 00 5b 82 2d 4b 42 44 5f 08 5f  .."..y.[.-KBD_._
  18b0: 48 49 44 0c 41 d0 03 03 08 5f 43 52 53 11 18 0a  HID.A...._CRS...
  18c0: 15 47 01 60 00 60 00 01 01 47 01 64 00 64 00 01  .G.`.`...G.d.d..
  18d0: 01 22 02 00 79 00 5b 82 4a 05 4d 4f 55 5f 08 5f  ."..y.[.J.MOU_._
  18e0: 48 49 44 0c 24 4d 37 80 08 5f 43 49 44 0c 41 d0  HID.$M7.._CID.A.
  18f0: 0f 13 08 5f 43 52 53 11 08 0a 05 22 00 10 79 00  ..._CRS...."..y.
  1900: 14 31 4d 48 49 44 00 a0 1e 5c 2f 04 5f 53 42 5f  .1MHID...\/._SB_
  1910: 50 43 49 30 4c 50 43 5f 50 41 44 44 70 0c 24 4d  PCI0LPC_PADDp.$M
  1920: 37 80 5f 48 49 44 a1 0b 70 0c 24 4d 00 57 5f 48  7._HID..p.$M.W_H
  1930: 49 44 5b 80 49 4d 47 41 01 0b e0 15 0a 10 5b 81  ID[.IMGA......[.
  1940: 21 49 4d 47 41 01 00 08 00 08 00 08 57 41 4b 52  !IMGA.......WAKR
  1950: 10 00 38 47 41 49 58 08 00 08 47 41 44 54 08 00  ..8GAIX...GADT..
  1960: 08 5b 86 49 0b 47 41 49 58 47 41 44 54 01 00 48  .[.I.GAIXGADT..H
  1970: 20 56 41 55 58 02 00 01 57 4f 4c 45 01 00 04 00   VAUX...WOLE....
  1980: 40 07 00 01 43 42 50 57 01 43 42 53 4c 01 56 44  @...CBPW.CBSL.VD
  1990: 50 57 01 50 44 4e 45 01 42 4c 50 4c 01 00 01 4c  PW.PDNE.BLPL...L
  19a0: 45 44 53 01 54 50 34 52 01 50 41 44 52 01 42 50  EDS.TP4R.PADR.BP
  19b0: 41 44 01 00 01 00 01 50 41 44 44 01 00 0a 44 4c  AD.....PADD...DL
  19c0: 41 4e 01 00 47 06 42 55 53 43 01 42 55 53 44 01  AN..G.BUSC.BUSD.
  19d0: 00 01 44 53 43 49 01 00 04 45 50 57 47 01 00 02  ..DSCI...EPWG...
  19e0: 44 53 43 53 01 00 04 43 53 4f 4e 01 55 52 53 54  DSCS...CSON.URST
  19f0: 01 00 4e 06 47 44 52 30 01 47 44 52 31 01 47 44  ..N.GDR0.GDR1.GD
  1a00: 52 32 01 00 05 47 44 54 30 01 47 44 54 31 01 47  R2...GDT0.GDT1.G
  1a10: 44 54 32 01 00 45 28 47 41 49 44 08 5b 80 4e 43  DT2..E(GAID.[.NC
  1a20: 46 47 01 0a 2e 0a 02 5b 81 10 4e 43 46 47 01 49  FG.....[..NCFG.I
  1a30: 4e 44 58 08 44 41 54 41 08 5b 86 42 0a 49 4e 44  NDX.DATA.[.B.IND
  1a40: 58 44 41 54 41 01 00 38 4c 44 4e 5f 08 00 40 0c  XDATA..8LDN_..@.
  1a50: 53 49 4f 44 08 00 08 53 43 46 32 08 00 08 53 43  SIOD...SCF2...SC
  1a60: 46 34 08 00 02 50 50 53 45 01 00 04 50 4e 46 5f  F4...PPSE...PNF_
  1a70: 01 46 44 43 44 01 50 50 44 5f 01 53 50 32 44 01  .FDCD.PPD_.SP2D.
  1a80: 53 50 31 44 01 00 01 47 50 53 52 02 00 01 53 52  SP1D...GPSR...SR
  1a90: 49 44 08 00 08 53 43 46 39 08 00 08 00 28 4c 44  ID...SCF9....(LD
  1aa0: 41 5f 01 00 07 00 48 17 49 4f 48 49 08 49 4f 4c  A_....H.IOHI.IOL
  1ab0: 57 08 00 40 07 49 52 51 4e 04 49 52 51 57 01 00  W..@.IRQN.IRQW..
  1ac0: 03 49 52 51 54 01 49 52 51 4c 01 00 06 00 10 44  .IRQT.IRQL.....D
  1ad0: 4d 41 30 03 00 05 44 4d 41 31 03 00 05 5b 86 23  MA0...DMA1...[.#
  1ae0: 49 4e 44 58 44 41 54 41 01 00 40 78 50 54 52 53  INDXDATA..@xPTRS
  1af0: 01 50 50 4d 43 01 00 02 50 45 52 41 01 50 4d 44  .PPMC...PERA.PMD
  1b00: 53 03 5b 86 23 49 4e 44 58 44 41 54 41 01 00 40  S.[.#INDXDATA..@
  1b10: 78 53 54 52 53 01 53 50 4d 43 01 53 42 53 59 01  xSTRS.SPMC.SBSY.
  1b20: 00 04 53 42 53 45 01 5b 86 1c 49 4e 44 58 44 41  ..SBSE.[..INDXDA
  1b30: 54 41 01 00 40 78 47 50 50 53 08 47 50 50 43 08  TA..@xGPPS.GPPC.
  1b40: 47 50 45 52 08 5b 80 43 46 47 53 01 0b 4e 16 0a  GPER.[.CFGS..N..
  1b50: 02 5b 81 10 43 46 47 53 01 4e 44 58 53 08 41 54  .[..CFGS.NDXS.AT
  1b60: 41 53 08 5b 86 4a 0a 4e 44 58 53 41 54 41 53 01  AS.[.J.NDXSATAS.
  1b70: 00 38 4c 44 4e 53 08 00 40 0c 00 08 00 08 00 08  .8LDNS..@.......
  1b80: 00 08 00 08 00 02 50 53 45 53 01 00 04 50 4e 46  ......PSES...PNF
  1b90: 53 01 44 43 44 53 01 50 50 44 53 01 53 50 32 53  S.DCDS.PPDS.SP2S
  1ba0: 01 53 50 31 53 01 00 01 50 53 52 53 02 00 01 52  .SP1S...PSRS...R
  1bb0: 49 44 53 08 00 08 43 43 53 53 02 43 43 45 53 01  IDS...CCSS.CCES.
  1bc0: 4d 43 53 53 01 4d 45 53 53 01 00 03 00 08 00 28  MCSS.MESS......(
  1bd0: 4c 44 41 53 01 00 07 00 48 17 4f 48 49 53 08 4f  LDAS....H.OHIS.O
  1be0: 4c 57 53 08 00 40 07 52 51 4e 53 04 52 51 57 53  LWS..@.RQNS.RQWS
  1bf0: 01 00 03 52 51 54 53 01 52 51 4c 53 01 00 06 00  ...RQTS.RQLS....
  1c00: 10 4d 41 30 53 03 00 05 4d 41 31 53 03 00 05 5b  .MA0S...MA1S...[
  1c10: 86 23 4e 44 58 53 41 54 41 53 01 00 40 78 54 52  .#NDXSATAS..@xTR
  1c20: 53 53 01 50 4d 43 53 01 42 53 59 53 01 00 04 53  SS.PMCS.BSYS...S
  1c30: 45 53 53 01 5b 80 4e 53 44 4c 01 0b 4c 16 0a 01  ESS.[.NSDL..L...
  1c40: 5b 81 0b 4e 53 44 4c 01 44 4c 50 43 08 5b 80 4e  [..NSDL.DLPC.[.N
  1c50: 53 49 4f 01 0b 80 16 0a 0c 5b 81 27 4e 53 49 4f  SIO......[.'NSIO
  1c60: 01 44 52 53 54 01 44 4c 50 44 01 00 06 00 04 44  .DRST.DLPD.....D
  1c70: 4b 49 30 01 00 03 00 38 44 4b 49 31 01 44 4b 49  KI0....8DKI1.DKI
  1c80: 32 01 5b 80 44 53 49 4f 01 0b 20 16 0a 0c 5b 81  2.[.DSIO.. ...[.
  1c90: 0f 44 53 49 4f 01 00 01 44 55 53 42 01 00 06 5b  .DSIO...DUSB...[
  1ca0: 82 4b 18 46 44 43 5f 08 5f 48 49 44 0c 41 d0 07  .K.FDC_._HID.A..
  1cb0: 00 14 20 5f 53 54 41 00 a0 14 5c 4c 46 44 43 a0  .. _STA...\LFDC.
  1cc0: 08 58 46 45 5f a4 0a 0f a1 04 a4 0a 0d a1 04 a4  .XFE_...........
  1cd0: 0a 00 14 29 5f 44 49 53 00 70 0a 00 58 46 45 5f  ...)_DIS.p..XFE_
  1ce0: 70 0a 00 4c 44 4e 5f 70 0a 00 49 52 51 4e 70 0a  p..LDN_p..IRQNp.
  1cf0: 00 4c 44 41 5f 70 0a 01 46 44 43 44 08 5f 43 52  .LDA_p..FDCD._CR
  1d00: 53 11 1b 0a 18 47 01 f0 03 f0 03 01 06 47 01 f7  S....G.......G..
  1d10: 03 f7 03 01 01 22 40 00 2a 04 00 79 00 08 5f 50  ....."@.*..y.._P
  1d20: 52 53 11 1b 0a 18 47 01 f0 03 f0 03 01 06 47 01  RS....G.......G.
  1d30: f7 03 f7 03 01 01 22 40 00 2a 04 00 79 00 14 4d  ......"@.*..y..M
  1d40: 04 5f 53 52 53 01 70 0a 00 4c 44 4e 5f 70 0a 00  ._SRS.p..LDN_p..
  1d50: 4c 44 41 5f 70 0a 03 49 4f 48 49 70 0a f0 49 4f  LDA_p..IOHIp..IO
  1d60: 4c 57 70 0a 06 49 52 51 4e 70 0a 02 44 4d 41 30  LWp..IRQNp..DMA0
  1d70: 70 0a 00 46 44 43 44 70 0a 01 4c 44 41 5f 70 0a  p..FDCDp..LDA_p.
  1d80: 00 58 46 41 5f 70 0a 01 58 46 45 5f 14 1b 5f 50  .XFA_p..XFE_.._P
  1d90: 53 43 00 70 0a 00 4c 44 4e 5f a0 08 4c 44 41 5f  SC.p..LDN_..LDA_
  1da0: a4 0a 00 a1 04 a4 0a 03 14 14 5f 50 53 30 00 70  .........._PS0.p
  1db0: 0a 00 4c 44 4e 5f 70 0a 01 4c 44 41 5f 14 14 5f  ..LDN_p..LDA_.._
  1dc0: 50 53 33 00 70 0a 00 4c 44 4e 5f 70 0a 00 4c 44  PS3.p..LDN_p..LD
  1dd0: 41 5f 14 23 53 4c 46 44 01 a0 0e 68 5c 4d 49 53  A_.#SLFD...h\MIS
  1de0: 41 0b f3 03 0a f3 0a 04 a1 0d 5c 4d 49 53 41 0b  A.........\MISA.
  1df0: f3 03 0a f3 0a 00 5b 82 34 46 44 44 30 08 5f 41  ......[.4FDD0._A
  1e00: 44 52 0a 00 08 5f 46 44 49 12 22 10 0a 00 0a 04  DR..._FDI.".....
  1e10: 0a 4f 0a 12 0a 01 0a df 0a 02 0a 25 0a 02 0a 12  .O.........%....
  1e20: 0a 1b 0a ff 0a 6c 0a f6 0a 0f 0a 05 10 86 2f 01  .....l......../.
  1e30: 5c 2f 03 5f 53 42 5f 50 43 49 30 4c 50 43 5f 5b  \/._SB_PCI0LPC_[
  1e40: 82 41 2d 4c 55 52 54 08 5f 55 49 44 0a 00 14 2d  .A-LURT._UID...-
  1e50: 5f 53 54 41 00 a0 16 93 5c 2f 03 5f 53 42 5f 4c  _STA....\/._SB_L
  1e60: 43 49 4f 5f 53 54 41 0a 00 a4 0a 00 a1 0f a0 08  CIO_STA.........
  1e70: 58 55 31 45 a4 0a 0f a1 04 a4 0a 0d 08 5f 48 49  XU1E........._HI
  1e80: 44 0c 41 d0 05 01 08 5f 50 52 57 12 06 02 0a 18  D.A...._PRW.....
  1e90: 0a 03 14 44 06 5f 50 53 57 01 a0 3f 5c 48 38 44  ...D._PSW..?\H8D
  1ea0: 52 a0 1c 68 70 0a 01 5c 2f 05 5f 53 42 5f 50 43  R..hp..\/._SB_PC
  1eb0: 49 30 4c 50 43 5f 45 43 5f 5f 48 57 52 49 a1 1b  I0LPC_EC__HWRI..
  1ec0: 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  p..\/._SB_PCI0LP
  1ed0: 43 5f 45 43 5f 5f 48 57 52 49 a1 1c a0 0d 68 5c  C_EC__HWRI....h\
  1ee0: 4d 42 45 43 0a 32 0a ff 0a 40 a1 0c 5c 4d 42 45  MBEC.2...@..\MBE
  1ef0: 43 0a 32 0a bf 0a 00 14 29 5f 44 49 53 00 70 0a  C.2.....)_DIS.p.
  1f00: 00 58 55 31 45 70 0a 03 4c 44 4e 5f 70 0a 00 49  .XU1Ep..LDN_p..I
  1f10: 52 51 4e 70 0a 00 4c 44 41 5f 70 0a 01 53 50 31  RQNp..LDA_p..SP1
  1f20: 44 08 55 31 42 46 11 10 0a 0d 47 01 00 00 00 00  D.U1BF....G.....
  1f30: 01 08 22 00 00 79 00 8b 55 31 42 46 0a 02 55 31  .."..y..U1BF..U1
  1f40: 4d 4e 8b 55 31 42 46 0a 04 55 31 4d 58 8b 55 31  MN.U1BF..U1MX.U1
  1f50: 42 46 0a 09 55 31 49 51 14 4a 04 5f 43 52 53 00  BF..U1IQ.J._CRS.
  1f60: 70 0a 03 4c 44 4e 5f 7d 79 49 4f 48 49 0a 08 00  p..LDN_}yIOHI...
  1f70: 49 4f 4c 57 60 70 60 55 31 4d 4e 70 60 55 31 4d  IOLW`p`U1MNp`U1M
  1f80: 58 70 49 52 51 4e 60 a0 0d 60 79 0a 01 49 52 51  XpIRQN`..`y..IRQ
  1f90: 4e 55 31 49 51 a1 08 70 0a 00 55 31 49 51 a4 55  NU1IQ..p..U1IQ.U
  1fa0: 31 42 46 08 5f 50 52 53 11 4f 06 0a 6b 31 00 47  1BF._PRS.O..k1.G
  1fb0: 01 f8 03 f8 03 01 08 22 10 00 31 01 47 01 f8 02  ......."..1.G...
  1fc0: f8 02 01 08 22 08 00 31 01 47 01 e8 03 e8 03 01  ...."..1.G......
  1fd0: 08 22 10 00 31 01 47 01 e8 02 e8 02 01 08 22 08  ."..1.G.......".
  1fe0: 00 31 02 47 01 f8 03 f8 03 01 08 22 a8 00 31 02  .1.G......."..1.
  1ff0: 47 01 f8 02 f8 02 01 08 22 b0 00 31 02 47 01 e8  G......."..1.G..
  2000: 03 e8 03 01 08 22 a8 00 31 02 47 01 e8 02 e8 02  ....."..1.G.....
  2010: 01 08 22 b0 00 38 79 00 14 4f 0c 5f 53 52 53 01  .."..8y..O._SRS.
  2020: 8c 68 0a 02 52 55 49 4c 8c 68 0a 03 52 55 49 48  .h..RUIL.h..RUIH
  2030: 8b 68 0a 02 52 55 49 4f 8b 68 0a 09 52 55 49 51  .h..RUIO.h..RUIQ
  2040: 70 0a 03 4c 44 4e 5f 70 0a 00 4c 44 41 5f 70 52  p..LDN_p..LDA_pR
  2050: 55 49 4c 49 4f 4c 57 70 52 55 49 48 49 4f 48 49  UILIOLWpRUIHIOHI
  2060: a0 12 52 55 49 51 82 52 55 49 51 60 70 76 60 49  ..RUIQ.RUIQ`pv`I
  2070: 52 51 4e a1 08 70 0a 00 49 52 51 4e 70 0a 00 53  RQN..p..IRQNp..S
  2080: 50 31 44 70 0a 01 4c 44 41 5f a0 10 93 52 55 49  P1Dp..LDA_...RUI
  2090: 4f 0b f8 03 70 0a 00 58 55 31 41 a1 45 04 a0 10  O...p..XU1A.E...
  20a0: 93 52 55 49 4f 0b f8 02 70 0a 01 58 55 31 41 a1  .RUIO...p..XU1A.
  20b0: 31 a0 10 93 52 55 49 4f 0b e8 03 70 0a 07 58 55  1...RUIO...p..XU
  20c0: 31 41 a1 1e a0 10 93 52 55 49 4f 0b e8 02 70 0a  1A.....RUIO...p.
  20d0: 05 58 55 31 41 a1 0b 5b 32 02 00 00 02 90 0b b5  .XU1A..[2.......
  20e0: 01 70 0a 01 58 55 31 45 14 1b 5f 50 53 43 00 70  .p..XU1E.._PSC.p
  20f0: 0a 03 4c 44 4e 5f a0 08 4c 44 41 5f a4 0a 00 a1  ..LDN_..LDA_....
  2100: 04 a4 0a 03 14 06 5f 50 53 30 00 14 06 5f 50 53  ......_PS0..._PS
  2110: 33 00 5b 82 47 2d 44 55 52 54 08 5f 55 49 44 0a  3.[.G-DURT._UID.
  2120: 01 14 33 5f 53 54 41 00 a0 1c 92 7b 0a 08 5c 2f  ..3_STA....{..\/
  2130: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 44 4c 50  ._SB_PCI0LPC_DLP
  2140: 43 00 a4 0a 00 a1 0f a0 08 58 55 31 45 a4 0a 0f  C........XU1E...
  2150: a1 04 a4 0a 0d 08 5f 48 49 44 0c 41 d0 05 01 08  ......_HID.A....
  2160: 5f 50 52 57 12 06 02 0a 18 0a 03 14 44 06 5f 50  _PRW........D._P
  2170: 53 57 01 a0 3f 5c 48 38 44 52 a0 1c 68 70 0a 01  SW..?\H8DR..hp..
  2180: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  2190: 43 5f 5f 48 57 52 49 a1 1b 70 0a 00 5c 2f 05 5f  C__HWRI..p..\/._
  21a0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  21b0: 57 52 49 a1 1c a0 0d 68 5c 4d 42 45 43 0a 32 0a  WRI....h\MBEC.2.
  21c0: ff 0a 40 a1 0c 5c 4d 42 45 43 0a 32 0a bf 0a 00  ..@..\MBEC.2....
  21d0: 14 29 5f 44 49 53 00 70 0a 00 58 55 31 45 70 0a  .)_DIS.p..XU1Ep.
  21e0: 03 4c 44 4e 5f 70 0a 00 49 52 51 4e 70 0a 00 4c  .LDN_p..IRQNp..L
  21f0: 44 41 5f 70 0a 01 53 50 31 44 08 55 31 42 46 11  DA_p..SP1D.U1BF.
  2200: 10 0a 0d 47 01 00 00 00 00 01 08 22 00 00 79 00  ...G......."..y.
  2210: 8b 55 31 42 46 0a 02 55 31 4d 4e 8b 55 31 42 46  .U1BF..U1MN.U1BF
  2220: 0a 04 55 31 4d 58 8b 55 31 42 46 0a 09 55 31 49  ..U1MX.U1BF..U1I
  2230: 51 14 4a 04 5f 43 52 53 00 70 0a 03 4c 44 4e 5f  Q.J._CRS.p..LDN_
  2240: 7d 79 49 4f 48 49 0a 08 00 49 4f 4c 57 60 70 60  }yIOHI...IOLW`p`
  2250: 55 31 4d 4e 70 60 55 31 4d 58 70 49 52 51 4e 60  U1MNp`U1MXpIRQN`
  2260: a0 0d 60 79 0a 01 49 52 51 4e 55 31 49 51 a1 08  ..`y..IRQNU1IQ..
  2270: 70 0a 00 55 31 49 51 a4 55 31 42 46 08 5f 50 52  p..U1IQ.U1BF._PR
  2280: 53 11 4f 06 0a 6b 31 00 47 01 f8 03 f8 03 01 08  S.O..k1.G.......
  2290: 22 10 00 31 01 47 01 f8 02 f8 02 01 08 22 08 00  "..1.G......."..
  22a0: 31 01 47 01 e8 03 e8 03 01 08 22 10 00 31 01 47  1.G......."..1.G
  22b0: 01 e8 02 e8 02 01 08 22 08 00 31 02 47 01 f8 03  ......."..1.G...
  22c0: f8 03 01 08 22 a8 00 31 02 47 01 f8 02 f8 02 01  ...."..1.G......
  22d0: 08 22 b0 00 31 02 47 01 e8 03 e8 03 01 08 22 a8  ."..1.G.......".
  22e0: 00 31 02 47 01 e8 02 e8 02 01 08 22 b0 00 38 79  .1.G......."..8y
  22f0: 00 14 4f 0c 5f 53 52 53 01 8c 68 0a 02 52 55 49  ..O._SRS..h..RUI
  2300: 4c 8c 68 0a 03 52 55 49 48 8b 68 0a 02 52 55 49  L.h..RUIH.h..RUI
  2310: 4f 8b 68 0a 09 52 55 49 51 70 0a 03 4c 44 4e 5f  O.h..RUIQp..LDN_
  2320: 70 0a 00 4c 44 41 5f 70 52 55 49 4c 49 4f 4c 57  p..LDA_pRUILIOLW
  2330: 70 52 55 49 48 49 4f 48 49 a0 12 52 55 49 51 82  pRUIHIOHI..RUIQ.
  2340: 52 55 49 51 60 70 76 60 49 52 51 4e a1 08 70 0a  RUIQ`pv`IRQN..p.
  2350: 00 49 52 51 4e 70 0a 00 53 50 31 44 70 0a 01 4c  .IRQNp..SP1Dp..L
  2360: 44 41 5f a0 10 93 52 55 49 4f 0b f8 03 70 0a 00  DA_...RUIO...p..
  2370: 58 55 31 41 a1 45 04 a0 10 93 52 55 49 4f 0b f8  XU1A.E....RUIO..
  2380: 02 70 0a 01 58 55 31 41 a1 31 a0 10 93 52 55 49  .p..XU1A.1...RUI
  2390: 4f 0b e8 03 70 0a 07 58 55 31 41 a1 1e a0 10 93  O...p..XU1A.....
  23a0: 52 55 49 4f 0b e8 02 70 0a 05 58 55 31 41 a1 0b  RUIO...p..XU1A..
  23b0: 5b 32 02 00 00 02 90 0b b5 01 70 0a 01 58 55 31  [2........p..XU1
  23c0: 45 14 1b 5f 50 53 43 00 70 0a 03 4c 44 4e 5f a0  E.._PSC.p..LDN_.
  23d0: 08 4c 44 41 5f a4 0a 00 a1 04 a4 0a 03 14 06 5f  .LDA_.........._
  23e0: 50 53 30 00 14 06 5f 50 53 33 00 5b 82 4c 31 4c  PS0..._PS3.[.L1L
  23f0: 4c 50 54 08 5f 55 49 44 0a 00 14 3d 5f 53 54 41  LPT._UID...=_STA
  2400: 00 a0 16 93 5c 2f 03 5f 53 42 5f 4c 43 49 4f 5f  ....\/._SB_LCIO_
  2410: 53 54 41 0a 00 a4 0a 00 a1 1f a0 18 92 93 5c 50  STA...........\P
  2420: 4d 4f 44 0a 03 a0 08 58 50 45 5f a4 0a 0f a1 04  MOD....XPE_.....
  2430: a4 0a 0d a1 04 a4 0a 00 08 5f 48 49 44 0c 41 d0  ........._HID.A.
  2440: 04 00 14 29 5f 44 49 53 00 70 0a 00 58 50 45 5f  ...)_DIS.p..XPE_
  2450: 70 0a 01 4c 44 4e 5f 70 0a 00 49 52 51 4e 70 0a  p..LDN_p..IRQNp.
  2460: 00 4c 44 41 5f 70 0a 01 50 50 44 5f 08 50 50 42  .LDA_p..PPD_.PPB
  2470: 46 11 10 0a 0d 47 01 00 00 00 00 01 00 22 00 00  F....G......."..
  2480: 79 00 8b 50 50 42 46 0a 02 4c 50 4e 30 8b 50 50  y..PPBF..LPN0.PP
  2490: 42 46 0a 04 4c 50 58 30 8c 50 50 42 46 0a 07 4c  BF..LPX0.PPBF..L
  24a0: 50 4c 30 8b 50 50 42 46 0a 09 4c 50 49 51 14 40  PL0.PPBF..LPIQ.@
  24b0: 07 5f 43 52 53 00 a0 0e 93 5c 50 4d 4f 44 0a 03  ._CRS....\PMOD..
  24c0: a4 50 50 42 46 70 0a 01 4c 44 4e 5f 7d 79 49 4f  .PPBFp..LDN_}yIO
  24d0: 48 49 0a 08 00 49 4f 4c 57 60 70 60 4c 50 4e 30  HI...IOLW`p`LPN0
  24e0: 70 60 4c 50 58 30 a0 0d 93 60 0b bc 03 70 0a 03  p`LPX0...`...p..
  24f0: 4c 50 4c 30 a1 08 70 0a 08 4c 50 4c 30 70 49 52  LPL0..p..LPL0pIR
  2500: 51 4e 60 a0 0d 60 79 0a 01 49 52 51 4e 4c 50 49  QN`..`y..IRQNLPI
  2510: 51 a1 08 70 0a 00 4c 50 49 51 a4 50 50 42 46 14  Q..p..LPIQ.PPBF.
  2520: 19 5f 50 52 53 00 a0 0b 5c 50 4d 4f 44 a4 50 45  ._PRS...\PMOD.PE
  2530: 50 50 a1 06 a4 50 4c 50 54 08 50 4c 50 54 11 4f  PP...PLPT.PLPT.O
  2540: 04 0a 4b 30 47 01 bc 03 bc 03 01 03 22 80 00 30  ..K0G......."..0
  2550: 47 01 78 03 78 03 01 08 22 80 00 30 47 01 78 02  G.x.x..."..0G.x.
  2560: 78 02 01 08 22 20 00 30 47 01 bc 03 bc 03 01 03  x..." .0G.......
  2570: 22 20 00 30 47 01 78 03 78 03 01 08 22 20 00 30  " .0G.x.x..." .0
  2580: 47 01 78 02 78 02 01 08 22 80 00 38 79 00 08 50  G.x.x..."..8y..P
  2590: 45 50 50 11 36 0a 33 30 47 01 78 03 78 03 01 08  EPP.6.30G.x.x...
  25a0: 22 80 00 30 47 01 78 02 78 02 01 08 22 20 00 30  "..0G.x.x..." .0
  25b0: 47 01 78 03 78 03 01 08 22 20 00 30 47 01 78 02  G.x.x..." .0G.x.
  25c0: 78 02 01 08 22 80 00 38 79 00 14 48 0f 5f 53 52  x..."..8y..H._SR
  25d0: 53 01 8c 68 0a 02 52 4c 49 4c 8c 68 0a 03 52 4c  S..h..RLIL.h..RL
  25e0: 49 48 8b 68 0a 02 52 4c 49 4f 8b 68 0a 09 52 4c  IH.h..RLIO.h..RL
  25f0: 49 51 70 0a 01 4c 44 4e 5f 70 0a 00 4c 44 41 5f  IQp..LDN_p..LDA_
  2600: 70 52 4c 49 4c 49 4f 4c 57 70 52 4c 49 48 49 4f  pRLILIOLWpRLIHIO
  2610: 48 49 a0 12 52 4c 49 51 82 52 4c 49 51 60 70 76  HI..RLIQ.RLIQ`pv
  2620: 60 49 52 51 4e a1 08 70 0a 00 49 52 51 4e a0 20  `IRQN..p..IRQN. 
  2630: 93 5c 50 4d 4f 44 0a 00 a0 0d 5c 50 44 49 52 70  .\PMOD....\PDIRp
  2640: 0a 01 50 4d 44 53 a1 08 70 0a 00 50 4d 44 53 a1  ..PMDS..p..PMDS.
  2650: 1b a0 10 93 5c 50 4d 4f 44 0a 01 70 0a 02 50 4d  ....\PMOD..p..PM
  2660: 44 53 a1 08 70 0a 03 50 4d 44 53 70 0a 00 50 50  DS..p..PMDSp..PP
  2670: 44 5f 70 0a 01 4c 44 41 5f a0 10 93 52 4c 49 4f  D_p..LDA_...RLIO
  2680: 0b 78 03 70 0a 00 58 50 41 5f a1 31 a0 10 93 52  .x.p..XPA_.1...R
  2690: 4c 49 4f 0b 78 02 70 0a 01 58 50 41 5f a1 1e a0  LIO.x.p..XPA_...
  26a0: 10 93 52 4c 49 4f 0b bc 03 70 0a 02 58 50 41 5f  ..RLIO...p..XPA_
  26b0: a1 0b 5b 32 02 00 00 02 90 0b ce 01 70 0a 01 58  ..[2........p..X
  26c0: 50 45 5f 14 1b 5f 50 53 43 00 70 0a 01 4c 44 4e  PE_.._PSC.p..LDN
  26d0: 5f a0 08 4c 44 41 5f a4 0a 00 a1 04 a4 0a 03 14  _..LDA_.........
  26e0: 14 5f 50 53 30 00 70 0a 01 4c 44 4e 5f 70 0a 01  ._PS0.p..LDN_p..
  26f0: 4c 44 41 5f 14 14 5f 50 53 33 00 70 0a 01 4c 44  LDA_.._PS3.p..LD
  2700: 4e 5f 70 0a 00 4c 44 41 5f 5b 82 43 32 44 4c 50  N_p..LDA_[.C2DLP
  2710: 54 08 5f 55 49 44 0a 01 14 44 04 5f 53 54 41 00  T._UID...D._STA.
  2720: a0 1c 92 7b 0a 08 5c 2f 04 5f 53 42 5f 50 43 49  ...{..\/._SB_PCI
  2730: 30 4c 50 43 5f 44 4c 50 43 00 a4 0a 00 a1 1f a0  0LPC_DLPC.......
  2740: 18 92 93 5c 50 4d 4f 44 0a 03 a0 08 58 50 45 5f  ...\PMOD....XPE_
  2750: a4 0a 0f a1 04 a4 0a 0d a1 04 a4 0a 00 08 5f 48  .............._H
  2760: 49 44 0c 41 d0 04 00 14 29 5f 44 49 53 00 70 0a  ID.A....)_DIS.p.
  2770: 00 58 50 45 5f 70 0a 01 4c 44 4e 5f 70 0a 00 49  .XPE_p..LDN_p..I
  2780: 52 51 4e 70 0a 00 4c 44 41 5f 70 0a 01 50 50 44  RQNp..LDA_p..PPD
  2790: 5f 08 50 50 42 46 11 10 0a 0d 47 01 00 00 00 00  _.PPBF....G.....
  27a0: 01 00 22 00 00 79 00 8b 50 50 42 46 0a 02 4c 50  .."..y..PPBF..LP
  27b0: 4e 30 8b 50 50 42 46 0a 04 4c 50 58 30 8c 50 50  N0.PPBF..LPX0.PP
  27c0: 42 46 0a 07 4c 50 4c 30 8b 50 50 42 46 0a 09 4c  BF..LPL0.PPBF..L
  27d0: 50 49 51 14 40 07 5f 43 52 53 00 a0 0e 93 5c 50  PIQ.@._CRS....\P
  27e0: 4d 4f 44 0a 03 a4 50 50 42 46 70 0a 01 4c 44 4e  MOD...PPBFp..LDN
  27f0: 5f 7d 79 49 4f 48 49 0a 08 00 49 4f 4c 57 60 70  _}yIOHI...IOLW`p
  2800: 60 4c 50 4e 30 70 60 4c 50 58 30 a0 0d 93 60 0b  `LPN0p`LPX0...`.
  2810: bc 03 70 0a 03 4c 50 4c 30 a1 08 70 0a 08 4c 50  ..p..LPL0..p..LP
  2820: 4c 30 70 49 52 51 4e 60 a0 0d 60 79 0a 01 49 52  L0pIRQN`..`y..IR
  2830: 51 4e 4c 50 49 51 a1 08 70 0a 00 4c 50 49 51 a4  QNLPIQ..p..LPIQ.
  2840: 50 50 42 46 14 19 5f 50 52 53 00 a0 0b 5c 50 4d  PPBF.._PRS...\PM
  2850: 4f 44 a4 50 45 50 50 a1 06 a4 50 4c 50 54 08 50  OD.PEPP...PLPT.P
  2860: 4c 50 54 11 4f 04 0a 4b 30 47 01 bc 03 bc 03 01  LPT.O..K0G......
  2870: 03 22 80 00 30 47 01 78 03 78 03 01 08 22 80 00  ."..0G.x.x..."..
  2880: 30 47 01 78 02 78 02 01 08 22 20 00 30 47 01 bc  0G.x.x..." .0G..
  2890: 03 bc 03 01 03 22 20 00 30 47 01 78 03 78 03 01  ....." .0G.x.x..
  28a0: 08 22 20 00 30 47 01 78 02 78 02 01 08 22 80 00  ." .0G.x.x..."..
  28b0: 38 79 00 08 50 45 50 50 11 36 0a 33 30 47 01 78  8y..PEPP.6.30G.x
  28c0: 03 78 03 01 08 22 80 00 30 47 01 78 02 78 02 01  .x..."..0G.x.x..
  28d0: 08 22 20 00 30 47 01 78 03 78 03 01 08 22 20 00  ." .0G.x.x..." .
  28e0: 30 47 01 78 02 78 02 01 08 22 80 00 38 79 00 14  0G.x.x..."..8y..
  28f0: 48 0f 5f 53 52 53 01 8c 68 0a 02 52 4c 49 4c 8c  H._SRS..h..RLIL.
  2900: 68 0a 03 52 4c 49 48 8b 68 0a 02 52 4c 49 4f 8b  h..RLIH.h..RLIO.
  2910: 68 0a 09 52 4c 49 51 70 0a 01 4c 44 4e 5f 70 0a  h..RLIQp..LDN_p.
  2920: 00 4c 44 41 5f 70 52 4c 49 4c 49 4f 4c 57 70 52  .LDA_pRLILIOLWpR
  2930: 4c 49 48 49 4f 48 49 a0 12 52 4c 49 51 82 52 4c  LIHIOHI..RLIQ.RL
  2940: 49 51 60 70 76 60 49 52 51 4e a1 08 70 0a 00 49  IQ`pv`IRQN..p..I
  2950: 52 51 4e a0 20 93 5c 50 4d 4f 44 0a 00 a0 0d 5c  RQN. .\PMOD....\
  2960: 50 44 49 52 70 0a 01 50 4d 44 53 a1 08 70 0a 00  PDIRp..PMDS..p..
  2970: 50 4d 44 53 a1 1b a0 10 93 5c 50 4d 4f 44 0a 01  PMDS.....\PMOD..
  2980: 70 0a 02 50 4d 44 53 a1 08 70 0a 03 50 4d 44 53  p..PMDS..p..PMDS
  2990: 70 0a 00 50 50 44 5f 70 0a 01 4c 44 41 5f a0 10  p..PPD_p..LDA_..
  29a0: 93 52 4c 49 4f 0b 78 03 70 0a 00 58 50 41 5f a1  .RLIO.x.p..XPA_.
  29b0: 31 a0 10 93 52 4c 49 4f 0b 78 02 70 0a 01 58 50  1...RLIO.x.p..XP
  29c0: 41 5f a1 1e a0 10 93 52 4c 49 4f 0b bc 03 70 0a  A_.....RLIO...p.
  29d0: 02 58 50 41 5f a1 0b 5b 32 02 00 00 02 90 0b ce  .XPA_..[2.......
  29e0: 01 70 0a 01 58 50 45 5f 14 1b 5f 50 53 43 00 70  .p..XPE_.._PSC.p
  29f0: 0a 01 4c 44 4e 5f a0 08 4c 44 41 5f a4 0a 00 a1  ..LDN_..LDA_....
  2a00: 04 a4 0a 03 14 14 5f 50 53 30 00 70 0a 01 4c 44  ......_PS0.p..LD
  2a10: 4e 5f 70 0a 01 4c 44 41 5f 14 14 5f 50 53 33 00  N_p..LDA_.._PS3.
  2a20: 70 0a 01 4c 44 4e 5f 70 0a 00 4c 44 41 5f 5b 82  p..LDN_p..LDA_[.
  2a30: 45 37 4c 45 43 50 08 5f 55 49 44 0a 00 14 3c 5f  E7LECP._UID...<_
  2a40: 53 54 41 00 a0 16 93 5c 2f 03 5f 53 42 5f 4c 43  STA....\/._SB_LC
  2a50: 49 4f 5f 53 54 41 0a 00 a4 0a 00 a1 1e a0 17 93  IO_STA..........
  2a60: 5c 50 4d 4f 44 0a 03 a0 08 58 50 45 5f a4 0a 0f  \PMOD....XPE_...
  2a70: a1 04 a4 0a 0d a1 04 a4 0a 00 08 5f 48 49 44 0c  ..........._HID.
  2a80: 41 d0 04 01 14 29 5f 44 49 53 00 70 0a 00 58 50  A....)_DIS.p..XP
  2a90: 45 5f 70 0a 01 4c 44 4e 5f 70 0a 00 49 52 51 4e  E_p..LDN_p..IRQN
  2aa0: 70 0a 00 4c 44 41 5f 70 0a 01 50 50 44 5f 08 45  p..LDA_p..PPD_.E
  2ab0: 50 42 46 11 1b 0a 18 47 01 00 00 00 00 01 00 47  PBF....G.......G
  2ac0: 01 00 00 00 00 01 00 22 00 00 2a 00 00 79 00 8b  ......."..*..y..
  2ad0: 45 50 42 46 0a 02 45 43 4e 30 8b 45 50 42 46 0a  EPBF..ECN0.EPBF.
  2ae0: 04 45 43 58 30 8c 45 50 42 46 0a 07 45 43 4c 30  .ECX0.EPBF..ECL0
  2af0: 8b 45 50 42 46 0a 0a 45 43 4e 31 8b 45 50 42 46  .EPBF..ECN1.EPBF
  2b00: 0a 0c 45 43 58 31 8c 45 50 42 46 0a 0f 45 43 4c  ..ECX1.EPBF..ECL
  2b10: 31 8b 45 50 42 46 0a 11 45 43 49 51 8b 45 50 42  1.EPBF..ECIQ.EPB
  2b20: 46 0a 14 45 43 44 51 14 4e 0a 5f 43 52 53 00 a0  F..ECDQ.N._CRS..
  2b30: 0f 92 93 5c 50 4d 4f 44 0a 03 a4 45 50 42 46 70  ...\PMOD...EPBFp
  2b40: 0a 01 4c 44 4e 5f 7d 79 49 4f 48 49 0a 08 00 49  ..LDN_}yIOHI...I
  2b50: 4f 4c 57 60 70 60 45 43 4e 30 70 60 45 43 58 30  OLW`p`ECN0p`ECX0
  2b60: 72 60 0b 00 04 45 43 4e 31 72 60 0b 00 04 45 43  r`...ECN1r`...EC
  2b70: 58 31 a0 14 93 60 0b bc 03 70 0a 03 45 43 4c 30  X1...`...p..ECL0
  2b80: 70 0a 03 45 43 4c 31 a1 0f 70 0a 08 45 43 4c 30  p..ECL1..p..ECL0
  2b90: 70 0a 08 45 43 4c 31 70 49 52 51 4e 60 a0 0d 60  p..ECL1pIRQN`..`
  2ba0: 79 0a 01 49 52 51 4e 45 43 49 51 a1 08 70 0a 00  y..IRQNECIQ..p..
  2bb0: 45 43 49 51 70 44 4d 41 30 60 a0 0d 95 60 0a 04  ECIQpDMA0`...`..
  2bc0: 79 0a 01 60 45 43 44 51 a1 08 70 0a 00 45 43 44  y..`ECDQ..p..ECD
  2bd0: 51 a4 45 50 42 46 08 5f 50 52 53 11 41 09 0a 8d  Q.EPBF._PRS.A...
  2be0: 30 47 01 78 03 78 03 01 08 47 01 78 07 78 07 01  0G.x.x...G.x.x..
  2bf0: 08 22 80 00 2a 0b 00 30 47 01 78 02 78 02 01 08  ."..*..0G.x.x...
  2c00: 47 01 78 06 78 06 01 08 22 20 00 2a 0b 00 30 47  G.x.x..." .*..0G
  2c10: 01 bc 03 bc 03 01 03 47 01 bc 07 bc 07 01 03 22  .......G......."
  2c20: 80 00 2a 0b 00 30 47 01 78 03 78 03 01 08 47 01  ..*..0G.x.x...G.
  2c30: 78 07 78 07 01 08 22 20 00 2a 0b 00 30 47 01 78  x.x..." .*..0G.x
  2c40: 02 78 02 01 08 47 01 78 06 78 06 01 08 22 80 00  .x...G.x.x..."..
  2c50: 2a 0b 00 30 47 01 bc 03 bc 03 01 03 47 01 bc 07  *..0G.......G...
  2c60: bc 07 01 03 22 20 00 2a 0b 00 38 79 00 14 41 0f  ...." .*..8y..A.
  2c70: 5f 53 52 53 01 8c 68 0a 02 52 4c 49 4c 8c 68 0a  _SRS..h..RLIL.h.
  2c80: 03 52 4c 49 48 8b 68 0a 02 52 4c 49 4f 8b 68 0a  .RLIH.h..RLIO.h.
  2c90: 11 52 4c 49 51 8c 68 0a 14 52 4c 44 51 70 0a 01  .RLIQ.h..RLDQp..
  2ca0: 4c 44 4e 5f 70 0a 00 4c 44 41 5f 70 0a 07 50 4d  LDN_p..LDA_p..PM
  2cb0: 44 53 70 0a 01 50 45 52 41 70 52 4c 49 4c 49 4f  DSp..PERApRLILIO
  2cc0: 4c 57 70 52 4c 49 48 49 4f 48 49 a0 12 52 4c 49  LWpRLIHIOHI..RLI
  2cd0: 51 82 52 4c 49 51 60 70 76 60 49 52 51 4e a1 08  Q.RLIQ`pv`IRQN..
  2ce0: 70 0a 00 49 52 51 4e a0 16 7b 52 4c 44 51 0a 0f  p..IRQN..{RLDQ..
  2cf0: 00 82 52 4c 44 51 60 70 76 60 44 4d 41 30 a1 08  ..RLDQ`pv`DMA0..
  2d00: 70 0a 04 44 4d 41 30 70 0a 00 50 50 44 5f 70 0a  p..DMA0p..PPD_p.
  2d10: 01 4c 44 41 5f a0 10 93 52 4c 49 4f 0b 78 03 70  .LDA_...RLIO.x.p
  2d20: 0a 00 58 50 41 5f a1 31 a0 10 93 52 4c 49 4f 0b  ..XPA_.1...RLIO.
  2d30: 78 02 70 0a 01 58 50 41 5f a1 1e a0 10 93 52 4c  x.p..XPA_.....RL
  2d40: 49 4f 0b bc 03 70 0a 02 58 50 41 5f a1 0b 5b 32  IO...p..XPA_..[2
  2d50: 02 00 00 02 90 0b 9f 01 70 0a 01 58 50 45 5f 14  ........p..XPE_.
  2d60: 1b 5f 50 53 43 00 70 0a 01 4c 44 4e 5f a0 08 4c  ._PSC.p..LDN_..L
  2d70: 44 41 5f a4 0a 00 a1 04 a4 0a 03 14 14 5f 50 53  DA_.........._PS
  2d80: 30 00 70 0a 01 4c 44 4e 5f 70 0a 01 4c 44 41 5f  0.p..LDN_p..LDA_
  2d90: 14 14 5f 50 53 33 00 70 0a 01 4c 44 4e 5f 70 0a  .._PS3.p..LDN_p.
  2da0: 00 4c 44 41 5f 5b 82 4c 37 44 45 43 50 08 5f 55  .LDA_[.L7DECP._U
  2db0: 49 44 0a 01 14 43 04 5f 53 54 41 00 a0 1c 92 7b  ID...C._STA....{
  2dc0: 0a 08 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  2dd0: 5f 44 4c 50 43 00 a4 0a 00 a1 1e a0 17 93 5c 50  _DLPC.........\P
  2de0: 4d 4f 44 0a 03 a0 08 58 50 45 5f a4 0a 0f a1 04  MOD....XPE_.....
  2df0: a4 0a 0d a1 04 a4 0a 00 08 5f 48 49 44 0c 41 d0  ........._HID.A.
  2e00: 04 01 14 29 5f 44 49 53 00 70 0a 00 58 50 45 5f  ...)_DIS.p..XPE_
  2e10: 70 0a 01 4c 44 4e 5f 70 0a 00 49 52 51 4e 70 0a  p..LDN_p..IRQNp.
  2e20: 00 4c 44 41 5f 70 0a 01 50 50 44 5f 08 45 50 42  .LDA_p..PPD_.EPB
  2e30: 46 11 1b 0a 18 47 01 00 00 00 00 01 00 47 01 00  F....G.......G..
  2e40: 00 00 00 01 00 22 00 00 2a 00 00 79 00 8b 45 50  ....."..*..y..EP
  2e50: 42 46 0a 02 45 43 4e 30 8b 45 50 42 46 0a 04 45  BF..ECN0.EPBF..E
  2e60: 43 58 30 8c 45 50 42 46 0a 07 45 43 4c 30 8b 45  CX0.EPBF..ECL0.E
  2e70: 50 42 46 0a 0a 45 43 4e 31 8b 45 50 42 46 0a 0c  PBF..ECN1.EPBF..
  2e80: 45 43 58 31 8c 45 50 42 46 0a 0f 45 43 4c 31 8b  ECX1.EPBF..ECL1.
  2e90: 45 50 42 46 0a 11 45 43 49 51 8b 45 50 42 46 0a  EPBF..ECIQ.EPBF.
  2ea0: 14 45 43 44 51 14 4e 0a 5f 43 52 53 00 a0 0f 92  .ECDQ.N._CRS....
  2eb0: 93 5c 50 4d 4f 44 0a 03 a4 45 50 42 46 70 0a 01  .\PMOD...EPBFp..
  2ec0: 4c 44 4e 5f 7d 79 49 4f 48 49 0a 08 00 49 4f 4c  LDN_}yIOHI...IOL
  2ed0: 57 60 70 60 45 43 4e 30 70 60 45 43 58 30 72 60  W`p`ECN0p`ECX0r`
  2ee0: 0b 00 04 45 43 4e 31 72 60 0b 00 04 45 43 58 31  ...ECN1r`...ECX1
  2ef0: a0 14 93 60 0b bc 03 70 0a 03 45 43 4c 30 70 0a  ...`...p..ECL0p.
  2f00: 03 45 43 4c 31 a1 0f 70 0a 08 45 43 4c 30 70 0a  .ECL1..p..ECL0p.
  2f10: 08 45 43 4c 31 70 49 52 51 4e 60 a0 0d 60 79 0a  .ECL1pIRQN`..`y.
  2f20: 01 49 52 51 4e 45 43 49 51 a1 08 70 0a 00 45 43  .IRQNECIQ..p..EC
  2f30: 49 51 70 44 4d 41 30 60 a0 0d 95 60 0a 04 79 0a  IQpDMA0`...`..y.
  2f40: 01 60 45 43 44 51 a1 08 70 0a 00 45 43 44 51 a4  .`ECDQ..p..ECDQ.
  2f50: 45 50 42 46 08 5f 50 52 53 11 41 09 0a 8d 30 47  EPBF._PRS.A...0G
  2f60: 01 78 03 78 03 01 08 47 01 78 07 78 07 01 08 22  .x.x...G.x.x..."
  2f70: 80 00 2a 0b 00 30 47 01 78 02 78 02 01 08 47 01  ..*..0G.x.x...G.
  2f80: 78 06 78 06 01 08 22 20 00 2a 0b 00 30 47 01 bc  x.x..." .*..0G..
  2f90: 03 bc 03 01 03 47 01 bc 07 bc 07 01 03 22 80 00  .....G......."..
  2fa0: 2a 0b 00 30 47 01 78 03 78 03 01 08 47 01 78 07  *..0G.x.x...G.x.
  2fb0: 78 07 01 08 22 20 00 2a 0b 00 30 47 01 78 02 78  x..." .*..0G.x.x
  2fc0: 02 01 08 47 01 78 06 78 06 01 08 22 80 00 2a 0b  ...G.x.x..."..*.
  2fd0: 00 30 47 01 bc 03 bc 03 01 03 47 01 bc 07 bc 07  .0G.......G.....
  2fe0: 01 03 22 20 00 2a 0b 00 38 79 00 14 41 0f 5f 53  .." .*..8y..A._S
  2ff0: 52 53 01 8c 68 0a 02 52 4c 49 4c 8c 68 0a 03 52  RS..h..RLIL.h..R
  3000: 4c 49 48 8b 68 0a 02 52 4c 49 4f 8b 68 0a 11 52  LIH.h..RLIO.h..R
  3010: 4c 49 51 8c 68 0a 14 52 4c 44 51 70 0a 01 4c 44  LIQ.h..RLDQp..LD
  3020: 4e 5f 70 0a 00 4c 44 41 5f 70 0a 07 50 4d 44 53  N_p..LDA_p..PMDS
  3030: 70 0a 01 50 45 52 41 70 52 4c 49 4c 49 4f 4c 57  p..PERApRLILIOLW
  3040: 70 52 4c 49 48 49 4f 48 49 a0 12 52 4c 49 51 82  pRLIHIOHI..RLIQ.
  3050: 52 4c 49 51 60 70 76 60 49 52 51 4e a1 08 70 0a  RLIQ`pv`IRQN..p.
  3060: 00 49 52 51 4e a0 16 7b 52 4c 44 51 0a 0f 00 82  .IRQN..{RLDQ....
  3070: 52 4c 44 51 60 70 76 60 44 4d 41 30 a1 08 70 0a  RLDQ`pv`DMA0..p.
  3080: 04 44 4d 41 30 70 0a 00 50 50 44 5f 70 0a 01 4c  .DMA0p..PPD_p..L
  3090: 44 41 5f a0 10 93 52 4c 49 4f 0b 78 03 70 0a 00  DA_...RLIO.x.p..
  30a0: 58 50 41 5f a1 31 a0 10 93 52 4c 49 4f 0b 78 02  XPA_.1...RLIO.x.
  30b0: 70 0a 01 58 50 41 5f a1 1e a0 10 93 52 4c 49 4f  p..XPA_.....RLIO
  30c0: 0b bc 03 70 0a 02 58 50 41 5f a1 0b 5b 32 02 00  ...p..XPA_..[2..
  30d0: 00 02 90 0b 9f 01 70 0a 01 58 50 45 5f 14 1b 5f  ......p..XPE_.._
  30e0: 50 53 43 00 70 0a 01 4c 44 4e 5f a0 08 4c 44 41  PSC.p..LDN_..LDA
  30f0: 5f a4 0a 00 a1 04 a4 0a 03 14 14 5f 50 53 30 00  _.........._PS0.
  3100: 70 0a 01 4c 44 4e 5f 70 0a 01 4c 44 41 5f 14 14  p..LDN_p..LDA_..
  3110: 5f 50 53 33 00 70 0a 01 4c 44 4e 5f 70 0a 00 4c  _PS3.p..LDN_p..L
  3120: 44 41 5f 10 23 5c 2f 04 5f 53 42 5f 50 43 49 30  DA_.#\/._SB_PCI0
  3130: 4c 50 43 5f 4c 55 52 54 08 5f 45 4a 44 0d 5f 53  LPC_LURT._EJD._S
  3140: 42 2e 4c 43 49 4f 00 10 23 5c 2f 04 5f 53 42 5f  B.LCIO..#\/._SB_
  3150: 50 43 49 30 4c 50 43 5f 44 55 52 54 08 5f 45 4a  PCI0LPC_DURT._EJ
  3160: 44 0d 5f 53 42 2e 47 44 43 4b 00 10 23 5c 2f 04  D._SB.GDCK..#\/.
  3170: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 4c 4c 50 54  _SB_PCI0LPC_LLPT
  3180: 08 5f 45 4a 44 0d 5f 53 42 2e 4c 43 49 4f 00 10  ._EJD._SB.LCIO..
  3190: 23 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f  #\/._SB_PCI0LPC_
  31a0: 44 4c 50 54 08 5f 45 4a 44 0d 5f 53 42 2e 47 44  DLPT._EJD._SB.GD
  31b0: 43 4b 00 10 23 5c 2f 04 5f 53 42 5f 50 43 49 30  CK..#\/._SB_PCI0
  31c0: 4c 50 43 5f 4c 45 43 50 08 5f 45 4a 44 0d 5f 53  LPC_LECP._EJD._S
  31d0: 42 2e 4c 43 49 4f 00 10 23 5c 2f 04 5f 53 42 5f  B.LCIO..#\/._SB_
  31e0: 50 43 49 30 4c 50 43 5f 44 45 43 50 08 5f 45 4a  PCI0LPC_DECP._EJ
  31f0: 44 0d 5f 53 42 2e 47 44 43 4b 00 5b 82 48 2e 46  D._SB.GDCK.[.H.F
  3200: 49 52 5f 08 5f 48 49 44 0c 24 4d 00 71 08 5f 43  IR_._HID.$M.q._C
  3210: 49 44 0c 41 d0 05 11 14 1d 5f 53 54 41 00 a0 08  ID.A....._STA...
  3220: 48 44 49 52 a4 0a 00 a0 08 58 55 32 45 a4 0a 0f  HDIR.....XU2E...
  3230: a1 04 a4 0a 0d 14 29 5f 44 49 53 00 70 0a 00 58  ......)_DIS.p..X
  3240: 55 32 45 70 0a 02 4c 44 4e 53 70 0a 00 52 51 4e  U2Ep..LDNSp..RQN
  3250: 53 70 0a 00 4c 44 41 53 70 0a 01 53 50 32 53 08  Sp..LDASp..SP2S.
  3260: 55 32 42 46 11 13 0a 10 47 01 00 00 00 00 01 08  U2BF....G.......
  3270: 22 00 00 2a 00 00 79 00 8b 55 32 42 46 0a 02 49  "..*..y..U2BF..I
  3280: 52 4d 4e 8b 55 32 42 46 0a 04 49 52 4d 58 8b 55  RMN.U2BF..IRMX.U
  3290: 32 42 46 0a 09 49 52 49 51 8c 55 32 42 46 0a 0c  2BF..IRIQ.U2BF..
  32a0: 49 52 44 51 14 47 06 5f 43 52 53 00 70 0a 02 4c  IRDQ.G._CRS.p..L
  32b0: 44 4e 53 7d 79 4f 48 49 53 0a 08 00 4f 4c 57 53  DNS}yOHIS...OLWS
  32c0: 60 70 60 49 52 4d 4e 70 60 49 52 4d 58 70 52 51  `p`IRMNp`IRMXpRQ
  32d0: 4e 53 60 a0 0d 60 79 0a 01 52 51 4e 53 49 52 49  NS`..`y..RQNSIRI
  32e0: 51 a1 08 70 0a 00 49 52 49 51 70 4d 41 30 53 60  Q..p..IRIQpMA0S`
  32f0: a0 0d 95 60 0a 04 79 0a 01 60 49 52 44 51 a1 08  ...`..y..`IRDQ..
  3300: 70 0a 00 49 52 44 51 a4 55 32 42 46 08 5f 50 52  p..IRDQ.U2BF._PR
  3310: 53 11 47 08 0a 83 31 00 47 01 f8 02 f8 02 01 08  S.G...1.G.......
  3320: 22 08 00 2a 0b 00 31 01 47 01 f8 03 f8 03 01 08  "..*..1.G.......
  3330: 22 10 00 2a 0b 00 31 01 47 01 e8 02 e8 02 01 08  "..*..1.G.......
  3340: 22 08 00 2a 0b 00 31 01 47 01 e8 03 e8 03 01 08  "..*..1.G.......
  3350: 22 10 00 2a 0b 00 31 02 47 01 f8 02 f8 02 01 08  "..*..1.G.......
  3360: 22 b0 00 2a 0b 00 31 02 47 01 f8 03 f8 03 01 08  "..*..1.G.......
  3370: 22 a8 00 2a 0b 00 31 02 47 01 e8 02 e8 02 01 08  "..*..1.G.......
  3380: 22 b0 00 2a 0b 00 31 02 47 01 e8 03 e8 03 01 08  "..*..1.G.......
  3390: 22 a8 00 2a 0b 00 38 79 00 14 45 10 5f 53 52 53  "..*..8y..E._SRS
  33a0: 01 8c 68 0a 02 52 49 49 4c 8c 68 0a 03 52 49 49  ..h..RIIL.h..RII
  33b0: 48 8b 68 0a 02 52 49 49 4f 8b 68 0a 09 52 49 49  H.h..RIIO.h..RII
  33c0: 51 8c 68 0a 0c 52 49 44 51 70 0a 02 4c 44 4e 53  Q.h..RIDQp..LDNS
  33d0: 70 0a 00 4c 44 41 53 70 52 49 49 4c 4f 4c 57 53  p..LDASpRIILOLWS
  33e0: 70 52 49 49 48 4f 48 49 53 a0 12 52 49 49 51 82  pRIIHOHIS..RIIQ.
  33f0: 52 49 49 51 60 70 76 60 52 51 4e 53 a1 08 70 0a  RIIQ`pv`RQNS..p.
  3400: 00 52 51 4e 53 a0 16 7b 52 49 44 51 0a 0f 00 82  .RQNS..{RIDQ....
  3410: 52 49 44 51 60 70 76 60 4d 41 30 53 a1 08 70 0a  RIDQ`pv`MA0S..p.
  3420: 04 4d 41 30 53 70 0a 04 4d 41 31 53 70 0a 01 53  .MA0Sp..MA1Sp..S
  3430: 45 53 53 70 0a 00 53 50 32 53 70 0a 01 4c 44 41  ESSp..SP2Sp..LDA
  3440: 53 a0 10 93 52 49 49 4f 0b f8 03 70 0a 00 58 55  S...RIIO...p..XU
  3450: 32 41 a1 45 04 a0 10 93 52 49 49 4f 0b f8 02 70  2A.E....RIIO...p
  3460: 0a 01 58 55 32 41 a1 31 a0 10 93 52 49 49 4f 0b  ..XU2A.1...RIIO.
  3470: e8 03 70 0a 07 58 55 32 41 a1 1e a0 10 93 52 49  ..p..XU2A.....RI
  3480: 49 4f 0b e8 02 70 0a 05 58 55 32 41 a1 0b 5b 32  IO...p..XU2A..[2
  3490: 02 00 00 02 90 0b a4 01 70 0a 01 58 55 32 45 14  ........p..XU2E.
  34a0: 1b 5f 50 53 43 00 70 0a 02 4c 44 4e 53 a0 08 4c  ._PSC.p..LDNS..L
  34b0: 44 41 53 a4 0a 00 a1 04 a4 0a 03 14 14 5f 50 53  DAS.........._PS
  34c0: 30 00 70 0a 02 4c 44 4e 53 70 0a 01 4c 44 41 53  0.p..LDNSp..LDAS
  34d0: 14 14 5f 50 53 33 00 70 0a 02 4c 44 4e 53 70 0a  .._PS3.p..LDNSp.
  34e0: 00 4c 44 41 53 10 43 0e 5c 2f 03 5f 53 42 5f 50  .LDAS.C.\/._SB_P
  34f0: 43 49 30 4c 50 43 5f 14 41 0d 4c 43 4f 4e 01 a0  CI0LPC_.A.LCON..
  3500: 49 0c 45 50 57 47 a0 44 0a 68 70 0a 01 44 4c 50  I.EPWG.D.hp..DLP
  3510: 44 70 0a 07 44 4c 50 43 a2 0e 92 7b 0a 08 44 4c  Dp..DLPC...{..DL
  3520: 50 43 00 5b 22 0a 01 70 0a 01 44 52 53 54 a0 4c  PC.["..p..DRST.L
  3530: 07 92 93 53 49 4f 44 0a ff 7d 53 43 46 39 0a a0  ...SIOD..}SCF9..
  3540: 53 43 46 39 a2 0e 92 7b 0a 10 53 43 46 39 00 5b  SCF9...{..SCF9.[
  3550: 22 0a 01 7d 53 43 46 32 0a eb 53 43 46 32 70 0a  "..}SCF2..SCF2p.
  3560: 07 4c 44 4e 5f 7b 0b 20 16 0a ff 60 70 60 49 4f  .LDN_{. ...`p`IO
  3570: 4c 57 7a 0b 20 16 0a 08 60 7b 60 0a ff 49 4f 48  LWz. ...`{`..IOH
  3580: 49 70 0a 01 4c 44 41 5f 70 0a 01 47 50 50 53 70  Ip..LDA_p..GPPSp
  3590: 0a 03 47 50 50 43 70 0a 02 47 50 50 53 70 0a 03  ..GPPCp..GPPSp..
  35a0: 47 50 50 43 70 0a 00 44 55 53 42 a1 1d 70 0a 01  GPPCp..DUSB..p..
  35b0: 44 55 53 42 70 0a 00 44 52 53 54 70 0a 00 44 4c  DUSBp..DRSTp..DL
  35c0: 50 44 70 0a 00 44 4c 50 43 5b 82 45 04 54 50 4d  PDp..DLPC[.E.TPM
  35d0: 5f 08 5f 48 49 44 0c 06 8d 12 00 14 1d 5f 53 54  _._HID......._ST
  35e0: 41 00 a0 0e 7b 5c 54 50 4d 50 0a 01 00 70 0a 0f  A...{\TPMP...p..
  35f0: 60 a1 05 70 0a 00 60 a4 60 08 5f 43 52 53 11 11  `..p..`.`._CRS..
  3600: 0a 0e 86 09 00 01 00 00 d4 fe 00 10 00 00 79 00  ..............y.
  3610: 5b 80 54 53 45 53 00 0c 00 00 e8 ff 0b 00 02 5b  [.TSES.........[
  3620: 81 46 08 54 53 45 53 01 00 40 06 54 53 43 4d 08  .F.TSES..@.TSCM.
  3630: 00 40 28 54 43 54 30 08 54 43 54 31 08 54 43 54  .@(TCT0.TCT1.TCT
  3640: 32 08 00 40 05 54 4d 54 30 08 00 48 04 54 4d 54  2..@.TMT0..H.TMT
  3650: 31 08 00 48 04 54 4d 54 32 08 00 48 7a 54 4c 44  1..H.TMT2..HzTLD
  3660: 30 08 54 4c 44 31 08 54 4c 44 32 08 54 4c 44 4c  0.TLD1.TLD2.TLDL
  3670: 18 54 4c 44 42 18 54 4c 44 53 10 54 53 42 30 08  .TLDB.TLDS.TSB0.
  3680: 54 53 42 31 08 54 53 42 32 08 54 53 42 4c 08 54  TSB1.TSB2.TSBL.T
  3690: 53 42 42 48 04 54 53 42 46 10 54 53 42 43 10 00  SBBH.TSBF.TSBC..
  36a0: 40 1a 54 53 49 4d 08 5b 81 0f 54 53 45 53 01 00  @.TSIM.[..TSES..
  36b0: 48 2e 54 43 54 41 48 11 5b 81 0f 54 53 45 53 01  H.TCTAH.[..TSES.
  36c0: 00 40 ba 54 43 54 4c 48 05 5b 81 0f 54 53 45 53  .@.TCTLH.[..TSES
  36d0: 01 00 48 bf 54 43 54 42 48 08 14 38 54 43 53 5a  ..H.TCTBH..8TCSZ
  36e0: 02 a0 31 92 93 54 53 43 4d 0a 12 a0 0b 93 0a 01  ..1..TSCM.......
  36f0: 68 70 69 54 43 5a 31 a1 1b a0 0b 93 0a 02 68 70  hpiTCZ1.......hp
  3700: 69 54 43 5a 32 a1 0d a0 0b 93 0a 03 68 70 69 54  iTCZ2.......hpiT
  3710: 43 5a 33 14 49 0c 54 43 53 54 02 a0 41 0c 92 93  CZ3.I.TCST..A...
  3720: 54 53 43 4d 0a 12 70 0a 00 60 a0 1e 93 0a 01 68  TSCM..p..`.....h
  3730: a0 18 94 69 54 4d 54 30 70 0a 04 54 53 49 4d 70  ...iTMT0p..TSIMp
  3740: 69 54 4d 54 30 70 0a 01 60 a1 42 04 a0 1e 93 0a  iTMT0p..`.B.....
  3750: 02 68 a0 18 94 69 54 4d 54 31 70 0a 04 54 53 49  .h...iTMT1p..TSI
  3760: 4d 70 69 54 4d 54 31 70 0a 01 60 a1 20 a0 1e 93  MpiTMT1p..`. ...
  3770: 0a 03 68 a0 18 94 69 54 4d 54 32 70 0a 04 54 53  ..h...iTMT2p..TS
  3780: 49 4d 70 69 54 4d 54 32 70 0a 01 60 a0 40 05 60  IMpiTMT2p..`.@.`
  3790: 70 0a 00 54 43 54 32 08 54 43 54 43 11 03 0a 23  p..TCT2.TCTC...#
  37a0: 70 54 43 54 41 54 43 54 43 70 0a 22 63 70 0a 00  pTCTATCTCp."cp..
  37b0: 61 a2 12 63 70 83 88 54 43 54 43 63 00 62 72 61  a..cp..TCTCc.bra
  37c0: 62 61 76 63 70 80 61 00 62 75 62 7b 62 0a ff 61  bavcp.a.bub{b..a
  37d0: 70 61 54 43 54 32 70 0a fe 54 53 49 4d 14 49 08  paTCT2p..TSIM.I.
  37e0: 54 43 42 53 04 a0 41 08 92 93 54 53 43 4d 0a 12  TCBS..A...TSCM..
  37f0: a0 46 07 93 7b 68 0a 07 00 0a 00 70 0a 12 54 53  .F..{h.....p..TS
  3800: 49 4d 70 68 54 53 42 4c 70 69 54 53 42 42 70 6a  IMphTSBLpiTSBBpj
  3810: 54 53 42 46 70 6b 54 53 42 43 70 0a 00 54 53 42  TSBFpkTSBCp..TSB
  3820: 32 08 54 43 54 44 11 03 0a 23 70 54 43 54 42 54  2.TCTD...#pTCTBT
  3830: 43 54 44 70 0a 10 60 70 0a 00 61 a2 12 60 70 83  CTDp..`p..a..`p.
  3840: 88 54 43 54 44 60 00 62 72 61 62 61 76 60 70 80  .TCTD`.brabav`p.
  3850: 61 00 62 75 62 7b 62 0a ff 61 70 61 54 53 42 32  a.bub{b..apaTSB2
  3860: 70 0a fe 54 53 49 4d 14 40 07 54 53 43 4c 02 a0  p..TSIM.@.TSCL..
  3870: 48 06 92 93 54 53 43 4d 0a 12 70 0a 15 54 53 49  H...TSCM..p..TSI
  3880: 4d 72 54 4c 44 53 69 54 4c 44 53 70 0a 00 54 4c  MrTLDSiTLDSp..TL
  3890: 44 32 08 54 4c 44 44 11 03 0a 0b 70 54 43 54 4c  D2.TLDD....pTCTL
  38a0: 54 4c 44 44 70 0a 0a 60 70 0a 00 61 a2 12 60 70  TLDDp..`p..a..`p
  38b0: 83 88 54 4c 44 44 60 00 62 72 61 62 61 76 60 70  ..TLDD`.brabav`p
  38c0: 80 61 00 62 75 62 7b 62 0a ff 61 70 61 54 4c 44  .a.bub{b..apaTLD
  38d0: 32 70 0a fe 54 53 49 4d 5b 82 8d f9 01 45 43 5f  2p..TSIM[....EC_
  38e0: 5f 08 5f 48 49 44 0c 41 d0 0c 09 08 5f 55 49 44  _._HID.A...._UID
  38f0: 0a 00 08 5f 47 50 45 0a 1c 14 13 5f 52 45 47 02  ..._GPE...._REG.
  3900: a0 0c 93 68 0a 03 70 69 5c 48 38 44 52 5b 80 45  ...h..pi\H8DR[.E
  3910: 43 4f 52 03 0a 00 0b 00 01 5b 81 4a 2b 45 43 4f  COR......[.J+ECO
  3920: 52 01 48 44 42 4d 01 00 01 00 01 48 46 4e 45 01  R.HDBM.....HFNE.
  3930: 00 01 00 01 48 4c 44 4d 01 00 01 00 01 42 54 43  ....HLDM.....BTC
  3940: 4d 01 00 01 00 01 00 01 48 42 50 52 01 42 54 50  M.......HBPR.BTP
  3950: 43 01 00 01 48 44 55 45 01 00 07 00 01 48 45 54  C...HDUE.....HET
  3960: 45 01 00 0e 48 53 50 41 01 00 07 48 53 55 4e 08  E...HSPA...HSUN.
  3970: 48 53 52 50 08 00 20 48 4c 43 4c 08 00 08 48 46  HSRP.. HLCL...HF
  3980: 4e 53 02 00 06 00 04 48 41 41 41 03 00 01 48 41  NS.....HAAA...HA
  3990: 4d 30 08 48 41 4d 31 08 48 41 4d 32 08 48 41 4d  M0.HAM1.HAM2.HAM
  39a0: 33 08 48 41 4d 34 08 48 41 4d 35 08 48 41 4d 36  3.HAM4.HAM5.HAM6
  39b0: 08 48 41 4d 37 08 48 41 4d 38 08 48 41 4d 39 08  .HAM7.HAM8.HAM9.
  39c0: 48 41 4d 41 08 48 41 4d 42 08 48 41 4d 43 08 48  HAMA.HAMB.HAMC.H
  39d0: 41 4d 44 08 48 41 4d 45 08 48 41 4d 46 08 48 54  AMD.HAME.HAMF.HT
  39e0: 30 30 01 48 54 30 31 01 48 54 30 32 01 48 54 30  00.HT01.HT02.HT0
  39f0: 33 01 48 54 31 30 01 48 54 31 31 01 48 54 31 32  3.HT10.HT11.HT12
  3a00: 01 48 54 31 33 01 00 10 48 41 4e 54 08 00 10 00  .HT13...HANT....
  3a10: 01 00 01 48 41 4e 41 02 00 01 00 01 00 1a 48 41  ...HANA.......HA
  3a20: 54 52 08 48 54 30 48 08 48 54 30 4c 08 48 54 31  TR.HT0H.HT0L.HT1
  3a30: 48 08 48 54 31 4c 08 48 46 53 50 08 00 06 48 4d  H.HT1L.HFSP...HM
  3a40: 55 54 01 00 01 48 42 52 56 08 48 57 50 4d 01 48  UT...HBRV.HWPM.H
  3a50: 57 4c 42 01 48 57 4c 4f 01 48 57 44 4b 01 48 57  WLB.HWLO.HWDK.HW
  3a60: 46 4e 01 48 57 42 54 01 48 57 52 49 01 48 57 42  FN.HWBT.HWRI.HWB
  3a70: 55 01 48 57 4c 55 01 00 07 00 07 48 50 4c 4f 01  U.HWLU.....HPLO.
  3a80: 00 08 00 10 48 42 30 53 07 48 42 30 41 01 48 42  ....HB0S.HB0A.HB
  3a90: 31 53 07 48 42 31 41 01 48 43 4d 55 01 00 02 4f  1S.HB1A.HCMU...O
  3aa0: 56 52 51 01 44 43 42 44 01 44 43 57 4c 01 44 43  VRQ.DCBD.DCWL.DC
  3ab0: 57 57 01 48 42 31 49 01 00 01 4b 42 4c 54 01 42  WW.HB1I...KBLT.B
  3ac0: 54 50 57 01 42 54 44 54 01 48 55 42 53 01 42 44  TPW.BTDT.HUBS.BD
  3ad0: 50 57 01 42 44 44 54 01 48 55 42 42 01 00 40 05  PW.BDDT.HUBB..@.
  3ae0: 00 01 42 54 57 4b 01 48 50 4c 44 01 00 01 48 50  ..BTWK.HPLD...HP
  3af0: 41 43 01 42 54 53 54 01 00 02 48 50 42 55 01 00  AC.BTST...HPBU..
  3b00: 01 48 42 49 44 04 48 42 43 53 01 48 50 4e 46 01  .HBID.HBCS.HPNF.
  3b10: 00 01 47 53 54 53 01 00 02 48 4c 42 55 01 42 44  ..GSTS...HLBU.BD
  3b20: 53 54 01 48 43 42 4c 01 00 29 48 57 41 4b 10 48  ST.HCBL..)HWAK.H
  3b30: 4d 50 52 08 48 4d 53 54 05 00 02 48 4d 44 4e 01  MPR.HMST...HMDN.
  3b40: 48 4d 41 44 08 48 4d 43 4d 08 00 40 10 48 4d 42  HMAD.HMCM..@.HMB
  3b50: 43 08 00 18 54 4d 50 30 08 54 4d 50 31 08 54 4d  C...TMP0.TMP1.TM
  3b60: 50 32 08 54 4d 50 33 08 54 4d 50 34 08 54 4d 50  P2.TMP3.TMP4.TMP
  3b70: 35 08 54 4d 50 36 08 54 4d 50 37 08 00 08 48 49  5.TMP6.TMP7...HI
  3b80: 49 44 08 00 08 48 46 4e 49 08 00 20 48 44 45 43  ID...HFNI.. HDEC
  3b90: 08 48 44 45 4f 08 00 18 48 44 41 41 03 48 44 41  .HDEO...HDAA.HDA
  3ba0: 42 03 48 44 41 43 02 00 40 11 48 44 45 4e 20 48  B.HDAC..@.HDEN H
  3bb0: 44 45 50 20 48 44 45 4d 08 48 44 45 53 08 00 40  DEP HDEM.HDES..@
  3bc0: 07 41 54 4d 58 08 48 57 41 54 08 00 48 11 00 04  .ATMX.HWAT..H...
  3bd0: 48 44 44 44 01 14 41 04 5f 49 4e 49 00 a0 0d 5c  HDDD..A._INI...\
  3be0: 48 38 44 52 70 0a 00 48 53 50 41 a1 0c 5c 4d 42  H8DRp..HSPA..\MB
  3bf0: 45 43 0a 05 0a fe 0a 00 42 49 4e 49 5c 2f 06 5f  EC......BINI\/._
  3c00: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  3c10: 4b 45 59 57 47 49 4e 08 5f 43 52 53 11 15 0a 12  KEYWGIN._CRS....
  3c20: 47 01 62 00 62 00 01 01 47 01 66 00 66 00 01 01  G.b.b...G.f.f...
  3c30: 79 00 14 21 4c 45 44 5f 02 7d 68 69 60 a0 0c 5c  y..!LED_.}hi`..\
  3c40: 48 38 44 52 70 60 48 4c 43 4c a1 09 5c 57 42 45  H8DRp`HLCL..\WBE
  3c50: 43 0a 0c 60 08 42 41 4f 4e 0a 00 08 57 42 4f 4e  C..`.BAON...WBON
  3c60: 0a 00 14 45 18 42 45 45 50 01 a0 0c 93 68 0a 05  ...E.BEEP....h..
  3c70: 70 0a 00 57 42 4f 4e 70 57 42 4f 4e 62 a0 4f 04  p..WBONpWBONb.O.
  3c80: 42 41 4f 4e a0 24 93 68 0a 00 70 0a 00 42 41 4f  BAON.$.h..p..BAO
  3c90: 4e a0 0d 57 42 4f 4e 70 0a 03 60 70 0a 08 61 a1  N..WBONp..`p..a.
  3ca0: 09 70 0a 00 60 70 0a 00 61 a1 23 70 0a ff 60 70  .p..`p..a.#p..`p
  3cb0: 0a ff 61 a0 0c 93 68 0a 11 70 0a 00 57 42 4f 4e  ..a...h..p..WBON
  3cc0: a0 0c 93 68 0a 10 70 0a 01 57 42 4f 4e a1 47 04  ...h..p..WBON.G.
  3cd0: 70 68 60 70 0a ff 61 a0 13 93 68 0a 0f 70 68 60  ph`p..a...h..ph`
  3ce0: 70 0a 08 61 70 0a 01 42 41 4f 4e a0 14 93 68 0a  p..ap..BAON...h.
  3cf0: 11 70 0a 00 60 70 0a 00 61 70 0a 00 57 42 4f 4e  .p..`p..ap..WBON
  3d00: a0 14 93 68 0a 10 70 0a 03 60 70 0a 08 61 70 0a  ...h..p..`p..ap.
  3d10: 01 57 42 4f 4e a0 29 93 68 0a 03 70 0a 00 57 42  .WBON.).h..p..WB
  3d20: 4f 4e a0 1c 62 70 0a 07 60 a0 15 93 5c 53 50 53  ON..bp..`...\SPS
  3d30: 5f 0a 04 70 0a 00 62 70 0a ff 60 70 0a ff 61 a0  _..p..bp..`p..a.
  3d40: 14 93 68 0a 07 a0 0e 62 70 0a 00 62 70 0a ff 60  ..h....bp..bp..`
  3d50: 70 0a ff 61 a0 43 04 90 5c 48 38 44 52 92 5c 57  p..a.C..\H8DR.\W
  3d60: 39 38 46 a0 1a 90 62 92 57 42 4f 4e 70 0a 00 48  98F...b.WBONp..H
  3d70: 53 52 50 70 0a 00 48 53 55 4e 5b 22 0a 64 a0 0c  SRPp..HSUN[".d..
  3d80: 92 93 61 0a ff 70 61 48 53 52 50 a0 0c 92 93 60  ..a..paHSRP....`
  3d90: 0a ff 70 60 48 53 55 4e a1 3e a0 1e 90 62 92 57  ..p`HSUN.>...b.W
  3da0: 42 4f 4e 5c 57 42 45 43 0a 07 0a 00 5c 57 42 45  BON\WBEC....\WBE
  3db0: 43 0a 06 0a 00 5b 22 0a 64 a0 0e 92 93 61 0a ff  C....[".d....a..
  3dc0: 5c 57 42 45 43 0a 07 61 a0 0e 92 93 60 0a ff 5c  \WBEC..a....`..\
  3dd0: 57 42 45 43 0a 06 60 a0 05 93 68 0a 03 a0 0a 93  WBEC..`...h.....
  3de0: 68 0a 07 5b 22 0b f4 01 14 43 09 45 56 4e 54 01  h..["....C.EVNT.
  3df0: a0 37 5c 48 38 44 52 a0 18 68 7d 48 41 4d 37 0a  .7\H8DR..h}HAM7.
  3e00: 01 48 41 4d 37 7d 48 41 4d 35 0a 04 48 41 4d 35  .HAM7}HAM5..HAM5
  3e10: a1 17 7b 48 41 4d 37 0a fe 48 41 4d 37 7b 48 41  ..{HAM7..HAM7{HA
  3e20: 4d 35 0a fb 48 41 4d 35 a1 43 05 a0 28 68 5c 4d  M5..HAM5.C..(h\M
  3e30: 42 45 43 0a 17 0a ff 0a 01 5c 4d 42 45 43 0a 15  BEC......\MBEC..
  3e40: 0a ff 0a 04 a0 0f 5c 57 39 38 46 5c 57 42 45 43  ......\W98F\WBEC
  3e50: 0a 18 0a ff a1 27 5c 4d 42 45 43 0a 17 0a fe 0a  .....'\MBEC.....
  3e60: 00 5c 4d 42 45 43 0a 15 0a fb 0a 00 a0 0f 5c 57  .\MBEC........\W
  3e70: 39 38 46 5c 57 42 45 43 0a 18 0a 00 14 4b 07 50  98F\WBEC.....K.P
  3e80: 4e 53 54 01 a0 3d 90 68 42 53 54 41 0a 02 a0 1b  NST..=.hBSTA....
  3e90: 90 5c 48 38 44 52 92 5c 57 39 38 46 70 0a 01 48  .\H8DR.\W98Fp..H
  3ea0: 42 50 52 70 0a 01 48 55 42 42 a1 17 5c 4d 42 45  BPRp..HUBB..\MBE
  3eb0: 43 0a 01 0a ff 0a 20 5c 4d 42 45 43 0a 3b 0a ff  C..... \MBEC.;..
  3ec0: 0a 80 a1 35 a0 1b 90 5c 48 38 44 52 92 5c 57 39  ...5...\H8DR.\W9
  3ed0: 38 46 70 0a 00 48 42 50 52 70 0a 00 48 55 42 42  8Fp..HBPRp..HUBB
  3ee0: a1 17 5c 4d 42 45 43 0a 01 0a df 0a 00 5c 4d 42  ..\MBEC......\MB
  3ef0: 45 43 0a 3b 0a 7f 0a 00 5b 84 49 07 50 55 42 53  EC.;....[.I.PUBS
  3f00: 03 00 00 14 2b 5f 53 54 41 00 a0 0c 5c 48 38 44  ....+_STA...\H8D
  3f10: 52 70 48 55 42 53 60 a1 0c 7b 5c 52 42 45 43 0a  RpHUBS`..{\RBEC.
  3f20: 3b 0a 10 60 a0 05 60 a4 0a 01 a1 04 a4 0a 00 14  ;..`..`.........
  3f30: 21 5f 4f 4e 5f 00 a0 0d 5c 48 38 44 52 70 0a 01  !_ON_...\H8DRp..
  3f40: 48 55 42 53 a1 0c 5c 4d 42 45 43 0a 3b 0a ff 0a  HUBS..\MBEC.;...
  3f50: 10 14 21 5f 4f 46 46 00 a0 0d 5c 48 38 44 52 70  ..!_OFF...\H8DRp
  3f60: 0a 00 48 55 42 53 a1 0c 5c 4d 42 45 43 0a 3b 0a  ..HUBS..\MBEC.;.
  3f70: ef 0a 00 14 4d 0e 4c 50 4d 44 00 70 0a 00 60 a0  ....M.LPMD.p..`.
  3f80: 42 06 5c 48 38 44 52 a0 4a 05 48 50 4c 4f a0 4a  B.\H8DR.J.HPLO.J
  3f90: 04 48 50 41 43 a0 43 04 95 48 57 41 54 0a 5a a0  .HPAC.C..HWAT.Z.
  3fa0: 16 91 92 48 42 30 41 95 7b 48 42 30 53 0a 0f 00  ...HB0A.{HB0S...
  3fb0: 0a 03 70 0a 01 61 a0 16 91 92 48 42 31 41 95 7b  ..p..a....HB1A.{
  3fc0: 48 42 31 53 0a 0f 00 0a 03 70 0a 01 62 a0 0b 90  HB1S.....p..b...
  3fd0: 61 62 70 5c 4c 50 53 54 60 a1 08 70 5c 4c 50 53  abp\LPST`..p\LPS
  3fe0: 54 60 a1 4c 07 a0 49 07 7b 5c 52 42 45 43 0a 34  T`.L..I.{\RBEC.4
  3ff0: 0a 80 00 a0 42 06 7b 5c 52 42 45 43 0a 46 0a 10  ....B.{\RBEC.F..
  4000: 00 a0 44 05 95 5c 52 42 45 43 0a c9 0a 5a 70 5c  ..D..\RBEC...Zp\
  4010: 52 42 45 43 0a 38 63 a0 14 91 92 7b 63 0a 80 00  RBEC.8c....{c...
  4020: 95 7b 63 0a 0f 00 0a 03 70 0a 01 61 70 5c 52 42  .{c.....p..ap\RB
  4030: 45 43 0a 39 63 a0 14 91 92 7b 63 0a 80 00 95 7b  EC.9c....{c....{
  4040: 63 0a 0f 00 0a 03 70 0a 01 62 a0 0b 90 61 62 70  c.....p..b...abp
  4050: 5c 4c 50 53 54 60 a1 08 70 5c 4c 50 53 54 60 a4  \LPST`..p\LPST`.
  4060: 60 5b 01 4d 43 50 55 07 14 44 04 5f 51 31 30 00  `[.MCPU..D._Q10.
  4070: a0 3c 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43  .<\/._SB_PCI0LPC
  4080: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0a 01 5c  _EC__HKEYMHKK..\
  4090: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  40a0: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 01 10 14 47 04  __HKEYMHKQ....G.
  40b0: 5f 51 31 31 00 a0 3c 5c 2f 06 5f 53 42 5f 50 43  _Q11..<\/._SB_PC
  40c0: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  40d0: 4b 4b 0a 02 5c 2f 06 5f 53 42 5f 50 43 49 30 4c  KK..\/._SB_PCI0L
  40e0: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b  PC_EC__HKEYMHKQ.
  40f0: 02 10 a1 02 a3 14 24 5f 51 31 32 00 5c 2f 06 5f  ......$_Q12.\/._
  4100: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  4110: 4b 45 59 4d 48 4b 51 0b 03 10 14 41 05 5f 51 31  KEYMHKQ....A._Q1
  4120: 33 00 a0 3a 5c 2f 06 5f 53 42 5f 50 43 49 30 4c  3..:\/._SB_PCI0L
  4130: 50 43 5f 45 43 5f 5f 48 4b 45 59 44 48 4b 43 5c  PC_EC__HKEYDHKC\
  4140: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  4150: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 04 10 a1 0e 86  __HKEYMHKQ......
  4160: 5c 2e 5f 53 42 5f 53 4c 50 42 0a 80 14 42 12 5f  \._SB_SLPB...B._
  4170: 51 36 34 00 a0 3c 5c 2f 06 5f 53 42 5f 50 43 49  Q64..<\/._SB_PCI
  4180: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b  0LPC_EC__HKEYMHK
  4190: 4b 0a 10 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  K..\/._SB_PCI0LP
  41a0: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 05  C_EC__HKEYMHKQ..
  41b0: 10 a1 4d 0d a0 3e 92 7b 5c 2f 06 5f 53 42 5f 50  ..M..>.{\/._SB_P
  41c0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 57  CI0LPC_EC__HKEYW
  41d0: 47 46 4c 0a 20 00 5c 2f 06 5f 53 42 5f 50 43 49  GFL. .\/._SB_PCI
  41e0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 42 50 57  0LPC_EC__HKEYBPW
  41f0: 43 0a 01 a1 4b 09 a0 4c 05 92 7b 5c 2f 06 5f 53  C...K..L..{\/._S
  4200: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  4210: 45 59 57 47 46 4c 0a 02 00 5c 2f 06 5f 53 42 5f  EYWGFL...\/._SB_
  4220: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59  PCI0LPC_EC__HKEY
  4230: 42 50 57 43 0a 00 5c 2f 06 5f 53 42 5f 50 43 49  BPWC..\/._SB_PCI
  4240: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 57 50 57  0LPC_EC__HKEYWPW
  4250: 43 0a 01 a1 3b 5c 2f 06 5f 53 42 5f 50 43 49 30  C...;\/._SB_PCI0
  4260: 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 42 50 57 43  LPC_EC__HKEYBPWC
  4270: 0a 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  4280: 5f 45 43 5f 5f 48 4b 45 59 57 50 57 43 0a 00 14  _EC__HKEYWPWC...
  4290: 44 04 5f 51 36 35 00 a0 3c 5c 2f 06 5f 53 42 5f  D._Q65..<\/._SB_
  42a0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59  PCI0LPC_EC__HKEY
  42b0: 4d 48 4b 4b 0a 20 5c 2f 06 5f 53 42 5f 50 43 49  MHKK. \/._SB_PCI
  42c0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b  0LPC_EC__HKEYMHK
  42d0: 51 0b 06 10 14 48 07 5f 51 31 36 00 a0 3c 5c 2f  Q....H._Q16..<\/
  42e0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  42f0: 5f 48 4b 45 59 4d 48 4b 4b 0a 40 5c 2f 06 5f 53  _HKEYMHKK.@\/._S
  4300: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  4310: 45 59 4d 48 4b 51 0b 07 10 a1 33 a0 18 56 49 47  EYMHKQ....3..VIG
  4320: 44 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f  D\/._SB_PCI0VID_
  4330: 56 53 57 54 a1 18 5c 2f 05 5f 53 42 5f 50 43 49  VSWT..\/._SB_PCI
  4340: 30 41 47 50 5f 56 49 44 5f 56 53 57 54 14 42 05  0AGP_VID_VSWT.B.
  4350: 5f 51 31 37 00 a0 3c 5c 2f 06 5f 53 42 5f 50 43  _Q17..<\/._SB_PC
  4360: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  4370: 4b 4b 0a 80 5c 2f 06 5f 53 42 5f 50 43 49 30 4c  KK..\/._SB_PCI0L
  4380: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b  PC_EC__HKEYMHKQ.
  4390: 08 10 a1 0d a0 0b 92 5c 57 4e 54 46 56 45 58 50  .......\WNTFVEXP
  43a0: 14 46 04 5f 51 31 38 00 a0 3d 5c 2f 06 5f 53 42  .F._Q18..=\/._SB
  43b0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  43c0: 59 4d 48 4b 4b 0b 00 01 5c 2f 06 5f 53 42 5f 50  YMHKK...\/._SB_P
  43d0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  43e0: 48 4b 51 0b 09 10 a3 14 45 04 5f 51 36 36 00 a0  HKQ.....E._Q66..
  43f0: 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  =\/._SB_PCI0LPC_
  4400: 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0b 00 02 5c  EC__HKEYMHKK...\
  4410: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  4420: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 0a 10 14 45 04  __HKEYMHKQ....E.
  4430: 5f 51 31 41 00 a0 3d 5c 2f 06 5f 53 42 5f 50 43  _Q1A..=\/._SB_PC
  4440: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  4450: 4b 4b 0b 00 04 5c 2f 06 5f 53 42 5f 50 43 49 30  KK...\/._SB_PCI0
  4460: 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51  LPC_EC__HKEYMHKQ
  4470: 0b 0b 10 14 24 5f 51 31 42 00 5c 2f 06 5f 53 42  ....$_Q1B.\/._SB
  4480: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  4490: 59 4d 48 4b 51 0b 0c 10 14 45 04 5f 51 36 32 00  YMHKQ....E._Q62.
  44a0: a0 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43  .=\/._SB_PCI0LPC
  44b0: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0b 00 10  _EC__HKEYMHKK...
  44c0: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  44d0: 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 0d 10 14 45  C__HKEYMHKQ....E
  44e0: 04 5f 51 36 30 00 a0 3d 5c 2f 06 5f 53 42 5f 50  ._Q60..=\/._SB_P
  44f0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  4500: 48 4b 4b 0b 00 20 5c 2f 06 5f 53 42 5f 50 43 49  HKK.. \/._SB_PCI
  4510: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b  0LPC_EC__HKEYMHK
  4520: 51 0b 0e 10 14 45 04 5f 51 36 31 00 a0 3d 5c 2f  Q....E._Q61..=\/
  4530: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  4540: 5f 48 4b 45 59 4d 48 4b 4b 0b 00 40 5c 2f 06 5f  _HKEYMHKK..@\/._
  4550: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  4560: 4b 45 59 4d 48 4b 51 0b 0f 10 14 4e 04 5f 51 31  KEYMHKQ....N._Q1
  4570: 46 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 30 4c  F..?\/._SB_PCI0L
  4580: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0c  PC_EC__HKEYMHKK.
  4590: 00 00 02 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c  ....\/._SB_PCI0L
  45a0: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b  PC_EC__HKEYMHKQ.
  45b0: 12 10 5c 55 43 4d 53 0a 0e 14 47 04 5f 51 36 37  ..\UCMS...G._Q67
  45c0: 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  ..?\/._SB_PCI0LP
  45d0: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0c 00  C_EC__HKEYMHKK..
  45e0: 00 04 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  ...\/._SB_PCI0LP
  45f0: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 13  C_EC__HKEYMHKQ..
  4600: 10 14 4f 0e 5f 51 32 36 00 5c 55 43 4d 53 0a 12  ..O._Q26.\UCMS..
  4610: 44 53 50 44 0a 00 5b 22 0b f4 01 86 41 43 5f 5f  DSPD..["....AC__
  4620: 0a 80 86 5c 2e 5f 54 5a 5f 54 48 4d 30 0a 80 86  ...\._TZ_THM0...
  4630: 5c 2e 5f 54 5a 5f 54 48 4d 31 0a 80 a0 0e 5c 57  \._TZ_THM1....\W
  4640: 58 50 46 5b 23 4d 43 50 55 ff ff a0 37 5c 53 50  XPF[#MCPU...7\SP
  4650: 45 4e a0 27 5c 4f 53 50 58 86 5c 2e 5f 50 52 5f  EN.'\OSPX.\._PR_
  4660: 43 50 55 30 0a 80 a0 13 5c 4d 50 45 4e 86 5c 2e  CPU0....\MPEN.\.
  4670: 5f 50 52 5f 43 50 55 31 0a 80 a1 08 5c 53 54 45  _PR_CPU1....\STE
  4680: 50 0a 00 a0 0a 5c 57 58 50 46 5b 22 0a 64 a0 27  P....\WXPF[".d.'
  4690: 5c 4f 53 43 34 86 5c 2e 5f 50 52 5f 43 50 55 30  \OSC4.\._PR_CPU0
  46a0: 0a 81 a0 13 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f  ....\MPEN.\._PR_
  46b0: 43 50 55 31 0a 81 a0 0c 5c 57 58 50 46 5b 27 4d  CPU1....\WXPF['M
  46c0: 43 50 55 a0 23 90 92 5c 57 58 50 46 5c 57 4e 54  CPU.#..\WXPF\WNT
  46d0: 46 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  Fp..\/._SB_PCI0L
  46e0: 50 43 5f 43 34 43 33 41 54 4d 43 44 53 50 44 0a  PC_C4C3ATMCDSPD.
  46f0: 01 14 41 0f 5f 51 32 37 00 5c 55 43 4d 53 0a 12  ..A._Q27.\UCMS..
  4700: 5b 22 0b f4 01 86 41 43 5f 5f 0a 80 86 5c 2e 5f  ["....AC__...\._
  4710: 54 5a 5f 54 48 4d 30 0a 80 86 5c 2e 5f 54 5a 5f  TZ_THM0...\._TZ_
  4720: 54 48 4d 31 0a 80 a0 0e 5c 57 58 50 46 5b 23 4d  THM1....\WXPF[#M
  4730: 43 50 55 ff ff a0 37 5c 53 50 45 4e a0 27 5c 4f  CPU...7\SPEN.'\O
  4740: 53 50 58 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 80  SPX.\._PR_CPU0..
  4750: a0 13 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43 50  ..\MPEN.\._PR_CP
  4760: 55 31 0a 80 a1 08 5c 53 54 45 50 0a 01 a0 0a 5c  U1....\STEP....\
  4770: 57 58 50 46 5b 22 0a 64 a0 27 5c 4f 53 43 34 86  WXPF[".d.'\OSC4.
  4780: 5c 2e 5f 50 52 5f 43 50 55 30 0a 81 a0 13 5c 4d  \._PR_CPU0....\M
  4790: 50 45 4e 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 81  PEN.\._PR_CPU1..
  47a0: a0 0c 5c 57 58 50 46 5b 27 4d 43 50 55 a0 31 90  ..\WXPF['MCPU.1.
  47b0: 5c 43 57 41 43 92 5c 43 57 41 53 a0 23 90 92 5c  \CWAC.\CWAS.#..\
  47c0: 57 58 50 46 5c 57 4e 54 46 70 0a 01 5c 2f 04 5f  WXPF\WNTFp..\/._
  47d0: 53 42 5f 50 43 49 30 4c 50 43 5f 43 34 43 33 41  SB_PCI0LPC_C4C3A
  47e0: 54 4d 43 14 48 06 5f 51 32 41 00 a0 1a 56 49 47  TMC.H._Q2A...VIG
  47f0: 44 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f  D\/._SB_PCI0VID_
  4800: 56 4c 4f 43 0a 01 a1 1a 5c 2f 05 5f 53 42 5f 50  VLOC....\/._SB_P
  4810: 43 49 30 41 47 50 5f 56 49 44 5f 56 4c 4f 43 0a  CI0AGP_VID_VLOC.
  4820: 01 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  4830: 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 02 50 86  EC__HKEYMHKQ..P.
  4840: 5c 2e 5f 53 42 5f 4c 49 44 5f 0a 80 14 38 5f 51  \._SB_LID_...8_Q
  4850: 32 42 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  2B.\/._SB_PCI0LP
  4860: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 01  C_EC__HKEYMHKQ..
  4870: 50 5c 55 43 4d 53 0a 0d 86 5c 2e 5f 53 42 5f 4c  P\UCMS...\._SB_L
  4880: 49 44 5f 0a 80 14 06 5f 51 33 44 00 14 3e 5f 51  ID_...._Q3D..>_Q
  4890: 34 38 00 a0 37 5c 53 50 45 4e a0 27 5c 4f 53 50  48..7\SPEN.'\OSP
  48a0: 58 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 13  X.\._PR_CPU0....
  48b0: 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43 50 55 31  \MPEN.\._PR_CPU1
  48c0: 0a 80 a1 08 5c 53 54 45 50 0a 04 14 3e 5f 51 34  ....\STEP...>_Q4
  48d0: 39 00 a0 37 5c 53 50 45 4e a0 27 5c 4f 53 50 58  9..7\SPEN.'\OSPX
  48e0: 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 13 5c  .\._PR_CPU0....\
  48f0: 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43 50 55 31 0a  MPEN.\._PR_CPU1.
  4900: 80 a1 08 5c 53 54 45 50 0a 05 14 10 5f 51 37 46  ...\STEP...._Q7F
  4910: 00 5b 32 01 00 00 01 80 0b f2 02 14 24 5f 51 34  .[2.........$_Q4
  4920: 45 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43  E.\/._SB_PCI0LPC
  4930: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 11 60  _EC__HKEYMHKQ..`
  4940: 14 24 5f 51 34 46 00 5c 2f 06 5f 53 42 5f 50 43  .$_Q4F.\/._SB_PC
  4950: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  4960: 4b 51 0b 12 60 14 1d 5f 51 37 35 00 5c 2f 05 5f  KQ..`.._Q75.\/._
  4970: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 54  SB_PCI0LPC_EC__T
  4980: 41 54 52 14 24 5f 51 34 36 00 5c 2f 06 5f 53 42  ATR.$_Q46.\/._SB
  4990: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  49a0: 59 4d 48 4b 51 0b 12 60 14 20 5f 51 32 32 00 a0  YMHKQ..`. _Q22..
  49b0: 0c 48 42 30 41 86 42 41 54 30 0a 80 a0 0c 48 42  .HB0A.BAT0....HB
  49c0: 31 41 86 42 41 54 31 0a 80 14 0d 5f 51 34 41 00  1A.BAT1...._Q4A.
  49d0: 86 42 41 54 30 0a 81 14 0d 5f 51 34 42 00 86 42  .BAT0...._Q4B..B
  49e0: 41 54 30 0a 80 14 0a 5f 51 34 43 00 5f 51 33 38  AT0...._Q4C._Q38
  49f0: 14 25 5f 51 34 44 00 a0 1e 7b 5e 2e 42 41 54 31  .%_Q4D...{^.BAT1
  4a00: 42 31 53 54 5e 2e 42 41 54 31 58 42 31 53 00 86  B1ST^.BAT1XB1S..
  4a10: 42 41 54 31 0a 80 14 0d 5f 51 32 34 00 86 42 41  BAT1...._Q24..BA
  4a20: 54 30 0a 80 14 25 5f 51 32 35 00 a0 1e 7b 5e 2e  T0...%_Q25...{^.
  4a30: 42 41 54 31 42 31 53 54 5e 2e 42 41 54 31 58 42  BAT1B1ST^.BAT1XB
  4a40: 31 53 00 86 42 41 54 31 0a 80 5b 81 31 45 43 4f  1S..BAT1..[.1ECO
  4a50: 52 01 00 40 50 53 42 52 43 10 53 42 46 43 10 53  R..@PSBRC.SBFC.S
  4a60: 42 41 45 10 53 42 52 53 10 53 42 41 43 10 53 42  BAE.SBRS.SBAC.SB
  4a70: 56 4f 10 53 42 41 46 10 53 42 42 53 10 5b 81 1a  VO.SBAF.SBBS.[..
  4a80: 45 43 4f 52 01 00 40 50 00 0f 53 42 43 4d 01 53  ECOR..@P..SBCM.S
  4a90: 42 4d 44 10 53 42 43 43 10 5b 81 27 45 43 4f 52  BMD.SBCC.[.'ECOR
  4aa0: 01 00 40 50 53 42 44 43 10 53 42 44 56 10 53 42  ..@PSBDC.SBDV.SB
  4ab0: 4f 4d 10 53 42 53 49 10 53 42 44 54 10 53 42 53  OM.SBSI.SBDT.SBS
  4ac0: 4e 10 5b 81 0e 45 43 4f 52 01 00 40 50 53 42 43  N.[..ECOR..@PSBC
  4ad0: 48 20 5b 81 0f 45 43 4f 52 01 00 40 50 53 42 4d  H [..ECOR..@PSBM
  4ae0: 4e 40 08 5b 81 0f 45 43 4f 52 01 00 40 50 53 42  N@.[..ECOR..@PSB
  4af0: 44 4e 40 08 5b 01 42 41 54 4d 07 14 43 16 47 42  DN@.[.BATM..C.GB
  4b00: 49 46 03 5b 23 42 41 54 4d ff ff a0 43 12 6a 7d  IF.[#BATM...C.j}
  4b10: 68 0a 01 48 49 49 44 70 53 42 43 4d 67 7f 67 0a  h..HIIDpSBCMg.g.
  4b20: 01 88 69 0a 00 00 70 68 48 49 49 44 a0 0a 67 77  ..i...phHIID..gw
  4b30: 53 42 46 43 0a 0a 61 a1 07 70 53 42 46 43 61 70  SBFC..a..pSBFCap
  4b40: 61 88 69 0a 02 00 7d 68 0a 02 48 49 49 44 a0 0a  a.i...}h..HIID..
  4b50: 67 77 53 42 44 43 0a 0a 60 a1 07 70 53 42 44 43  gwSBDC..`..pSBDC
  4b60: 60 70 60 88 69 0a 01 00 78 61 0a 14 62 88 69 0a  `p`.i...xa..b.i.
  4b70: 05 00 a0 0a 67 70 0a c8 88 69 0a 06 00 a1 21 a0  ....gp...i....!.
  4b80: 15 53 42 44 56 78 0c 40 0d 03 00 53 42 44 56 62  .SBDVx.@...SBDVb
  4b90: 88 69 0a 06 00 a1 09 70 0a 00 88 69 0a 06 00 70  .i.....p...i...p
  4ba0: 53 42 44 56 88 69 0a 04 00 70 53 42 53 4e 60 08  SBDV.i...pSBSN`.
  4bb0: 53 45 52 4e 11 09 0a 06 20 20 20 20 20 00 70 0a  SERN....     .p.
  4bc0: 04 62 a2 15 60 78 60 0a 0a 61 60 72 61 0a 30 88  .b..`x`..a`ra.0.
  4bd0: 53 45 52 4e 62 00 76 62 70 53 45 52 4e 88 69 0a  SERNb.vbpSERN.i.
  4be0: 0a 00 7d 68 0a 06 48 49 49 44 70 53 42 44 4e 88  ..}h..HIIDpSBDN.
  4bf0: 69 0a 09 00 7d 68 0a 04 48 49 49 44 08 42 54 59  i...}h..HIID.BTY
  4c00: 50 11 08 0a 05 00 00 00 00 00 70 53 42 43 48 42  P.........pSBCHB
  4c10: 54 59 50 70 42 54 59 50 88 69 0a 0b 00 7d 68 0a  TYPpBTYP.i...}h.
  4c20: 05 48 49 49 44 70 53 42 4d 4e 88 69 0a 0c 00 a1  .HIIDpSBMN.i....
  4c30: 27 70 0c ff ff ff ff 88 69 0a 01 00 70 0a 00 88  'p......i...p...
  4c40: 69 0a 05 00 70 0a 00 88 69 0a 06 00 70 0c ff ff  i...p...i...p...
  4c50: ff ff 88 69 0a 02 00 5b 27 42 41 54 4d a4 69 14  ...i...['BATM.i.
  4c60: 4a 0d 47 42 53 54 04 5b 23 42 41 54 4d ff ff a0  J.GBST.[#BATM...
  4c70: 0a 7b 69 0a 20 00 70 0a 02 60 a1 12 a0 0a 7b 69  .{i. .p..`....{i
  4c80: 0a 40 00 70 0a 01 60 a1 05 70 0a 00 60 a0 06 7b  .@.p..`..p..`..{
  4c90: 69 0a 0f 00 a1 06 7d 60 0a 04 60 a0 19 93 7b 69  i.....}`..`...{i
  4ca0: 0a 0f 00 0a 0f 70 0a 04 60 70 0a 00 61 70 0a 00  .....p..`p..ap..
  4cb0: 62 70 0a 00 63 a1 40 06 70 68 48 49 49 44 70 53  bp..c.@.phHIIDpS
  4cc0: 42 56 4f 63 a0 0a 6a 77 53 42 52 43 0a 0a 62 a1  BVOc..jwSBRC..b.
  4cd0: 07 70 53 42 52 43 62 70 53 42 41 43 61 a0 1c 92  .pSBRCbpSBACa...
  4ce0: 95 61 0b 00 80 a0 0e 7b 60 0a 01 00 74 0c 00 00  .a.....{`...t...
  4cf0: 01 00 61 61 a1 05 70 0a 00 61 a1 0d a0 0b 92 7b  ..aa..p..a.....{
  4d00: 60 0a 02 00 70 0a 00 61 a0 0d 6a 77 63 61 61 78  `...p..a..jwcaax
  4d10: 61 0b e8 03 67 61 70 60 88 6b 0a 00 00 70 61 88  a...gap`.k...pa.
  4d20: 6b 0a 01 00 70 62 88 6b 0a 02 00 70 63 88 6b 0a  k...pb.k...pc.k.
  4d30: 03 00 5b 27 42 41 54 4d a4 6b 5b 82 47 15 42 41  ..['BATM.k[.G.BA
  4d40: 54 30 08 5f 48 49 44 0c 41 d0 0c 0a 08 5f 55 49  T0._HID.A...._UI
  4d50: 44 0a 00 08 5f 50 43 4c 12 07 01 5c 5f 53 42 5f  D..._PCL...\_SB_
  4d60: 08 42 30 53 54 0a 00 08 42 54 30 49 12 23 0d 0a  .B0ST...BT0I.#..
  4d70: 00 0c ff ff ff ff 0c ff ff ff ff 0a 01 0b 30 2a  ..............0*
  4d80: 0a 00 0a 00 0a 01 0a 01 0d 00 0d 00 0d 00 0d 00  ................
  4d90: 08 42 54 30 50 12 02 04 14 44 04 5f 53 54 41 00  .BT0P....D._STA.
  4da0: a0 0f 5c 48 38 44 52 70 48 42 30 41 42 30 53 54  ..\H8DRpHB0AB0ST
  4db0: a1 1e a0 13 7b 5c 52 42 45 43 0a 38 0a 80 00 70  ....{\RBEC.8...p
  4dc0: 0a 01 42 30 53 54 a1 08 70 0a 00 42 30 53 54 a0  ..B0ST..p..B0ST.
  4dd0: 08 42 30 53 54 a4 0a 1f a1 04 a4 0a 0f 14 47 04  .B0ST.........G.
  4de0: 5f 42 49 46 00 70 0a 00 67 70 0a 0a 66 a2 2b 90  _BIF.p..gp..f.+.
  4df0: 92 67 66 a0 1f 48 42 30 41 a0 13 93 7b 48 42 30  .gf..HB0A...{HB0
  4e00: 53 0a 0f 00 0a 0f 5b 22 0b e8 03 76 66 a1 05 70  S.....["...vf..p
  4e10: 0a 01 67 a1 05 70 0a 00 66 a4 47 42 49 46 0a 00  ..g..p..f.GBIF..
  4e20: 42 54 30 49 67 14 23 5f 42 53 54 00 7f 83 88 42  BT0Ig.#_BST....B
  4e30: 54 30 49 0a 00 00 0a 01 60 a4 47 42 53 54 0a 00  T0I.....`.GBST..
  4e40: 48 42 30 53 60 42 54 30 50 14 49 04 5f 42 54 50  HB0S`BT0P.I._BTP
  4e50: 01 7b 48 41 4d 34 0a ef 48 41 4d 34 a0 36 68 70  .{HAM4..HAM4.6hp
  4e60: 68 61 a0 11 92 83 88 42 54 30 49 0a 00 00 78 61  ha.....BT0I...xa
  4e70: 0a 0a 60 61 7b 61 0a ff 48 54 30 4c 7b 7a 61 0a  ..`a{a..HT0L{za.
  4e80: 08 00 0a ff 48 54 30 48 7d 48 41 4d 34 0a 10 48  ....HT0H}HAM4..H
  4e90: 41 4d 34 5b 82 41 18 42 41 54 31 08 5f 48 49 44  AM4[.A.BAT1._HID
  4ea0: 0c 41 d0 0c 0a 08 5f 55 49 44 0a 01 08 5f 50 43  .A...._UID..._PC
  4eb0: 4c 12 07 01 5c 5f 53 42 5f 08 42 31 53 54 0a 00  L...\_SB_.B1ST..
  4ec0: 08 58 42 31 53 0a 01 08 42 54 31 49 12 23 0d 0a  .XB1S...BT1I.#..
  4ed0: 00 0c ff ff ff ff 0c ff ff ff ff 0a 01 0b 30 2a  ..............0*
  4ee0: 0a 00 0a 00 0a 01 0a 01 0d 00 0d 00 0d 00 0d 00  ................
  4ef0: 08 42 54 31 50 12 02 04 14 47 06 5f 53 54 41 00  .BT1P....G._STA.
  4f00: a0 0f 5c 48 38 44 52 70 48 42 31 41 42 31 53 54  ..\H8DRpHB1AB1ST
  4f10: a1 1e a0 13 7b 5c 52 42 45 43 0a 39 0a 80 00 70  ....{\RBEC.9...p
  4f20: 0a 01 42 31 53 54 a1 08 70 0a 00 42 31 53 54 a0  ..B1ST..p..B1ST.
  4f30: 1f 42 31 53 54 a0 08 58 42 31 53 a4 0a 1f a1 10  .B1ST..XB1S.....
  4f40: a0 09 5c 57 4e 54 46 a4 0a 00 a1 04 a4 0a 1f a1  ..\WNTF.........
  4f50: 10 a0 09 5c 57 4e 54 46 a4 0a 00 a1 04 a4 0a 0f  ...\WNTF........
  4f60: 14 47 04 5f 42 49 46 00 70 0a 00 67 70 0a 0a 66  .G._BIF.p..gp..f
  4f70: a2 2b 90 92 67 66 a0 1f 48 42 31 41 a0 13 93 7b  .+..gf..HB1A...{
  4f80: 48 42 31 53 0a 0f 00 0a 0f 5b 22 0b e8 03 76 66  HB1S.....["...vf
  4f90: a1 05 70 0a 01 67 a1 05 70 0a 00 66 a4 47 42 49  ..p..g..p..f.GBI
  4fa0: 46 0a 10 42 54 31 49 67 14 23 5f 42 53 54 00 7f  F..BT1Ig.#_BST..
  4fb0: 83 88 42 54 31 49 0a 00 00 0a 01 60 a4 47 42 53  ..BT1I.....`.GBS
  4fc0: 54 0a 10 48 42 31 53 60 42 54 31 50 14 49 04 5f  T..HB1S`BT1P.I._
  4fd0: 42 54 50 01 7b 48 41 4d 34 0a df 48 41 4d 34 a0  BTP.{HAM4..HAM4.
  4fe0: 36 68 70 68 61 a0 11 92 83 88 42 54 31 49 0a 00  6hpha.....BT1I..
  4ff0: 00 78 61 0a 0a 60 61 7b 61 0a ff 48 54 31 4c 7b  .xa..`a{a..HT1L{
  5000: 7a 61 0a 08 00 0a ff 48 54 31 48 7d 48 41 4d 34  za.....HT1H}HAM4
  5010: 0a 20 48 41 4d 34 5b 82 3e 41 43 5f 5f 08 5f 48  . HAM4[.>AC__._H
  5020: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 55 49  ID.ACPI0003.._UI
  5030: 44 0a 00 08 5f 50 43 4c 12 07 01 5c 5f 53 42 5f  D..._PCL...\_SB_
  5040: 14 0b 5f 50 53 52 00 a4 48 50 41 43 14 09 5f 53  .._PSR..HPAC.._S
  5050: 54 41 00 a4 0a 0f 5b 82 49 50 48 4b 45 59 08 5f  TA....[.IPHKEY._
  5060: 48 49 44 0c 24 4d 00 68 14 09 5f 53 54 41 00 a4  HID.$M.h.._STA..
  5070: 0a 0f 14 0a 4d 48 4b 56 00 a4 0b 00 01 08 44 48  ....MHKV......DH
  5080: 4b 43 0a 00 08 44 48 4b 42 0a 01 5b 01 58 44 48  KC...DHKB..[.XDH
  5090: 4b 07 08 44 48 4b 48 0a 00 08 44 48 4b 57 0a 00  K..DHKH...DHKW..
  50a0: 08 44 48 4b 53 0a 00 08 44 48 4b 44 0a 00 08 44  .DHKS...DHKD...D
  50b0: 48 4b 4e 0b 0c 08 08 44 48 4b 54 0a 00 08 44 48  HKN....DHKT...DH
  50c0: 57 57 0a 00 14 0c 4d 48 4b 41 00 a4 0c ff ff ff  WW....MHKA......
  50d0: 00 14 0b 4d 48 4b 4e 00 a4 44 48 4b 4e 14 18 4d  ...MHKN..DHKN..M
  50e0: 48 4b 4b 01 a0 0d 44 48 4b 43 a4 7b 44 48 4b 4e  HKK...DHKC.{DHKN
  50f0: 68 00 a1 03 a4 00 14 40 05 4d 48 4b 4d 02 5b 23  h......@.MHKM.[#
  5100: 58 44 48 4b ff ff a0 06 94 68 0a 20 a3 a1 33 79  XDHK.....h. ..3y
  5110: 01 76 68 60 a0 29 7b 60 0c ff ff ff 00 00 a0 0c  .vh`.){`........
  5120: 69 7d 60 44 48 4b 4e 44 48 4b 4e a1 12 7b 44 48  i}`DHKNDHKN..{DH
  5130: 4b 4e 7f 60 0c ff ff ff ff 00 44 48 4b 4e a1 02  KN.`......DHKN..
  5140: a3 5b 27 58 44 48 4b 14 13 4d 48 4b 53 00 86 5c  .['XDHK..MHKS..\
  5150: 2e 5f 53 42 5f 53 4c 50 42 0a 80 14 0c 4d 48 4b  ._SB_SLPB....MHK
  5160: 43 01 70 68 44 48 4b 43 14 49 08 4d 48 4b 50 00  C.phDHKC.I.MHKP.
  5170: 5b 23 58 44 48 4b ff ff a0 11 44 48 57 57 70 44  [#XDHK....DHWWpD
  5180: 48 57 57 61 70 00 44 48 57 57 a1 4f 05 a0 11 44  HWWap.DHWW.O...D
  5190: 48 4b 57 70 44 48 4b 57 61 70 00 44 48 4b 57 a1  HKWpDHKWap.DHKW.
  51a0: 4a 04 a0 11 44 48 4b 44 70 44 48 4b 44 61 70 00  J...DHKDpDHKDap.
  51b0: 44 48 4b 44 a1 35 a0 11 44 48 4b 53 70 44 48 4b  DHKD.5..DHKSpDHK
  51c0: 53 61 70 00 44 48 4b 53 a1 21 a0 11 44 48 4b 54  Sap.DHKS.!..DHKT
  51d0: 70 44 48 4b 54 61 70 00 44 48 4b 54 a1 0d 70 44  pDHKTap.DHKT..pD
  51e0: 48 4b 48 61 70 00 44 48 4b 48 5b 27 58 44 48 4b  HKHap.DHKH['XDHK
  51f0: a4 61 14 3e 4d 48 4b 45 01 70 68 44 48 4b 42 5b  .a.>MHKE.phDHKB[
  5200: 23 58 44 48 4b ff ff 70 00 44 48 4b 48 70 00 44  #XDHK..p.DHKHp.D
  5210: 48 4b 57 70 00 44 48 4b 53 70 00 44 48 4b 44 70  HKWp.DHKSp.DHKDp
  5220: 00 44 48 4b 54 70 00 44 48 57 57 5b 27 58 44 48  .DHKTp.DHWW['XDH
  5230: 4b 14 45 0b 4d 48 4b 51 01 a0 4d 0a 44 48 4b 42  K.E.MHKQ..M.DHKB
  5240: a0 40 09 44 48 4b 43 5b 23 58 44 48 4b ff ff a0  .@.DHKC[#XDHK...
  5250: 06 95 68 0b 00 10 a1 4d 06 a0 0c 95 68 0b 00 20  ..h....M....h.. 
  5260: 70 68 44 48 4b 48 a1 4d 05 a0 0c 95 68 0b 00 30  phDHKH.M....h..0
  5270: 70 68 44 48 4b 57 a1 4d 04 a0 0c 95 68 0b 00 40  phDHKW.M....h..@
  5280: 70 68 44 48 4b 53 a1 3d a0 0c 95 68 0b 00 50 70  phDHKS.=...h..Pp
  5290: 68 44 48 4b 44 a1 2e a0 0c 95 68 0b 00 60 70 68  hDHKD.....h..`ph
  52a0: 44 48 4b 48 a1 1f a0 0c 95 68 0b 00 70 70 68 44  DHKH.....h..pphD
  52b0: 48 4b 54 a1 10 a0 0c 95 68 0b 00 80 70 68 44 48  HKT.....h...phDH
  52c0: 57 57 a1 01 5b 27 58 44 48 4b 86 48 4b 45 59 0a  WW..['XDHK.HKEY.
  52d0: 80 a1 15 a0 13 93 68 0b 04 10 86 5c 2e 5f 53 42  ......h....\._SB
  52e0: 5f 53 4c 50 42 0a 80 14 49 04 4d 48 4b 42 01 a0  _SLPB...I.MHKB..
  52f0: 1e 93 68 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30  ..h..\/._SB_PCI0
  5300: 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a 11 a1 22  LPC_EC__BEEP..."
  5310: a0 1e 93 68 0a 01 5c 2f 05 5f 53 42 5f 50 43 49  ...h..\/._SB_PCI
  5320: 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a 10 a1  0LPC_EC__BEEP...
  5330: 01 14 3c 4d 48 4b 44 00 a0 1a 56 49 47 44 5c 2f  ..<MHKD...VIGD\/
  5340: 04 5f 53 42 5f 50 43 49 30 56 49 44 5f 56 4c 4f  ._SB_PCI0VID_VLO
  5350: 43 0a 00 a1 1a 5c 2f 05 5f 53 42 5f 50 43 49 30  C....\/._SB_PCI0
  5360: 41 47 50 5f 56 49 44 5f 56 4c 4f 43 0a 00 14 3e  AGP_VID_VLOC...>
  5370: 4d 48 51 43 01 a0 31 5c 57 4e 54 46 a0 0b 93 68  MHQC..1\WNTF...h
  5380: 0a 00 a4 5c 43 57 41 43 a1 1e a0 0b 93 68 0a 01  ...\CWAC.....h..
  5390: a4 5c 43 57 41 50 a1 10 a0 0b 93 68 0a 02 a4 5c  .\CWAP.....h...\
  53a0: 43 57 41 54 a1 02 a3 a1 02 a3 a4 0a 00 14 41 08  CWAT..........A.
  53b0: 4d 48 47 43 00 a0 43 07 5c 57 4e 54 46 5b 23 58  MHGC..C.\WNTF[#X
  53c0: 44 48 4b ff ff a0 3a 5c 4f 53 43 34 a0 20 5c 2f  DHK...:\OSC4. \/
  53d0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  53e0: 5f 41 43 5f 5f 5f 50 53 52 70 0a 03 60 a1 12 a0  _AC___PSRp..`...
  53f0: 0a 5c 43 34 4e 41 70 0a 03 60 a1 05 70 0a 04 60  .\C4NAp..`..p..`
  5400: a1 20 a0 18 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  . ..\/._SB_PCI0L
  5410: 50 43 5f 43 34 43 33 70 0a 04 60 a1 05 70 0a 03  PC_C4C3p..`..p..
  5420: 60 5b 27 58 44 48 4b a4 60 a1 02 a3 a4 0a 00 14  `['XDHK.`.......
  5430: 41 13 4d 48 53 43 01 a0 46 12 90 5c 43 57 41 43  A.MHSC..F..\CWAC
  5440: 5c 57 4e 54 46 5b 23 58 44 48 4b ff ff a0 4a 08  \WNTF[#XDHK...J.
  5450: 5c 4f 53 43 34 a0 3e 93 68 0a 03 a0 38 92 5c 43  \OSC4.>.h...8.\C
  5460: 57 41 53 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 81  WAS.\._PR_CPU0..
  5470: a0 13 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43 50  ..\MPEN.\._PR_CP
  5480: 55 31 0a 81 70 0a 01 5c 43 57 41 53 70 0a 01 5c  U1..p..\CWASp..\
  5490: 43 34 4e 41 a1 43 04 a0 3d 93 68 0a 04 a0 37 5c  C4NA.C..=.h...7\
  54a0: 43 57 41 53 86 5c 2e 5f 50 52 5f 43 50 55 30 0a  CWAS.\._PR_CPU0.
  54b0: 81 a0 13 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43  ...\MPEN.\._PR_C
  54c0: 50 55 31 0a 81 70 0a 00 5c 43 57 41 53 70 0a 00  PU1..p..\CWASp..
  54d0: 5c 43 34 4e 41 a1 02 a3 a1 4f 07 a0 2b 93 68 0a  \C4NA....O..+.h.
  54e0: 03 a0 25 92 5c 43 57 41 53 70 0a 00 5c 2f 04 5f  ..%.\CWASp..\/._
  54f0: 53 42 5f 50 43 49 30 4c 50 43 5f 43 34 43 33 70  SB_PCI0LPC_C4C3p
  5500: 0a 01 5c 43 57 41 53 a1 40 05 a0 4a 04 93 68 0a  ..\CWAS.@..J..h.
  5510: 04 a0 43 04 5c 43 57 41 53 a0 33 92 5c 2f 06 5f  ..C.\CWAS.3.\/._
  5520: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 41  SB_PCI0LPC_EC__A
  5530: 43 5f 5f 5f 50 53 52 70 0a 01 5c 2f 04 5f 53 42  C___PSRp..\/._SB
  5540: 5f 50 43 49 30 4c 50 43 5f 43 34 43 33 70 0a 00  _PCI0LPC_C4C3p..
  5550: 5c 43 57 41 53 a1 02 a3 5b 27 58 44 48 4b a1 02  \CWAS...['XDHK..
  5560: a3 10 47 14 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  ..G.\/._SB_PCI0L
  5570: 50 43 5f 45 43 5f 5f 48 4b 45 59 14 4d 04 54 44  PC_EC__HKEY.M.TD
  5580: 53 43 01 70 0a 01 60 a2 1b 60 70 5c 2f 05 5f 53  SC.p..`..`p\/._S
  5590: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 41  B_PCI0LPC_EC__HA
  55a0: 4e 54 60 70 68 5c 2f 05 5f 53 42 5f 50 43 49 30  NT`ph\/._SB_PCI0
  55b0: 4c 50 43 5f 45 43 5f 5f 48 41 4e 54 a0 0c 93 68  LPC_EC__HANT...h
  55c0: 0a 21 5c 41 54 43 43 0a 00 14 0c 54 44 53 53 01  .!\ATCC....TDSS.
  55d0: 5c 41 54 43 43 68 14 4e 08 54 44 53 47 01 7b 68  \ATCCh.N.TDSG.{h
  55e0: 0a ff 60 70 60 5c 2f 05 5f 53 42 5f 50 43 49 30  ..`p`\/._SB_PCI0
  55f0: 4c 50 43 5f 45 43 5f 5f 48 44 41 41 7a 68 0a 08  LPC_EC__HDAAzh..
  5600: 60 7b 60 0a ff 61 70 61 5c 2f 05 5f 53 42 5f 50  `{`..apa\/._SB_P
  5610: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 44 41 42 7a  CI0LPC_EC__HDABz
  5620: 68 0a 10 60 7b 60 0a ff 61 70 61 5c 2f 05 5f 53  h..`{`..apa\/._S
  5630: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 44  B_PCI0LPC_EC__HD
  5640: 41 43 7a 68 0a 18 60 7b 60 0a ff 61 70 61 5c 2f  ACzh..`{`..apa\/
  5650: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  5660: 5f 48 41 4e 41 14 21 54 44 47 43 00 70 5c 2f 05  _HANA.!TDGC.p\/.
  5670: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  5680: 48 44 44 44 60 a4 60 14 21 54 44 47 53 00 70 5c  HDDD`.`.!TDGS.p\
  5690: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  56a0: 5f 5f 48 41 41 41 60 a4 60 5b 81 18 45 43 4f 52  __HAAA`.`[..ECOR
  56b0: 11 00 40 2a 48 53 44 30 08 48 53 44 31 08 48 53  ..@*HSD0.HSD1.HS
  56c0: 44 32 08 5b 81 0e 45 43 4f 52 11 00 40 2b 48 53  D2.[..ECOR..@+HS
  56d0: 44 4c 10 5b 81 19 45 43 4f 52 11 00 40 2b 48 53  DL.[..ECOR..@+HS
  56e0: 44 42 48 04 48 53 44 46 10 48 53 44 43 10 5b 01  DBH.HSDF.HSDC.[.
  56f0: 49 32 43 4d 07 14 3f 43 48 4b 53 00 70 0b e8 03  I2CM..?CHKS.p...
  5700: 60 a2 13 48 4d 50 52 5b 22 0a 01 76 60 a0 07 92  `..HMPR["..v`...
  5710: 60 a4 0b 80 80 a0 19 48 4d 44 4e a0 0f 48 4d 53  `......HMDN..HMS
  5720: 54 a4 7d 0b 00 80 48 4d 53 54 00 a1 03 a4 00 a1  T.}...HMST......
  5730: 05 a4 0b 81 80 14 20 49 32 52 54 00 70 0a 02 48  ...... I2RT.p..H
  5740: 4d 41 44 70 0a 21 48 4d 43 4d 70 0a 0b 48 4d 50  MADp.!HMCMp..HMP
  5750: 52 a4 43 48 4b 53 14 26 49 32 4e 54 01 70 0a 02  R.CHKS.&I2NT.p..
  5760: 48 4d 41 44 70 0a 22 48 4d 43 4d 70 68 48 53 44  HMADp."HMCMphHSD
  5770: 30 70 0a 06 48 4d 50 52 a4 43 48 4b 53 14 4b 0e  0p..HMPR.CHKS.K.
  5780: 54 41 54 52 00 a0 43 0e 5c 48 38 44 52 5b 23 49  TATR..C.\H8DR[#I
  5790: 32 43 4d ff ff 49 32 52 54 70 48 53 44 30 60 a0  2CM..I2RTpHSD0`.
  57a0: 25 93 60 0a 20 5c 2f 04 5f 53 42 5f 50 43 49 30  %.`. \/._SB_PCI0
  57b0: 4c 50 43 5f 54 43 53 5a 48 53 44 31 48 53 44 32  LPC_TCSZHSD1HSD2
  57c0: 49 32 4e 54 60 a1 4d 09 a0 25 93 60 0a 21 5c 2f  I2NT`.M..%.`.!\/
  57d0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 54 43 53  ._SB_PCI0LPC_TCS
  57e0: 54 48 53 44 31 48 53 44 32 49 32 4e 54 60 a1 44  THSD1HSD2I2NT`.D
  57f0: 07 a0 49 04 93 60 0a 22 08 54 53 44 43 11 0c 0a  ..I..`.".TSDC...
  5800: 09 20 20 20 20 20 20 20 20 00 70 48 53 44 42 54  .        .pHSDBT
  5810: 53 44 43 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  SDC\/._SB_PCI0LP
  5820: 43 5f 54 43 42 53 48 53 44 31 54 53 44 43 48 53  C_TCBSHSD1TSDCHS
  5830: 44 46 48 53 44 43 49 32 4e 54 60 a1 27 a0 25 93  DFHSDCI2NT`.'.%.
  5840: 60 0a 23 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  `.#\/._SB_PCI0LP
  5850: 43 5f 54 53 43 4c 48 53 44 31 48 53 44 4c 49 32  C_TSCLHSD1HSDLI2
  5860: 4e 54 60 5b 27 49 32 43 4d 14 0d 54 41 54 45 00  NT`['I2CM..TATE.
  5870: 70 0a 01 48 45 54 45 08 5f 41 44 52 0a 00 08 5f  p..HETE._ADR..._
  5880: 53 33 44 0a 02 08 52 49 44 5f 0a 00 08 4c 52 52  S3D...RID_...LRR
  5890: 54 12 47 13 0e 12 15 04 0c ff ff 01 00 0a 00 5c  T.G............\
  58a0: 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff  ._SB_LNKA.......
  58b0: ff 02 00 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a  .....\._SB_LNKA.
  58c0: 00 12 15 04 0c ff ff 1b 00 0a 01 5c 2e 5f 53 42  ...........\._SB
  58d0: 5f 4c 4e 4b 42 0a 00 12 15 04 0c ff ff 1c 00 0a  _LNKB...........
  58e0: 00 5c 2e 5f 53 42 5f 4c 4e 4b 45 0a 00 12 15 04  .\._SB_LNKE.....
  58f0: 0c ff ff 1c 00 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b  .......\._SB_LNK
  5900: 46 0a 00 12 15 04 0c ff ff 1c 00 0a 02 5c 2e 5f  F............\._
  5910: 53 42 5f 4c 4e 4b 47 0a 00 12 15 04 0c ff ff 1c  SB_LNKG.........
  5920: 00 0a 03 5c 2e 5f 53 42 5f 4c 4e 4b 48 0a 00 12  ...\._SB_LNKH...
  5930: 15 04 0c ff ff 1d 00 0a 00 5c 2e 5f 53 42 5f 4c  .........\._SB_L
  5940: 4e 4b 41 0a 00 12 15 04 0c ff ff 1d 00 0a 01 5c  NKA............\
  5950: 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 15 04 0c ff  ._SB_LNKB.......
  5960: ff 1d 00 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 43 0a  .....\._SB_LNKC.
  5970: 00 12 15 04 0c ff ff 1d 00 0a 03 5c 2e 5f 53 42  ...........\._SB
  5980: 5f 4c 4e 4b 44 0a 00 12 15 04 0c ff ff 1f 00 0a  _LNKD...........
  5990: 00 5c 2e 5f 53 42 5f 4c 4e 4b 48 0a 00 12 15 04  .\._SB_LNKH.....
  59a0: 0c ff ff 1f 00 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b  .......\._SB_LNK
  59b0: 41 0a 00 12 15 04 0c ff ff 1f 00 0a 01 5c 2e 5f  A............\._
  59c0: 53 42 5f 4c 4e 4b 41 0a 00 08 41 52 52 54 12 47  SB_LNKA...ARRT.G
  59d0: 0c 0e 12 0d 04 0c ff ff 01 00 0a 00 0a 00 0a 10  ................
  59e0: 12 0d 04 0c ff ff 02 00 0a 00 0a 00 0a 10 12 0d  ................
  59f0: 04 0c ff ff 1b 00 0a 01 0a 00 0a 11 12 0d 04 0c  ................
  5a00: ff ff 1c 00 0a 00 0a 00 0a 14 12 0d 04 0c ff ff  ................
  5a10: 1c 00 0a 01 0a 00 0a 15 12 0d 04 0c ff ff 1c 00  ................
  5a20: 0a 02 0a 00 0a 16 12 0d 04 0c ff ff 1c 00 0a 03  ................
  5a30: 0a 00 0a 17 12 0d 04 0c ff ff 1d 00 0a 00 0a 00  ................
  5a40: 0a 10 12 0d 04 0c ff ff 1d 00 0a 01 0a 00 0a 11  ................
  5a50: 12 0d 04 0c ff ff 1d 00 0a 02 0a 00 0a 12 12 0d  ................
  5a60: 04 0c ff ff 1d 00 0a 03 0a 00 0a 13 12 0d 04 0c  ................
  5a70: ff ff 1f 00 0a 00 0a 00 0a 17 12 0d 04 0c ff ff  ................
  5a80: 1f 00 0a 02 0a 00 0a 10 12 0d 04 0c ff ff 1f 00  ................
  5a90: 0a 01 0a 00 0a 10 14 19 5f 50 52 54 00 a0 0b 5c  ........_PRT...\
  5aa0: 47 50 49 43 a4 41 52 52 54 a1 06 a4 4c 52 52 54  GPIC.ARRT...LRRT
  5ab0: 08 5f 48 49 44 0c 41 d0 0a 08 08 5f 43 49 44 0c  ._HID.A...._CID.
  5ac0: 41 d0 0a 03 08 5f 42 42 4e 0a 00 5b 80 4d 48 43  A...._BBN..[.MHC
  5ad0: 53 02 0a 00 0b 00 01 5b 81 35 4d 48 43 53 03 00  S......[.5MHCS..
  5ae0: 40 48 50 41 4d 30 08 50 41 4d 31 08 50 41 4d 32  @HPAM0.PAM1.PAM2
  5af0: 08 50 41 4d 33 08 50 41 4d 34 08 50 41 4d 35 08  .PAM3.PAM4.PAM5.
  5b00: 50 41 4d 36 08 00 28 00 03 54 4f 55 44 05 08 5f  PAM6..(..TOUD.._
  5b10: 43 52 53 11 45 1c 0b c0 01 88 0d 00 02 0c 00 00  CRS.E...........
  5b20: 00 00 00 ff 00 00 00 00 01 47 01 f8 0c f8 0c 01  .........G......
  5b30: 08 88 0d 00 01 0c 03 00 00 00 00 f7 0c 00 00 f8  ................
  5b40: 0c 88 0d 00 01 0c 03 00 00 00 0d ff ff 00 00 00  ................
  5b50: f3 87 17 00 00 0c 03 00 00 00 00 00 00 0a 00 ff  ................
  5b60: ff 0b 00 00 00 00 00 00 00 02 00 87 17 00 00 0c  ................
  5b70: 03 00 00 00 00 00 00 0c 00 ff 3f 0c 00 00 00 00  ..........?.....
  5b80: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00  ..@.............
  5b90: 40 0c 00 ff 7f 0c 00 00 00 00 00 00 40 00 00 87  @...........@...
  5ba0: 17 00 00 0c 03 00 00 00 00 00 80 0c 00 ff bf 0c  ................
  5bb0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00  ......@.........
  5bc0: 00 00 00 00 c0 0c 00 ff ff 0c 00 00 00 00 00 00  ................
  5bd0: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 00 0d  @...............
  5be0: 00 ff 3f 0d 00 00 00 00 00 00 40 00 00 87 17 00  ..?.......@.....
  5bf0: 00 0c 03 00 00 00 00 00 40 0d 00 ff 7f 0d 00 00  ........@.......
  5c00: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00  ....@...........
  5c10: 00 00 80 0d 00 ff bf 0d 00 00 00 00 00 00 40 00  ..............@.
  5c20: 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0d 00 ff  ................
  5c30: ff 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c  ........@.......
  5c40: 03 00 00 00 00 00 00 0e 00 ff 3f 0e 00 00 00 00  ..........?.....
  5c50: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00  ..@.............
  5c60: 40 0e 00 ff 7f 0e 00 00 00 00 00 00 40 00 00 87  @...........@...
  5c70: 17 00 00 0c 03 00 00 00 00 00 80 0e 00 ff bf 0e  ................
  5c80: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00  ......@.........
  5c90: 00 00 00 00 c0 0e 00 ff ff 0e 00 00 00 00 00 00  ................
  5ca0: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 00 10  @...............
  5cb0: 00 ff ff bf fe 00 00 00 00 00 00 b0 fe 87 17 00  ................
  5cc0: 00 0c 03 00 00 00 00 00 00 d4 fe ff 0f d4 fe 00  ................
  5cd0: 00 00 00 00 10 00 00 79 00 8a 5f 43 52 53 0a 68  .......y.._CRS.h
  5ce0: 43 30 4c 4e 8a 5f 43 52 53 0a 82 43 34 4c 4e 8a  C0LN._CRS..C4LN.
  5cf0: 5f 43 52 53 0a 9c 43 38 4c 4e 8a 5f 43 52 53 0a  _CRS..C8LN._CRS.
  5d00: b6 43 43 4c 4e 8a 5f 43 52 53 0a d0 44 30 4c 4e  .CCLN._CRS..D0LN
  5d10: 8a 5f 43 52 53 0a ea 44 34 4c 4e 8a 5f 43 52 53  ._CRS..D4LN._CRS
  5d20: 0b 04 01 44 38 4c 4e 8a 5f 43 52 53 0b 1e 01 44  ...D8LN._CRS...D
  5d30: 43 4c 4e 8a 5f 43 52 53 0b 38 01 45 30 4c 4e 8a  CLN._CRS.8.E0LN.
  5d40: 5f 43 52 53 0b 52 01 45 34 4c 4e 8a 5f 43 52 53  _CRS.R.E4LN._CRS
  5d50: 0b 6c 01 45 38 4c 4e 8a 5f 43 52 53 0b 86 01 45  .l.E8LN._CRS...E
  5d60: 43 4c 4e 8a 5f 43 52 53 0b 94 01 58 58 4d 4e 8a  CLN._CRS...XXMN.
  5d70: 5f 43 52 53 0b 98 01 58 58 4d 58 8a 5f 43 52 53  _CRS...XXMX._CRS
  5d80: 0b a0 01 58 58 4c 4e 8a 5f 43 52 53 0b ae 01 46  ...XXLN._CRS...F
  5d90: 34 4d 4e 8a 5f 43 52 53 0b b2 01 46 34 4d 58 8a  4MN._CRS...F4MX.
  5da0: 5f 43 52 53 0b ba 01 46 34 4c 4e 14 41 12 5f 49  _CRS...F4LN.A._I
  5db0: 4e 49 08 a0 11 92 5c 4f 53 49 46 5c 2e 5f 53 42  NI....\OSIF\._SB
  5dc0: 5f 5f 49 4e 49 79 54 4f 55 44 0a 1b 60 70 60 5c  __INIyTOUD..`p`\
  5dd0: 4d 45 4d 58 70 60 58 58 4d 4e 72 74 58 58 4d 58  MEMXp`XXMNrtXXMX
  5de0: 58 58 4d 4e 00 0a 01 58 58 4c 4e a0 15 92 93 7b  XXMN...XXLN....{
  5df0: 5c 54 50 4d 50 0a 01 00 0a 01 70 0a 00 46 34 4c  \TPMP.....p..F4L
  5e00: 4e a0 10 7b 50 41 4d 31 0a 03 00 70 0a 00 43 30  N..{PAM1...p..C0
  5e10: 4c 4e a0 10 7b 50 41 4d 31 0a 30 00 70 0a 00 43  LN..{PAM1.0.p..C
  5e20: 34 4c 4e a0 10 7b 50 41 4d 32 0a 03 00 70 0a 00  4LN..{PAM2...p..
  5e30: 43 38 4c 4e a0 10 7b 50 41 4d 32 0a 30 00 70 0a  C8LN..{PAM2.0.p.
  5e40: 00 43 43 4c 4e a0 10 7b 50 41 4d 33 0a 03 00 70  .CCLN..{PAM3...p
  5e50: 0a 00 44 30 4c 4e a0 10 7b 50 41 4d 33 0a 30 00  ..D0LN..{PAM3.0.
  5e60: 70 0a 00 44 34 4c 4e a0 10 7b 50 41 4d 34 0a 03  p..D4LN..{PAM4..
  5e70: 00 70 0a 00 44 38 4c 4e a0 10 7b 50 41 4d 34 0a  .p..D8LN..{PAM4.
  5e80: 30 00 70 0a 00 44 43 4c 4e a0 10 7b 50 41 4d 35  0.p..DCLN..{PAM5
  5e90: 0a 03 00 70 0a 00 45 30 4c 4e a0 10 7b 50 41 4d  ...p..E0LN..{PAM
  5ea0: 35 0a 30 00 70 0a 00 45 34 4c 4e a0 10 7b 50 41  5.0.p..E4LN..{PA
  5eb0: 4d 36 0a 03 00 70 0a 00 45 38 4c 4e a0 10 7b 50  M6...p..E8LN..{P
  5ec0: 41 4d 36 0a 30 00 70 0a 00 45 43 4c 4e 5b 01 4d  AM6.0.p..ECLN[.M
  5ed0: 44 47 53 07 08 56 44 45 45 0a 01 08 56 44 44 41  DGS..VDEE...VDDA
  5ee0: 11 03 0a 02 8d 56 44 44 41 0a 00 56 55 50 43 8d  .....VDDA..VUPC.
  5ef0: 56 44 44 41 0a 01 56 51 44 4c 8d 56 44 44 41 0a  VDDA..VQDL.VDDA.
  5f00: 02 56 51 44 43 8d 56 44 44 41 0a 03 56 51 44 54  .VQDC.VDDA..VQDT
  5f10: 8d 56 44 44 41 0a 04 56 51 44 44 8d 56 44 44 41  .VDDA..VQDD.VDDA
  5f20: 0a 05 56 53 44 4c 8d 56 44 44 41 0a 06 56 53 44  ..VSDL.VDDA..VSD
  5f30: 43 8d 56 44 44 41 0a 07 56 53 44 54 8d 56 44 44  C.VDDA..VSDT.VDD
  5f40: 41 0a 08 56 53 44 44 8d 56 44 44 41 0a 0a 4d 53  A..VSDD.VDDA..MS
  5f50: 57 54 8d 56 44 44 41 0a 0b 56 57 53 54 5b 82 44  WT.VDDA..VWST[.D
  5f60: 41 56 49 44 5f 08 5f 41 44 52 0c 00 00 02 00 08  AVID_._ADR......
  5f70: 52 49 44 5f 0a 00 5b 80 56 50 43 47 02 0a 00 0b  RID_..[.VPCG....
  5f80: 00 01 5b 81 0e 56 50 43 47 03 00 40 6a 56 50 57  ..[..VPCG..@jVPW
  5f90: 52 20 08 5f 53 33 44 0a 03 14 35 5f 49 4e 49 00  R ._S3D...5_INI.
  5fa0: 5c 56 55 50 53 0a 02 70 5c 56 43 44 4c 56 51 44  \VUPS..p\VCDLVQD
  5fb0: 4c 70 5c 56 43 44 43 56 51 44 43 70 5c 56 43 44  Lp\VCDCVQDCp\VCD
  5fc0: 54 56 51 44 54 70 5c 56 43 44 44 56 51 44 44 14  TVQDTp\VCDDVQDD.
  5fd0: 07 5f 50 53 30 00 a3 14 07 5f 50 53 31 00 a3 14  ._PS0...._PS1...
  5fe0: 07 5f 50 53 32 00 a3 14 07 5f 50 53 33 00 a3 14  ._PS2...._PS3...
  5ff0: 1e 56 53 57 54 00 70 5c 56 45 56 54 0a 05 60 7b  .VSWT.p\VEVT..`{
  6000: 0a 0f 60 61 a0 09 61 41 53 57 54 61 0a 01 14 45  ..`a..aASWTa...E
  6010: 08 56 4c 4f 43 01 a0 4d 07 93 68 5c 2f 03 5f 53  .VLOC..M..h\/._S
  6020: 42 5f 4c 49 44 5f 5f 4c 49 44 5c 56 53 4c 44 68  B_LID__LID\VSLDh
  6030: a0 43 06 93 56 50 57 52 0a 00 a0 3f 68 70 5c 56  .C..VPWR...?hp\V
  6040: 45 56 54 0a 01 60 a0 13 5c 57 58 50 46 86 5c 2e  EVT..`..\WXPF.\.
  6050: 5f 53 42 5f 50 43 49 30 0a 00 a1 1a a0 18 5c 57  _SB_PCI0......\W
  6060: 4e 54 46 86 5c 2f 03 5f 53 42 5f 50 43 49 30 56  NTF.\/._SB_PCI0V
  6070: 49 44 5f 0a 00 5b 22 0b ee 02 a1 0a 70 5c 56 45  ID_..[".....p\VE
  6080: 56 54 0a 02 60 7b 0a 0f 60 61 a0 09 61 41 53 57  VT..`{..`a..aASW
  6090: 54 61 0a 00 14 47 07 5f 44 4f 53 01 a0 3a 93 68  Ta...G._DOS..:.h
  60a0: 0a 02 70 0a 14 60 a2 30 60 76 60 5b 23 4d 44 47  ..p..`.0`v`[#MDG
  60b0: 53 ff ff a0 19 93 0a 00 4d 53 57 54 70 0a 01 4d  S.......MSWTp..M
  60c0: 53 57 54 70 0a 00 60 70 68 56 44 45 45 5b 27 4d  SWTp..`phVDEE['M
  60d0: 44 47 53 5b 22 0a c8 a1 34 5b 23 4d 44 47 53 ff  DGS["...4[#MDGS.
  60e0: ff a0 0f 93 56 44 45 45 0a 02 70 0a 00 4d 53 57  ....VDEE..p..MSW
  60f0: 54 a0 0c 94 68 0a 02 70 0a 01 56 44 45 45 a1 07  T...h..p..VDEE..
  6100: 70 68 56 44 45 45 5b 27 4d 44 47 53 14 13 5f 44  phVDEE['MDGS.._D
  6110: 4f 44 00 a4 12 0b 03 0b 00 01 0b 00 03 0b 00 04  OD..............
  6120: 14 4c 0b 41 53 57 54 02 a0 14 93 0a 01 56 44 45  .L.ASWT......VDE
  6130: 45 7b 0a 01 69 61 5c 56 53 44 53 68 61 a1 4f 09  E{..ia\VSDSha.O.
  6140: 70 0a 14 60 a2 41 08 60 76 60 5b 23 4d 44 47 53  p..`.A.`v`[#MDGS
  6150: ff ff a0 49 06 93 0a 00 4d 53 57 54 70 0a 00 60  ...I....MSWTp..`
  6160: a0 0d 7b 0a 01 69 00 70 0a 01 56 55 50 43 a1 08  ..{..i.p..VUPC..
  6170: 70 0a 00 56 55 50 43 a0 0d 7b 0a 01 68 00 70 0a  p..VUPC..{..h.p.
  6180: 01 56 51 44 4c a1 08 70 0a 00 56 51 44 4c a0 0d  .VQDL..p..VQDL..
  6190: 7b 0a 02 68 00 70 0a 01 56 51 44 43 a1 08 70 0a  {..h.p..VQDC..p.
  61a0: 00 56 51 44 43 a0 0d 7b 0a 08 68 00 70 0a 01 56  .VQDC..{..h.p..V
  61b0: 51 44 44 a1 08 70 0a 00 56 51 44 44 5b 27 4d 44  QDD..p..VQDD['MD
  61c0: 47 53 5b 22 0a c8 a0 0d 7b 0a 02 69 00 86 56 49  GS["....{..i..VI
  61d0: 44 5f 0a 81 a1 08 86 56 49 44 5f 0a 80 5b 82 48  D_.....VID_..[.H
  61e0: 06 4c 43 44 30 08 5f 41 44 52 0b 00 04 14 1c 5f  .LCD0._ADR....._
  61f0: 44 43 53 00 5c 56 55 50 53 0a 00 a0 09 5c 56 43  DCS.\VUPS....\VC
  6200: 44 4c a4 0a 1f a1 04 a4 0a 1d 14 0b 5f 44 47 53  DL.........._DGS
  6210: 00 a4 56 51 44 4c 14 30 5f 44 53 53 01 7b 68 0a  ..VQDL.0_DSS.{h.
  6220: 01 56 53 44 4c a0 21 7b 68 0c 00 00 00 80 00 a0  .VSDL.!{h.......
  6230: 0f 7b 68 0c 00 00 00 40 00 44 53 57 54 0a 02 a1  .{h....@.DSWT...
  6240: 07 44 53 57 54 0a 01 5b 82 40 08 43 52 54 30 08  .DSWT..[.@.CRT0.
  6250: 5f 41 44 52 0b 00 01 14 34 5f 44 43 53 00 5c 56  _ADR....4_DCS.\V
  6260: 55 50 53 0a 01 a0 15 5c 56 43 53 53 a0 09 5c 56  UPS....\VCSS..\V
  6270: 43 44 43 a4 0a 1f a1 04 a4 0a 1d a1 10 a0 09 5c  CDC............\
  6280: 56 43 44 43 a4 0a 0f a1 04 a4 0a 0d 14 0b 5f 44  VCDC.........._D
  6290: 47 53 00 a4 56 51 44 43 14 30 5f 44 53 53 01 7b  GS..VQDC.0_DSS.{
  62a0: 68 0a 01 56 53 44 43 a0 21 7b 68 0c 00 00 00 80  h..VSDC.!{h.....
  62b0: 00 a0 0f 7b 68 0c 00 00 00 40 00 44 53 57 54 0a  ...{h....@.DSWT.
  62c0: 02 a1 07 44 53 57 54 0a 01 5b 82 48 06 44 56 49  ...DSWT..[.H.DVI
  62d0: 30 08 5f 41 44 52 0b 00 03 14 1c 5f 44 43 53 00  0._ADR....._DCS.
  62e0: 5c 56 55 50 53 0a 00 a0 09 5c 56 43 44 44 a4 0a  \VUPS....\VCDD..
  62f0: 1f a1 04 a4 0a 1d 14 0b 5f 44 47 53 00 a4 56 51  ........_DGS..VQ
  6300: 44 44 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 44  DD.0_DSS.{h..VSD
  6310: 44 a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 0c  D.!{h........{h.
  6320: 00 00 00 40 00 44 53 57 54 0a 02 a1 07 44 53 57  ...@.DSWT....DSW
  6330: 54 0a 01 14 3f 44 53 57 54 01 a0 09 56 53 44 4c  T...?DSWT...VSDL
  6340: 70 0a 01 60 a1 05 70 0a 00 60 a0 0a 56 53 44 43  p..`..p..`..VSDC
  6350: 7d 0a 02 60 60 a0 0a 56 53 44 44 7d 0a 08 60 60  }..``..VSDD}..``
  6360: a0 0f 60 a0 0c 56 55 50 43 5c 56 53 44 53 60 68  ..`..VUPC\VSDS`h
  6370: a1 02 a3 5b 82 4a 51 41 47 50 5f 08 5f 41 44 52  ...[.JQAGP_._ADR
  6380: 0c 00 00 01 00 08 5f 53 33 44 0a 03 08 52 49 44  ......_S3D...RID
  6390: 5f 0a 00 08 4c 41 52 54 12 2a 02 12 13 04 0b ff  _...LART.*......
  63a0: ff 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12  ...\._SB_LNKA...
  63b0: 13 04 0b ff ff 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b  .......\._SB_LNK
  63c0: 42 0a 00 08 41 41 52 54 12 1a 02 12 0b 04 0b ff  B...AART........
  63d0: ff 0a 00 0a 00 0a 10 12 0b 04 0b ff ff 0a 01 0a  ................
  63e0: 00 0a 11 14 19 5f 50 52 54 00 a0 0b 5c 47 50 49  ....._PRT...\GPI
  63f0: 43 a4 41 41 52 54 a1 06 a4 4c 41 52 54 5b 01 4d  C.AART...LART[.M
  6400: 44 47 53 07 08 56 44 45 45 0a 01 08 56 44 44 41  DGS..VDEE...VDDA
  6410: 11 03 0a 02 8d 56 44 44 41 0a 00 56 55 50 43 8d  .....VDDA..VUPC.
  6420: 56 44 44 41 0a 01 56 51 44 4c 8d 56 44 44 41 0a  VDDA..VQDL.VDDA.
  6430: 02 56 51 44 43 8d 56 44 44 41 0a 03 56 51 44 54  .VQDC.VDDA..VQDT
  6440: 8d 56 44 44 41 0a 04 56 51 44 44 8d 56 44 44 41  .VDDA..VQDD.VDDA
  6450: 0a 05 56 53 44 4c 8d 56 44 44 41 0a 06 56 53 44  ..VSDL.VDDA..VSD
  6460: 43 8d 56 44 44 41 0a 07 56 53 44 54 8d 56 44 44  C.VDDA..VSDT.VDD
  6470: 41 0a 08 56 53 44 44 8d 56 44 44 41 0a 0a 4d 53  A..VSDD.VDDA..MS
  6480: 57 54 8d 56 44 44 41 0a 0b 56 57 53 54 5b 82 40  WT.VDDA..VWST[.@
  6490: 40 56 49 44 5f 08 5f 41 44 52 0a 00 5b 80 56 50  @VID_._ADR..[.VP
  64a0: 43 47 02 0a 00 0b 00 01 5b 81 0e 56 50 43 47 03  CG......[..VPCG.
  64b0: 00 40 2a 56 50 57 52 20 08 5f 53 33 44 0a 03 14  .@*VPWR ._S3D...
  64c0: 35 5f 49 4e 49 00 5c 56 55 50 53 0a 02 70 5c 56  5_INI.\VUPS..p\V
  64d0: 43 44 4c 56 51 44 4c 70 5c 56 43 44 43 56 51 44  CDLVQDLp\VCDCVQD
  64e0: 43 70 5c 56 43 44 54 56 51 44 54 70 5c 56 43 44  Cp\VCDTVQDTp\VCD
  64f0: 44 56 51 44 44 14 07 5f 50 53 30 00 a3 14 07 5f  DVQDD.._PS0...._
  6500: 50 53 31 00 a3 14 07 5f 50 53 32 00 a3 14 07 5f  PS1...._PS2...._
  6510: 50 53 33 00 a3 14 1e 56 53 57 54 00 70 5c 56 45  PS3....VSWT.p\VE
  6520: 56 54 0a 05 60 7b 0a 0f 60 61 a0 09 61 41 53 57  VT..`{..`a..aASW
  6530: 54 61 0a 01 14 40 05 56 4c 4f 43 01 a0 48 04 93  Ta...@.VLOC..H..
  6540: 68 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44  h\/._SB_LID__LID
  6550: 5c 56 53 4c 44 68 a0 2e 93 56 50 57 52 0a 00 a0  \VSLDh...VPWR...
  6560: 0b 68 70 5c 56 45 56 54 0a 01 60 a1 0a 70 5c 56  .hp\VEVT..`..p\V
  6570: 45 56 54 0a 02 60 7b 0a 0f 60 61 a0 09 61 41 53  EVT..`{..`a..aAS
  6580: 57 54 61 0a 00 14 47 07 5f 44 4f 53 01 a0 3a 93  WTa...G._DOS..:.
  6590: 68 0a 02 70 0a 14 60 a2 30 60 76 60 5b 23 4d 44  h..p..`.0`v`[#MD
  65a0: 47 53 ff ff a0 19 93 0a 00 4d 53 57 54 70 0a 01  GS.......MSWTp..
  65b0: 4d 53 57 54 70 0a 00 60 70 68 56 44 45 45 5b 27  MSWTp..`phVDEE['
  65c0: 4d 44 47 53 5b 22 0a c8 a1 34 5b 23 4d 44 47 53  MDGS["...4[#MDGS
  65d0: ff ff a0 0f 93 56 44 45 45 0a 02 70 0a 00 4d 53  .....VDEE..p..MS
  65e0: 57 54 a0 0c 94 68 0a 02 70 0a 01 56 44 45 45 a1  WT...h..p..VDEE.
  65f0: 07 70 68 56 44 45 45 5b 27 4d 44 47 53 14 13 5f  .phVDEE['MDGS.._
  6600: 44 4f 44 00 a4 12 0b 03 0b 00 01 0b 10 02 0b 10  DOD.............
  6610: 01 14 4c 0b 41 53 57 54 02 a0 14 93 0a 01 56 44  ..L.ASWT......VD
  6620: 45 45 7b 0a 01 69 61 5c 56 53 44 53 68 61 a1 4f  EE{..ia\VSDSha.O
  6630: 09 70 0a 14 60 a2 41 08 60 76 60 5b 23 4d 44 47  .p..`.A.`v`[#MDG
  6640: 53 ff ff a0 49 06 93 0a 00 4d 53 57 54 70 0a 00  S...I....MSWTp..
  6650: 60 a0 0d 7b 0a 01 69 00 70 0a 01 56 55 50 43 a1  `..{..i.p..VUPC.
  6660: 08 70 0a 00 56 55 50 43 a0 0d 7b 0a 01 68 00 70  .p..VUPC..{..h.p
  6670: 0a 01 56 51 44 4c a1 08 70 0a 00 56 51 44 4c a0  ..VQDL..p..VQDL.
  6680: 0d 7b 0a 02 68 00 70 0a 01 56 51 44 43 a1 08 70  .{..h.p..VQDC..p
  6690: 0a 00 56 51 44 43 a0 0d 7b 0a 08 68 00 70 0a 01  ..VQDC..{..h.p..
  66a0: 56 51 44 44 a1 08 70 0a 00 56 51 44 44 5b 27 4d  VQDD..p..VQDD['M
  66b0: 44 47 53 5b 22 0a c8 a0 0d 7b 0a 02 69 00 86 56  DGS["....{..i..V
  66c0: 49 44 5f 0a 81 a1 08 86 56 49 44 5f 0a 80 5b 82  ID_.....VID_..[.
  66d0: 43 09 4c 43 44 30 08 5f 41 44 52 0b 10 01 14 1c  C.LCD0._ADR.....
  66e0: 5f 44 43 53 00 5c 56 55 50 53 0a 00 a0 09 5c 56  _DCS.\VUPS....\V
  66f0: 43 44 4c a4 0a 1f a1 04 a4 0a 1d 14 2a 5f 44 44  CDL.........*_DD
  6700: 43 01 5c 56 44 44 43 a0 0b 93 68 0a 01 a4 5c 44  C.\VDDC...h...\D
  6710: 44 43 31 a1 12 a0 0b 93 68 0a 02 a4 5c 44 44 43  DC1.....h...\DDC
  6720: 32 a1 04 a4 0a 00 14 0b 5f 44 47 53 00 a4 56 51  2......._DGS..VQ
  6730: 44 4c 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 44  DL.0_DSS.{h..VSD
  6740: 4c a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 0c  L.!{h........{h.
  6750: 00 00 00 40 00 44 53 57 54 0a 02 a1 07 44 53 57  ...@.DSWT....DSW
  6760: 54 0a 01 5b 82 40 08 43 52 54 30 08 5f 41 44 52  T..[.@.CRT0._ADR
  6770: 0b 00 01 14 34 5f 44 43 53 00 5c 56 55 50 53 0a  ....4_DCS.\VUPS.
  6780: 01 a0 15 5c 56 43 53 53 a0 09 5c 56 43 44 43 a4  ...\VCSS..\VCDC.
  6790: 0a 1f a1 04 a4 0a 1d a1 10 a0 09 5c 56 43 44 43  ...........\VCDC
  67a0: a4 0a 0f a1 04 a4 0a 0d 14 0b 5f 44 47 53 00 a4  .........._DGS..
  67b0: 56 51 44 43 14 30 5f 44 53 53 01 7b 68 0a 01 56  VQDC.0_DSS.{h..V
  67c0: 53 44 43 a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b  SDC.!{h........{
  67d0: 68 0c 00 00 00 40 00 44 53 57 54 0a 02 a1 07 44  h....@.DSWT....D
  67e0: 53 57 54 0a 01 5b 82 48 06 44 56 49 30 08 5f 41  SWT..[.H.DVI0._A
  67f0: 44 52 0b 10 02 14 1c 5f 44 43 53 00 5c 56 55 50  DR....._DCS.\VUP
  6800: 53 0a 00 a0 09 5c 56 43 44 44 a4 0a 1f a1 04 a4  S....\VCDD......
  6810: 0a 1d 14 0b 5f 44 47 53 00 a4 56 51 44 44 14 30  ...._DGS..VQDD.0
  6820: 5f 44 53 53 01 7b 68 0a 01 56 53 44 44 a0 21 7b  _DSS.{h..VSDD.!{
  6830: 68 0c 00 00 00 80 00 a0 0f 7b 68 0c 00 00 00 40  h........{h....@
  6840: 00 44 53 57 54 0a 02 a1 07 44 53 57 54 0a 01 14  .DSWT....DSWT...
  6850: 3f 44 53 57 54 01 a0 09 56 53 44 4c 70 0a 01 60  ?DSWT...VSDLp..`
  6860: a1 05 70 0a 00 60 a0 0a 56 53 44 43 7d 0a 02 60  ..p..`..VSDC}..`
  6870: 60 a0 0a 56 53 44 44 7d 0a 08 60 60 a0 0f 60 a0  `..VSDD}..``..`.
  6880: 0c 56 55 50 43 5c 56 53 44 53 60 68 a1 02 a3 5b  .VUPC\VSDS`h...[
  6890: 82 47 11 45 58 50 30 08 5f 41 44 52 0c 00 00 1c  .G.EXP0._ADR....
  68a0: 00 08 52 49 44 5f 0a 00 5b 80 50 30 43 53 02 0a  ..RID_..[.P0CS..
  68b0: 00 0b 00 01 5b 81 3b 50 30 43 53 03 00 40 2d 41  ....[.;P0CS..@-A
  68c0: 42 50 5f 01 00 02 50 44 43 5f 01 00 02 50 44 53  BP_...PDC_...PDS
  68d0: 5f 01 00 01 00 28 52 49 44 30 10 50 53 50 30 01  _....(RID0.PSP0.
  68e0: 50 50 50 30 01 00 46 3e 00 06 48 50 43 53 01 00  PPP0..F>..HPCS..
  68f0: 01 08 5f 50 52 57 12 06 02 0a 09 0a 04 08 4c 50  .._PRW........LP
  6900: 52 54 12 43 05 04 12 13 04 0b ff ff 0a 00 5c 2e  RT.C..........\.
  6910: 5f 53 42 5f 4c 4e 4b 41 0a 00 12 13 04 0b ff ff  _SB_LNKA........
  6920: 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 13  ..\._SB_LNKB....
  6930: 04 0b ff ff 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 43  ......\._SB_LNKC
  6940: 0a 00 12 13 04 0b ff ff 0a 03 5c 2e 5f 53 42 5f  ..........\._SB_
  6950: 4c 4e 4b 44 0a 00 08 41 50 52 54 12 32 04 12 0b  LNKD...APRT.2...
  6960: 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ff ff  ................
  6970: 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 0a 00  ................
  6980: 0a 12 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 14 19  ................
  6990: 5f 50 52 54 00 a0 0b 5c 47 50 49 43 a4 41 50 52  _PRT...\GPIC.APR
  69a0: 54 a1 06 a4 4c 50 52 54 5b 82 44 0f 45 58 50 31  T...LPRT[.D.EXP1
  69b0: 08 5f 41 44 52 0c 01 00 1c 00 08 52 49 44 5f 0a  ._ADR......RID_.
  69c0: 00 5b 80 50 31 43 53 02 0a 00 0b 00 01 5b 81 18  .[.P1CS......[..
  69d0: 50 31 43 53 03 00 40 30 52 49 44 31 10 50 53 50  P1CS..@0RID1.PSP
  69e0: 31 01 50 50 50 31 01 08 5f 50 52 57 12 06 02 0a  1.PPP1.._PRW....
  69f0: 09 0a 04 08 4c 50 52 54 12 43 05 04 12 13 04 0b  ....LPRT.C......
  6a00: ff ff 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00  ....\._SB_LNKB..
  6a10: 12 13 04 0b ff ff 0a 01 5c 2e 5f 53 42 5f 4c 4e  ........\._SB_LN
  6a20: 4b 43 0a 00 12 13 04 0b ff ff 0a 02 5c 2e 5f 53  KC..........\._S
  6a30: 42 5f 4c 4e 4b 44 0a 00 12 13 04 0b ff ff 0a 03  B_LNKD..........
  6a40: 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 08 41 50 52  \._SB_LNKA...APR
  6a50: 54 12 32 04 12 0b 04 0b ff ff 0a 00 0a 00 0a 11  T.2.............
  6a60: 12 0b 04 0b ff ff 0a 01 0a 00 0a 12 12 0b 04 0b  ................
  6a70: ff ff 0a 02 0a 00 0a 13 12 0b 04 0b ff ff 0a 03  ................
  6a80: 0a 00 0a 10 14 19 5f 50 52 54 00 a0 0b 5c 47 50  ......_PRT...\GP
  6a90: 49 43 a4 41 50 52 54 a1 06 a4 4c 50 52 54 5b 82  IC.APRT...LPRT[.
  6aa0: 46 13 45 58 50 32 08 5f 41 44 52 0c 02 00 1c 00  F.EXP2._ADR.....
  6ab0: 08 52 49 44 5f 0a 00 08 58 43 50 46 0a 00 5b 80  .RID_...XCPF..[.
  6ac0: 50 32 43 53 02 0a 00 0b 00 01 5b 81 3b 50 32 43  P2CS......[.;P2C
  6ad0: 53 03 00 40 2d 41 42 50 5f 01 00 02 50 44 43 5f  S..@-ABP_...PDC_
  6ae0: 01 00 02 50 44 53 5f 01 00 01 00 28 52 49 44 32  ...PDS_....(RID2
  6af0: 10 50 53 50 32 01 50 50 50 32 01 00 46 3e 00 06  .PSP2.PPP2..F>..
  6b00: 48 50 43 53 01 00 01 08 5f 50 52 57 12 06 02 0a  HPCS...._PRW....
  6b10: 09 0a 04 08 4c 50 52 54 12 43 05 04 12 13 04 0b  ....LPRT.C......
  6b20: ff ff 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 43 0a 00  ....\._SB_LNKC..
  6b30: 12 13 04 0b ff ff 0a 01 5c 2e 5f 53 42 5f 4c 4e  ........\._SB_LN
  6b40: 4b 44 0a 00 12 13 04 0b ff ff 0a 02 5c 2e 5f 53  KD..........\._S
  6b50: 42 5f 4c 4e 4b 41 0a 00 12 13 04 0b ff ff 0a 03  B_LNKA..........
  6b60: 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 08 41 50 52  \._SB_LNKB...APR
  6b70: 54 12 32 04 12 0b 04 0b ff ff 0a 00 0a 00 0a 12  T.2.............
  6b80: 12 0b 04 0b ff ff 0a 01 0a 00 0a 13 12 0b 04 0b  ................
  6b90: ff ff 0a 02 0a 00 0a 10 12 0b 04 0b ff ff 0a 03  ................
  6ba0: 0a 00 0a 11 14 19 5f 50 52 54 00 a0 0b 5c 47 50  ......_PRT...\GP
  6bb0: 49 43 a4 41 50 52 54 a1 06 a4 4c 50 52 54 5b 82  IC.APRT...LPRT[.
  6bc0: 16 45 58 55 50 08 5f 41 44 52 0a 00 14 09 5f 52  .EXUP._ADR...._R
  6bd0: 4d 56 00 a4 0a 01 5b 82 42 10 45 58 50 33 08 5f  MV....[.B.EXP3._
  6be0: 41 44 52 0c 03 00 1c 00 08 52 49 44 5f 0a 00 5b  ADR......RID_..[
  6bf0: 80 50 33 43 53 02 0a 00 0b 00 01 5b 81 18 50 33  .P3CS......[..P3
  6c00: 43 53 03 00 40 30 52 49 44 33 10 50 53 50 33 01  CS..@0RID3.PSP3.
  6c10: 50 50 50 33 01 08 5f 50 52 57 12 06 02 0a 09 0a  PPP3.._PRW......
  6c20: 04 08 4c 50 52 54 12 43 05 04 12 13 04 0b ff ff  ..LPRT.C........
  6c30: 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 44 0a 00 12 13  ..\._SB_LNKD....
  6c40: 04 0b ff ff 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b 41  ......\._SB_LNKA
  6c50: 0a 00 12 13 04 0b ff ff 0a 02 5c 2e 5f 53 42 5f  ..........\._SB_
  6c60: 4c 4e 4b 42 0a 00 12 13 04 0b ff ff 0a 03 5c 2e  LNKB..........\.
  6c70: 5f 53 42 5f 4c 4e 4b 43 0a 00 08 41 50 52 54 12  _SB_LNKC...APRT.
  6c80: 32 04 12 0b 04 0b ff ff 0a 00 0a 00 0a 13 12 0b  2...............
  6c90: 04 0b ff ff 0a 01 0a 00 0a 10 12 0b 04 0b ff ff  ................
  6ca0: 0a 02 0a 00 0a 11 12 0b 04 0b ff ff 0a 03 0a 00  ................
  6cb0: 0a 12 14 19 5f 50 52 54 00 a0 0b 5c 47 50 49 43  ...._PRT...\GPIC
  6cc0: a4 41 50 52 54 a1 06 a4 4c 50 52 54 5b 82 0c 45  .APRT...LPRT[..E
  6cd0: 58 50 44 08 5f 41 44 52 0a 00 5b 82 4f 16 50 43  XPD._ADR..[.O.PC
  6ce0: 49 31 08 5f 41 44 52 0c 00 00 1e 00 08 5f 53 33  I1._ADR......_S3
  6cf0: 44 0a 02 08 52 49 44 5f 0a 00 08 4c 50 52 54 12  D...RID_...LPRT.
  6d00: 47 09 07 12 13 04 0b ff ff 0a 00 5c 2e 5f 53 42  G..........\._SB
  6d10: 5f 4c 4e 4b 41 0a 00 12 13 04 0b ff ff 0a 01 5c  _LNKA..........\
  6d20: 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 13 04 0b ff  ._SB_LNKB.......
  6d30: ff 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 43 0a 00 12  ...\._SB_LNKC...
  6d40: 15 04 0c ff ff 01 00 0a 00 5c 2e 5f 53 42 5f 4c  .........\._SB_L
  6d50: 4e 4b 41 0a 00 12 15 04 0c ff ff 02 00 0a 00 5c  NKA............\
  6d60: 2e 5f 53 42 5f 4c 4e 4b 46 0a 00 12 15 04 0c ff  ._SB_LNKF.......
  6d70: ff 02 00 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b 47 0a  .....\._SB_LNKG.
  6d80: 00 12 15 04 0c ff ff 08 00 0a 00 5c 2e 5f 53 42  ...........\._SB
  6d90: 5f 4c 4e 4b 45 0a 00 08 41 50 52 54 12 4f 05 07  _LNKE...APRT.O..
  6da0: 12 0b 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b  ................
  6db0: ff ff 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02  ................
  6dc0: 0a 00 0a 12 12 0d 04 0c ff ff 01 00 0a 00 0a 00  ................
  6dd0: 0a 10 12 0d 04 0c ff ff 02 00 0a 00 0a 00 0a 15  ................
  6de0: 12 0d 04 0c ff ff 02 00 0a 01 0a 00 0a 16 12 0d  ................
  6df0: 04 0c ff ff 08 00 0a 00 0a 00 0a 14 14 19 5f 50  .............._P
  6e00: 52 54 00 a0 0b 5c 47 50 49 43 a4 41 50 52 54 a1  RT...\GPIC.APRT.
  6e10: 06 a4 4c 50 52 54 08 5f 50 52 57 12 06 02 0a 0b  ..LPRT._PRW.....
  6e20: 0a 04 5b 82 27 43 44 42 53 08 5f 41 44 52 0a 00  ..[.'CDBS._ADR..
  6e30: 14 13 5f 53 33 44 00 a0 09 5c 57 4d 45 46 a4 0a  .._S3D...\WMEF..
  6e40: 02 a4 0a 03 08 5f 53 55 4e 0a 01 5b 82 41 b3 49  ....._SUN..[.A.I
  6e50: 44 45 30 08 5f 41 44 52 0c 01 00 1f 00 08 5f 53  DE0._ADR......_S
  6e60: 33 44 0a 03 08 52 49 44 5f 0a 00 5b 80 49 44 43  3D...RID_..[.IDC
  6e70: 53 02 0a 00 0b 00 01 5b 81 40 12 49 44 43 53 03  S......[.@.IDCS.
  6e80: 00 40 20 50 46 54 30 01 50 49 45 30 01 50 50 45  .@ PFT0.PIE0.PPE
  6e90: 30 01 50 44 54 30 01 50 46 54 31 01 50 49 45 31  0.PDT0.PFT1.PIE1
  6ea0: 01 50 50 45 31 01 50 44 54 31 01 50 52 43 30 02  .PPE1.PDT1.PRC0.
  6eb0: 00 02 50 49 53 30 02 50 53 49 45 01 50 49 44 45  ..PIS0.PSIE.PIDE
  6ec0: 01 53 46 54 30 01 53 49 45 30 01 53 50 45 30 01  .SFT0.SIE0.SPE0.
  6ed0: 53 44 54 30 01 53 46 54 31 01 53 49 45 31 01 53  SDT0.SFT1.SIE1.S
  6ee0: 50 45 31 01 53 44 54 31 01 53 52 43 30 02 00 02  PE1.SDT1.SRC0...
  6ef0: 53 49 53 30 02 53 53 49 45 01 53 49 44 45 01 50  SIS0.SSIE.SIDE.P
  6f00: 52 43 31 02 50 49 53 31 02 53 52 43 31 02 53 49  RC1.PIS1.SRC1.SI
  6f10: 53 31 02 00 18 50 53 44 30 01 50 53 44 31 01 53  S1...PSD0.PSD1.S
  6f20: 53 44 30 01 53 53 44 31 01 00 0c 50 43 54 30 02  SD0.SSD1...PCT0.
  6f30: 00 02 50 43 54 31 02 00 02 53 43 54 30 02 00 02  ..PCT1...SCT0...
  6f40: 53 43 54 31 02 00 02 00 40 04 50 43 42 30 01 50  SCT1....@.PCB0.P
  6f50: 43 42 31 01 53 43 42 30 01 53 43 42 31 01 50 43  CB1.SCB0.SCB1.PC
  6f60: 52 30 01 50 43 52 31 01 53 43 52 30 01 53 43 52  R0.PCR1.SCR0.SCR
  6f70: 31 01 00 02 57 52 50 50 01 00 01 46 50 42 30 01  1...WRPP...FPB0.
  6f80: 46 50 42 31 01 46 53 42 30 01 46 53 42 31 01 50  FPB1.FSB0.FSB1.P
  6f90: 53 49 47 02 53 53 49 47 02 5b 81 1f 49 44 43 53  SIG.SSIG.[..IDCS
  6fa0: 03 00 40 20 50 54 49 30 04 50 54 49 31 04 00 08  ..@ PTI0.PTI1...
  6fb0: 53 54 49 30 04 53 54 49 31 04 14 27 47 50 43 54  STI0.STI1..'GPCT
  6fc0: 04 a0 09 92 7d 68 69 00 a4 0a 00 a0 09 90 92 68  ....}hi........h
  6fd0: 69 a4 0b 84 03 a4 77 74 0a 09 72 6a 6b 00 00 0a  i.....wt..rjk...
  6fe0: 1e 00 14 2a 47 44 43 54 04 a0 06 92 68 a4 0a 00  ...*GDCT....h...
  6ff0: a0 05 69 a4 0a 14 a0 0c 6a a4 77 74 0a 04 6b 00  ..i.....j.wt..k.
  7000: 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e 00 14 32 4d  ....wt..k.....2M
  7010: 54 49 4d 02 70 0a 00 60 a0 07 68 7d 60 0a 01 60  TIM.p..`..h}`..`
  7020: a0 0b 92 95 68 0a 02 7d 60 0a 02 60 a0 08 92 69  ....h..}`..`...i
  7030: 7d 60 0a 04 60 a0 08 92 68 7d 60 0a 08 60 a4 60  }`..`...h}`..`.`
  7040: 14 1a 4d 49 53 50 01 a0 06 92 68 a4 0a 00 a0 09  ..MISP....h.....
  7050: 92 94 68 0a 02 a4 0a 01 a4 0a 02 14 1c 4d 52 43  ..h..........MRC
  7060: 54 01 a0 09 92 94 68 0a 02 a4 0a 00 a0 08 93 68  T.....h........h
  7070: 0a 03 a4 0a 01 a4 0a 03 5b 82 44 90 50 52 49 4d  ........[.D.PRIM
  7080: 08 5f 41 44 52 0a 00 08 42 47 54 4d 11 03 0a 14  ._ADR...BGTM....
  7090: 8a 42 47 54 4d 0a 00 47 54 50 30 8a 42 47 54 4d  .BGTM..GTP0.BGTM
  70a0: 0a 04 47 54 44 30 8a 42 47 54 4d 0a 08 47 54 50  ..GTD0.BGTM..GTP
  70b0: 31 8a 42 47 54 4d 0a 0c 47 54 44 31 8a 42 47 54  1.BGTM..GTD1.BGT
  70c0: 4d 0a 10 47 54 4d 46 08 42 50 49 30 0a 00 08 42  M..GTMF.BPI0...B
  70d0: 44 4d 30 0a 00 08 42 50 49 31 0a 00 08 42 44 4d  DM0...BPI1...BDM
  70e0: 31 0a 00 08 44 52 45 30 0a 00 08 44 52 45 31 0a  1...DRE0...DRE1.
  70f0: 00 08 44 49 50 30 0a 00 08 44 49 50 31 0a 00 14  ..DIP0...DIP1...
  7100: 4d 11 5f 47 54 4d 00 70 47 50 43 54 50 46 54 30  M._GTM.pGPCTPFT0
  7110: 50 44 54 30 50 49 53 30 50 52 43 30 47 54 50 30  PDT0PIS0PRC0GTP0
  7120: 70 47 44 43 54 50 53 44 30 46 50 42 30 50 43 42  pGDCTPSD0FPB0PCB
  7130: 30 50 43 54 30 47 54 44 30 a0 0f 92 47 54 44 30  0PCT0GTD0...GTD0
  7140: 70 47 54 50 30 47 54 44 30 a0 48 04 50 53 49 45  pGTP0GTD0.H.PSIE
  7150: 70 47 50 43 54 50 46 54 31 50 44 54 31 50 49 53  pGPCTPFT1PDT1PIS
  7160: 31 50 52 43 31 47 54 50 31 70 47 44 43 54 50 53  1PRC1GTP1pGDCTPS
  7170: 44 31 46 50 42 31 50 43 42 31 50 43 54 31 47 54  D1FPB1PCB1PCT1GT
  7180: 44 31 a0 0f 92 47 54 44 31 70 47 54 50 31 47 54  D1...GTD1pGTP1GT
  7190: 44 31 a1 0f 70 0a 00 47 54 50 31 70 0a 00 47 54  D1..p..GTP1p..GT
  71a0: 44 31 70 0a 00 47 54 4d 46 a0 10 50 53 44 30 7d  D1p..GTMF..PSD0}
  71b0: 47 54 4d 46 0a 01 47 54 4d 46 a0 1f 92 47 54 50  GTMF..GTMF...GTP
  71c0: 30 7d 47 54 4d 46 0a 01 47 54 4d 46 70 0a 78 47  0}GTMF..GTMFp.xG
  71d0: 54 50 30 70 0a 14 47 54 44 30 a0 10 50 49 45 30  TP0p..GTD0..PIE0
  71e0: 7d 47 54 4d 46 0a 02 47 54 4d 46 a0 10 50 53 44  }GTMF..GTMF..PSD
  71f0: 31 7d 47 54 4d 46 0a 04 47 54 4d 46 a0 10 50 49  1}GTMF..GTMF..PI
  7200: 45 31 7d 47 54 4d 46 0a 08 47 54 4d 46 7d 47 54  E1}GTMF..GTMF}GT
  7210: 4d 46 0a 10 47 54 4d 46 a4 42 47 54 4d 14 40 47  MF..GTMF.BGTM.@G
  7220: 5f 53 54 4d 03 8a 68 0a 00 53 54 50 30 8a 68 0a  _STM..h..STP0.h.
  7230: 04 53 54 44 30 8a 68 0a 08 53 54 50 31 8a 68 0a  .STD0.h..STP1.h.
  7240: 0c 53 54 44 31 8a 68 0a 10 53 54 4d 46 70 0a 00  .STD1.h..STMFp..
  7250: 44 52 45 30 70 0a 00 44 49 50 30 a0 47 24 93 87  DRE0p..DIP0.G$..
  7260: 69 0b 00 02 8b 69 0a 00 4d 30 30 30 8b 69 0a 62  i....i..M000.i.b
  7270: 4d 30 34 39 8b 69 0a 66 4d 30 35 31 8b 69 0a 6a  M049.i.fM051.i.j
  7280: 4d 30 35 33 8b 69 0a 7c 4d 30 36 32 8b 69 0a 7e  M053.i.|M062.i.~
  7290: 4d 30 36 33 8b 69 0a 80 4d 30 36 34 8b 69 0a 82  M063.i..M064.i..
  72a0: 4d 30 36 35 8b 69 0a 88 4d 30 36 38 8b 69 0a 9c  M065.i..M068.i..
  72b0: 4d 30 37 38 8b 69 0a ac 4d 30 38 36 8b 69 0a b0  M078.i..M086.i..
  72c0: 4d 30 38 38 8b 69 0a ee 4d 31 31 39 8b 69 0b 28  M088.i..M119.i.(
  72d0: 01 4d 31 34 38 a0 1f 93 7b 4d 31 34 38 0b 00 c0  .M148...{M148...
  72e0: 00 0b 00 40 a0 10 7b 4d 31 34 38 0a 04 00 70 0a  ...@..{M148...p.
  72f0: 01 44 52 45 30 a0 1b 7b 4d 30 38 36 0b 00 80 00  .DRE0..{M086....
  7300: a0 10 7b 4d 31 31 39 0a 01 00 70 0a 01 44 52 45  ..{M119...p..DRE
  7310: 30 a0 45 09 5c 57 39 38 46 70 5c 55 55 44 4d 4d  0.E.\W98Fp\UUDMM
  7320: 30 35 33 4d 30 38 38 53 54 44 30 a0 10 53 54 44  053M088STD0..STD
  7330: 30 7d 53 54 4d 46 0a 01 53 54 4d 46 a1 0c 7b 53  0}STMF..STMF..{S
  7340: 54 4d 46 0a fe 53 54 4d 46 70 5c 55 4d 44 4d 4d  TMF..STMFp\UMDMM
  7350: 30 35 33 4d 30 36 33 4d 30 36 32 4d 30 36 35 53  053M063M062M065S
  7360: 54 50 30 a0 20 92 53 54 50 30 70 5c 55 50 49 4f  TP0. .STP0p\UPIO
  7370: 4d 30 35 33 4d 30 36 34 4d 30 35 31 4d 30 36 38  M053M064M051M068
  7380: 53 54 50 30 a0 15 7b 4d 30 34 39 0b 00 08 00 7d  STP0..{M049....}
  7390: 53 54 4d 46 0a 02 53 54 4d 46 a1 0c 7b 53 54 4d  STMF..STMF..{STM
  73a0: 46 0a fd 53 54 4d 46 70 5c 44 50 49 4f 53 54 50  F..STMFp\DPIOSTP
  73b0: 30 7b 53 54 4d 46 0a 02 00 60 70 5c 44 55 44 4d  0{STMF...`p\DUDM
  73c0: 53 54 44 30 7b 53 54 4d 46 0a 01 00 61 a0 26 92  STD0{STMF...a.&.
  73d0: 95 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  73e0: 45 43 5f 5f 42 47 49 44 0a 00 0a 0c 70 0a 00 60  EC__BGID....p..`
  73f0: 70 0a ff 61 70 4d 54 49 4d 60 7b 4d 30 30 30 0b  p..apMTIM`{M000.
  7400: 00 80 00 50 54 49 30 70 4d 49 53 50 60 50 49 53  ...PTI0pMISP`PIS
  7410: 30 70 4d 52 43 54 60 50 52 43 30 a0 0c 93 61 0a  0pMRCT`PRC0...a.
  7420: ff 70 0a 00 50 53 44 30 a1 43 06 70 0a 01 50 53  .p..PSD0.C.p..PS
  7430: 44 30 a0 0c 92 94 61 0a 02 70 61 50 43 54 30 a1  D0....a..paPCT0.
  7440: 18 a0 0d 7b 61 0a 01 00 70 0a 01 50 43 54 30 a1  ...{a...p..PCT0.
  7450: 08 70 0a 02 50 43 54 30 a0 0d 92 95 61 0a 03 70  .p..PCT0....a..p
  7460: 0a 01 50 43 42 30 a1 08 70 0a 00 50 43 42 30 a0  ..PCB0..p..PCB0.
  7470: 0c 93 61 0a 05 70 0a 01 46 50 42 30 a1 08 70 0a  ..a..p..FPB0..p.
  7480: 00 46 50 42 30 70 0a 01 50 43 52 30 70 5c 46 44  .FPB0p..PCR0p\FD
  7490: 4d 41 60 61 42 44 4d 30 70 5c 46 50 49 4f 60 42  MA`aBDM0p\FPIO`B
  74a0: 50 49 30 a0 4a 1e 93 87 6a 0b 00 02 8b 6a 0a 00  PI0.J...j....j..
  74b0: 53 30 30 30 8b 6a 0a 62 53 30 34 39 8b 6a 0a 66  S000.j.bS049.j.f
  74c0: 53 30 35 31 8b 6a 0a 6a 53 30 35 33 8b 6a 0a 7c  S051.j.jS053.j.|
  74d0: 53 30 36 32 8b 6a 0a 7e 53 30 36 33 8b 6a 0a 80  S062.j.~S063.j..
  74e0: 53 30 36 34 8b 6a 0a 82 53 30 36 35 8b 6a 0a 88  S064.j..S065.j..
  74f0: 53 30 36 38 8b 6a 0a b0 53 30 38 38 a0 45 09 5c  S068.j..S088.E.\
  7500: 57 39 38 46 70 5c 55 55 44 4d 53 30 35 33 53 30  W98Fp\UUDMS053S0
  7510: 38 38 53 54 44 31 a0 10 53 54 44 31 7d 53 54 4d  88STD1..STD1}STM
  7520: 46 0a 04 53 54 4d 46 a1 0c 7b 53 54 4d 46 0a fb  F..STMF..{STMF..
  7530: 53 54 4d 46 70 5c 55 4d 44 4d 53 30 35 33 53 30  STMFp\UMDMS053S0
  7540: 36 33 53 30 36 32 53 30 36 35 53 54 50 31 a0 20  63S062S065STP1. 
  7550: 92 53 54 50 31 70 5c 55 50 49 4f 53 30 35 33 53  .STP1p\UPIOS053S
  7560: 30 36 34 53 30 35 31 53 30 36 38 53 54 50 31 a0  064S051S068STP1.
  7570: 15 7b 53 30 34 39 0b 00 08 00 7d 53 54 4d 46 0a  .{S049....}STMF.
  7580: 08 53 54 4d 46 a1 0c 7b 53 54 4d 46 0a f7 53 54  .STMF..{STMF..ST
  7590: 4d 46 70 5c 44 50 49 4f 53 54 50 31 7b 53 54 4d  MFp\DPIOSTP1{STM
  75a0: 46 0a 08 00 60 70 5c 44 55 44 4d 53 54 44 31 7b  F...`p\DUDMSTD1{
  75b0: 53 54 4d 46 0a 04 00 61 a0 3d 53 54 50 31 70 4d  STMF...a.=STP1pM
  75c0: 54 49 4d 60 7b 53 30 30 30 0b 00 80 00 50 54 49  TIM`{S000....PTI
  75d0: 31 a0 24 7b 53 54 4d 46 0a 10 00 70 4d 49 53 50  1.${STMF...pMISP
  75e0: 60 50 49 53 31 70 4d 52 43 54 60 50 52 43 31 70  `PIS1pMRCT`PRC1p
  75f0: 0a 01 50 53 49 45 a1 0f 70 0a 00 50 54 49 31 70  ..PSIE..p..PTI1p
  7600: 0a 00 50 53 49 45 a0 0c 93 61 0a ff 70 0a 00 50  ..PSIE...a..p..P
  7610: 53 44 31 a1 43 06 70 0a 01 50 53 44 31 a0 0c 92  SD1.C.p..PSD1...
  7620: 94 61 0a 02 70 61 50 43 54 31 a1 18 a0 0d 7b 61  .a..paPCT1....{a
  7630: 0a 01 00 70 0a 01 50 43 54 31 a1 08 70 0a 02 50  ...p..PCT1..p..P
  7640: 43 54 31 a0 0d 92 95 61 0a 03 70 0a 01 50 43 42  CT1....a..p..PCB
  7650: 31 a1 08 70 0a 00 50 43 42 31 a0 0c 93 61 0a 05  1..p..PCB1...a..
  7660: 70 0a 01 46 50 42 31 a1 08 70 0a 00 46 50 42 31  p..FPB1..p..FPB1
  7670: 70 0a 01 50 43 52 31 70 5c 46 44 4d 41 60 61 42  p..PCR1p\FDMA`aB
  7680: 44 4d 31 70 5c 46 50 49 4f 60 42 50 49 31 5b 82  DM1p\FPIO`BPI1[.
  7690: 4e 2e 4d 53 54 52 08 5f 41 44 52 0a 00 08 48 44  N.MSTR._ADR...HD
  76a0: 54 46 11 1f 0a 1c 02 00 00 00 00 a0 ef 00 00 00  TF..............
  76b0: 00 00 a0 f5 03 00 00 00 00 a0 ef 03 00 00 00 00  ................
  76c0: a0 ef 8c 48 44 54 46 0a 0f 48 44 4d 41 8c 48 44  ...HDTF..HDMA.HD
  76d0: 54 46 0a 16 48 50 49 4f 8c 48 44 54 46 0a 0d 48  TF..HPIO.HDTF..H
  76e0: 46 4c 43 08 45 52 54 46 11 26 0a 23 02 00 00 00  FLC.ERTF.&.#....
  76f0: 00 a0 ef 00 00 00 00 00 a0 f5 03 00 00 00 00 a0  ................
  7700: ef 03 00 00 00 00 a0 ef 5f 00 00 00 00 a0 ef 8c  ........_.......
  7710: 45 52 54 46 0a 0f 45 44 4d 41 8c 45 52 54 46 0a  ERTF..EDMA.ERTF.
  7720: 16 45 50 49 4f 8c 45 52 54 46 0a 0d 45 46 4c 43  .EPIO.ERTF..EFLC
  7730: 08 48 50 54 46 11 26 0a 23 02 00 00 00 00 a0 ef  .HPTF.&.#.......
  7740: 00 00 00 00 00 a0 f5 03 00 00 00 00 a0 ef 03 00  ................
  7750: 00 00 00 a0 ef 10 03 00 00 00 a0 ef 8c 48 50 54  .............HPT
  7760: 46 0a 0f 50 44 4d 41 8c 48 50 54 46 0a 16 50 50  F..PDMA.HPTF..PP
  7770: 49 4f 8c 48 50 54 46 0a 0d 50 46 4c 43 08 48 58  IO.HPTF..PFLC.HX
  7780: 54 46 11 2d 0a 2a 02 00 00 00 00 a0 ef 00 00 00  TF.-.*..........
  7790: 00 00 a0 f5 03 00 00 00 00 a0 ef 03 00 00 00 00  ................
  77a0: a0 ef 5f 00 00 00 00 a0 ef 10 03 00 00 00 a0 ef  .._.............
  77b0: 8c 48 58 54 46 0a 0f 58 44 4d 41 8c 48 58 54 46  .HXTF..XDMA.HXTF
  77c0: 0a 16 58 50 49 4f 8c 48 58 54 46 0a 0d 58 46 4c  ..XPIO.HXTF..XFL
  77d0: 43 08 49 44 54 46 11 11 0a 0e 03 00 00 00 00 a0  C.IDTF..........
  77e0: ef 03 00 00 00 00 a0 ef 8c 49 44 54 46 0a 01 49  .........IDTF..I
  77f0: 44 4d 41 8c 49 44 54 46 0a 08 49 50 49 4f 08 44  DMA.IDTF..IPIO.D
  7800: 44 54 46 11 1f 0a 1c 03 00 00 00 00 a0 ef 03 00  DTF.............
  7810: 00 00 00 a0 ef 00 00 00 00 00 a0 e3 00 00 00 00  ................
  7820: 00 a0 e3 8c 44 44 54 46 0a 01 44 44 4d 41 8c 44  ....DDTF..DDMA.D
  7830: 44 54 46 0a 08 44 50 49 4f 8c 44 44 54 46 0a 0f  DTF..DPIO.DDTF..
  7840: 44 54 41 54 8c 44 44 54 46 0a 16 44 54 46 54 14  DTAT.DDTF..DTFT.
  7850: 41 0b 5f 47 54 46 00 a0 22 5c 4f 53 53 53 70 0a  A._GTF.."\OSSSp.
  7860: e1 48 46 4c 43 70 0a e1 45 46 4c 43 70 0a e1 50  .HFLCp..EFLCp..P
  7870: 46 4c 43 70 0a e1 58 46 4c 43 a0 48 04 5e 5e 44  FLCp..XFLC.H.^^D
  7880: 52 45 30 a0 22 5e 5e 44 49 50 30 70 5e 5e 42 44  RE0."^^DIP0p^^BD
  7890: 4d 30 58 44 4d 41 70 5e 5e 42 50 49 30 58 50 49  M0XDMAp^^BPI0XPI
  78a0: 4f a4 48 58 54 46 a1 1c 70 5e 5e 42 44 4d 30 45  O.HXTF..p^^BDM0E
  78b0: 44 4d 41 70 5e 5e 42 50 49 30 45 50 49 4f a4 45  DMAp^^BPI0EPIO.E
  78c0: 52 54 46 a0 22 5e 5e 44 49 50 30 70 5e 5e 42 44  RTF."^^DIP0p^^BD
  78d0: 4d 30 50 44 4d 41 70 5e 5e 42 50 49 30 50 50 49  M0PDMAp^^BPI0PPI
  78e0: 4f a4 48 50 54 46 70 5e 5e 42 44 4d 30 48 44 4d  O.HPTFp^^BDM0HDM
  78f0: 41 70 5e 5e 42 50 49 30 48 50 49 4f a4 48 44 54  Ap^^BPI0HPIO.HDT
  7900: 46 08 5f 50 53 43 0a 00 14 1e 5f 50 53 30 00 70  F._PSC...._PS0.p
  7910: 5f 50 53 43 60 70 0a 00 5f 50 53 43 a0 0a 93 60  _PSC`p.._PSC...`
  7920: 0a 03 5c 46 49 53 50 14 0d 5f 50 53 33 00 70 0a  ..\FISP.._PS3.p.
  7930: 03 5f 50 53 43 14 1e 5f 45 4a 30 01 5c 2f 05 5f  ._PSC.._EJ0.\/._
  7940: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42  SB_PCI0LPC_EC__B
  7950: 45 4a 30 68 14 29 5f 53 54 41 00 a0 1d 5c 2f 05  EJ0h.)_STA...\/.
  7960: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  7970: 42 53 54 41 0a 01 a4 0a 0f a1 04 a4 0a 00 5b 82  BSTA..........[.
  7980: 4b 22 53 41 54 41 08 5f 41 44 52 0c 02 00 1f 00  K"SATA._ADR.....
  7990: 08 5f 53 33 44 0a 03 08 52 49 44 5f 0a 00 5b 80  ._S3D...RID_..[.
  79a0: 49 44 43 53 02 0a 00 0b 00 01 5b 81 40 12 49 44  IDCS......[.@.ID
  79b0: 43 53 03 00 40 20 50 46 54 30 01 50 49 45 30 01  CS..@ PFT0.PIE0.
  79c0: 50 50 45 30 01 50 44 54 30 01 50 46 54 31 01 50  PPE0.PDT0.PFT1.P
  79d0: 49 45 31 01 50 50 45 31 01 50 44 54 31 01 50 52  IE1.PPE1.PDT1.PR
  79e0: 43 30 02 00 02 50 49 53 30 02 50 53 49 45 01 50  C0...PIS0.PSIE.P
  79f0: 49 44 45 01 53 46 54 30 01 53 49 45 30 01 53 50  IDE.SFT0.SIE0.SP
  7a00: 45 30 01 53 44 54 30 01 53 46 54 31 01 53 49 45  E0.SDT0.SFT1.SIE
  7a10: 31 01 53 50 45 31 01 53 44 54 31 01 53 52 43 30  1.SPE1.SDT1.SRC0
  7a20: 02 00 02 53 49 53 30 02 53 53 49 45 01 53 49 44  ...SIS0.SSIE.SID
  7a30: 45 01 50 52 43 31 02 50 49 53 31 02 53 52 43 31  E.PRC1.PIS1.SRC1
  7a40: 02 53 49 53 31 02 00 18 50 53 44 30 01 50 53 44  .SIS1...PSD0.PSD
  7a50: 31 01 53 53 44 30 01 53 53 44 31 01 00 0c 50 43  1.SSD0.SSD1...PC
  7a60: 54 30 02 00 02 50 43 54 31 02 00 02 53 43 54 30  T0...PCT1...SCT0
  7a70: 02 00 02 53 43 54 31 02 00 02 00 40 04 50 43 42  ...SCT1....@.PCB
  7a80: 30 01 50 43 42 31 01 53 43 42 30 01 53 43 42 31  0.PCB1.SCB0.SCB1
  7a90: 01 50 43 52 30 01 50 43 52 31 01 53 43 52 30 01  .PCR0.PCR1.SCR0.
  7aa0: 53 43 52 31 01 00 02 57 52 50 50 01 00 01 46 50  SCR1...WRPP...FP
  7ab0: 42 30 01 46 50 42 31 01 46 53 42 30 01 46 53 42  B0.FPB1.FSB0.FSB
  7ac0: 31 01 50 53 49 47 02 53 53 49 47 02 5b 81 1f 49  1.PSIG.SSIG.[..I
  7ad0: 44 43 53 03 00 40 20 50 54 49 30 04 50 54 49 31  DCS..@ PTI0.PTI1
  7ae0: 04 00 08 53 54 49 30 04 53 54 49 31 04 14 27 47  ...STI0.STI1..'G
  7af0: 50 43 54 04 a0 09 92 7d 68 69 00 a4 0a 00 a0 09  PCT....}hi......
  7b00: 90 92 68 69 a4 0b 84 03 a4 77 74 0a 09 72 6a 6b  ..hi.....wt..rjk
  7b10: 00 00 0a 1e 00 14 2a 47 44 43 54 04 a0 06 92 68  ......*GDCT....h
  7b20: a4 0a 00 a0 05 69 a4 0a 14 a0 0c 6a a4 77 74 0a  .....i.....j.wt.
  7b30: 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e 00  .k.....wt..k....
  7b40: 14 32 4d 54 49 4d 02 70 0a 00 60 a0 07 68 7d 60  .2MTIM.p..`..h}`
  7b50: 0a 01 60 a0 0b 92 95 68 0a 02 7d 60 0a 02 60 a0  ..`....h..}`..`.
  7b60: 08 92 69 7d 60 0a 04 60 a0 08 92 68 7d 60 0a 08  ..i}`..`...h}`..
  7b70: 60 a4 60 14 1a 4d 49 53 50 01 a0 06 92 68 a4 0a  `.`..MISP....h..
  7b80: 00 a0 09 92 94 68 0a 02 a4 0a 01 a4 0a 02 14 1c  .....h..........
  7b90: 4d 52 43 54 01 a0 09 92 94 68 0a 02 a4 0a 00 a0  MRCT.....h......
  7ba0: 08 93 68 0a 03 a4 0a 01 a4 0a 03 5b 82 1d 53 4d  ..h........[..SM
  7bb0: 42 55 08 5f 41 44 52 0c 03 00 1f 00 08 5f 53 33  BU._ADR......_S3
  7bc0: 44 0a 03 08 52 49 44 5f 0a 00 5b 82 4a 0e 55 53  D...RID_..[.J.US
  7bd0: 42 30 08 5f 41 44 52 0c 00 00 1d 00 08 5f 53 33  B0._ADR......_S3
  7be0: 44 0a 02 08 52 49 44 5f 0a 00 5b 80 55 30 43 53  D...RID_..[.U0CS
  7bf0: 02 0a c4 0a 04 5b 81 0d 55 30 43 53 03 55 30 45  .....[..U0CS.U0E
  7c00: 4e 02 00 1e 08 5f 50 52 30 12 19 01 5c 2f 05 5f  N...._PR0...\/._
  7c10: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50  SB_PCI0LPC_EC__P
  7c20: 55 42 53 08 5f 50 52 31 12 19 01 5c 2f 05 5f 53  UBS._PR1...\/._S
  7c30: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 55  B_PCI0LPC_EC__PU
  7c40: 42 53 08 5f 50 52 32 12 19 01 5c 2f 05 5f 53 42  BS._PR2...\/._SB
  7c50: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 55 42  _PCI0LPC_EC__PUB
  7c60: 53 08 5f 50 52 57 12 1d 03 0a 03 0a 03 5c 2f 05  S._PRW.......\/.
  7c70: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  7c80: 50 55 42 53 14 31 5f 50 53 57 01 a0 09 68 70 0a  PUBS.1_PSW...hp.
  7c90: 03 55 30 45 4e a1 08 70 0a 00 55 30 45 4e 5c 2f  .U0EN..p..U0EN\/
  7ca0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  7cb0: 5f 50 4e 53 54 68 5b 82 4a 07 55 53 42 31 08 5f  _PNSTh[.J.USB1._
  7cc0: 41 44 52 0c 01 00 1d 00 08 5f 53 33 44 0a 02 08  ADR......_S3D...
  7cd0: 52 49 44 5f 0a 00 5b 80 55 31 43 53 02 0a c4 0a  RID_..[.U1CS....
  7ce0: 04 5b 81 0d 55 31 43 53 03 55 31 45 4e 02 00 1e  .[..U1CS.U1EN...
  7cf0: 08 5f 50 52 57 12 06 02 0a 04 0a 03 14 19 5f 50  ._PRW........._P
  7d00: 53 57 01 a0 09 68 70 0a 03 55 31 45 4e a1 08 70  SW...hp..U1EN..p
  7d10: 0a 00 55 31 45 4e 5b 82 1a 55 52 54 48 08 5f 41  ..U1EN[..URTH._A
  7d20: 44 52 0a 00 5b 82 0c 55 50 45 58 08 5f 41 44 52  DR..[..UPEX._ADR
  7d30: 0a 02 5b 82 4e 0e 55 53 42 32 08 5f 41 44 52 0c  ..[.N.USB2._ADR.
  7d40: 02 00 1d 00 08 5f 53 33 44 0a 02 08 52 49 44 5f  ....._S3D...RID_
  7d50: 0a 00 5b 80 55 32 43 53 02 0a c4 0a 04 5b 81 0d  ..[.U2CS.....[..
  7d60: 55 32 43 53 03 55 32 45 4e 02 00 1e 08 5f 50 52  U2CS.U2EN...._PR
  7d70: 30 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  0...\/._SB_PCI0L
  7d80: 50 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 31  PC_EC__PUBS._PR1
  7d90: 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  ...\/._SB_PCI0LP
  7da0: 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 32 12  C_EC__PUBS._PR2.
  7db0: 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  7dc0: 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 57 12 1d  _EC__PUBS._PRW..
  7dd0: 03 0a 0c 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 30  .....\/._SB_PCI0
  7de0: 4c 50 43 5f 45 43 5f 5f 50 55 42 53 14 19 5f 50  LPC_EC__PUBS.._P
  7df0: 53 57 01 a0 09 68 70 0a 03 55 32 45 4e a1 08 70  SW...hp..U2EN..p
  7e00: 0a 00 55 32 45 4e 5b 82 1a 55 52 54 48 08 5f 41  ..U2EN[..URTH._A
  7e10: 44 52 0a 00 5b 82 0c 55 50 44 4b 08 5f 41 44 52  DR..[..UPDK._ADR
  7e20: 0a 02 5b 82 16 55 53 42 33 08 5f 41 44 52 0c 03  ..[..USB3._ADR..
  7e30: 00 1d 00 08 52 49 44 5f 0a 00 5b 82 4e 0f 55 53  ....RID_..[.N.US
  7e40: 42 37 08 5f 41 44 52 0c 07 00 1d 00 08 5f 53 33  B7._ADR......_S3
  7e50: 44 0a 03 08 52 49 44 5f 0a 00 5b 80 55 37 43 53  D...RID_..[.U7CS
  7e60: 02 0a 60 0a 04 5b 81 14 55 37 43 53 03 00 10 50  ..`..[..U7CS...P
  7e70: 57 4b 49 01 50 57 55 43 06 00 09 08 5f 50 52 30  WKI.PWUC...._PR0
  7e80: 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  ...\/._SB_PCI0LP
  7e90: 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 31 12  C_EC__PUBS._PR1.
  7ea0: 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  7eb0: 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 32 12 19  _EC__PUBS._PR2..
  7ec0: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  7ed0: 45 43 5f 5f 50 55 42 53 14 14 5f 49 4e 49 00 70  EC__PUBS.._INI.p
  7ee0: 0a 01 50 57 4b 49 70 0a 0f 50 57 55 43 08 5f 50  ..PWKIp..PWUC._P
  7ef0: 52 57 12 1d 03 0a 0d 0a 03 5c 2f 05 5f 53 42 5f  RW.......\/._SB_
  7f00: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 55 42 53  PCI0LPC_EC__PUBS
  7f10: 5b 82 28 55 52 54 48 08 5f 41 44 52 0a 00 5b 82  [.(URTH._ADR..[.
  7f20: 0c 55 50 44 4b 08 5f 41 44 52 0a 06 5b 82 0c 55  .UPDK._ADR..[..U
  7f30: 50 45 58 08 5f 41 44 52 0a 04 5b 82 31 48 44 45  PEX._ADR..[.1HDE
  7f40: 46 08 5f 41 44 52 0c 00 00 1b 00 08 5f 53 33 44  F._ADR......_S3D
  7f50: 0a 03 08 52 49 44 5f 0a 00 08 5f 50 52 57 12 06  ...RID_..._PRW..
  7f60: 02 0a 05 0a 04 14 07 5f 50 53 57 01 a3 10 42 be  ......._PSW...B.
  7f70: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  7f80: 43 5f 5f 08 42 44 45 56 0a ff 08 42 53 54 53 0a  C__.BDEV...BSTS.
  7f90: 00 08 42 48 4b 45 0a 00 08 42 58 43 4e 0a 00 14  ..BHKE...BXCN...
  7fa0: 32 5f 51 32 43 00 a0 2b 93 42 53 54 53 0a 00 70  2_Q2C..+.BSTS..p
  7fb0: 42 47 49 44 0a 00 42 44 45 56 a0 0d 42 58 43 4e  BGID..BDEV..BXCN
  7fc0: 4e 58 52 45 42 44 45 56 a1 09 4e 42 52 45 42 44  NXREBDEV..NBREBD
  7fd0: 45 56 14 29 5f 51 32 44 00 70 42 47 49 44 0a 00  EV.)_Q2D.pBGID..
  7fe0: 42 44 45 56 a0 0d 42 58 43 4e 4e 58 52 43 42 44  BDEV..BXCNNXRCBD
  7ff0: 45 56 a1 09 4e 42 49 4e 42 44 45 56 14 44 07 5f  EV..NBINBDEV.D._
  8000: 51 33 38 00 70 42 47 49 44 0a 00 60 a0 31 93 60  Q38.pBGID..`.1.`
  8010: 0a 0f 42 44 49 53 a0 17 42 58 43 4e 70 42 44 45  ..BDIS..BXCNpBDE
  8020: 56 60 70 0a 0f 42 44 45 56 4e 58 45 4a 60 a1 0f  V`p..BDEVNXEJ`..
  8030: 4e 42 45 4a 42 44 45 56 70 60 42 44 45 56 a1 32  NBEJBDEVp`BDEV.2
  8040: a0 16 48 50 42 55 a0 10 42 58 43 4e 70 60 42 44  ..HPBU..BXCNp`BD
  8050: 45 56 4e 58 49 4e 60 a1 19 70 60 42 44 45 56 a0  EVNXIN`..p`BDEV.
  8060: 0a 42 58 43 4e 4e 58 52 43 60 a1 06 4e 42 49 4e  .BXCNNXRC`..NBIN
  8070: 60 14 42 0d 4e 42 52 45 01 a0 26 93 68 0a 0d a0  `.B.NBRE..&.h...
  8080: 20 5c 4c 46 44 43 86 5c 2f 05 5f 53 42 5f 50 43   \LFDC.\/._SB_PC
  8090: 49 30 4c 50 43 5f 46 44 43 5f 46 44 44 30 0a 03  I0LPC_FDC_FDD0..
  80a0: a0 46 04 95 68 0a 0c a0 23 93 5c 42 49 44 45 0a  .F..h...#.\BIDE.
  80b0: 03 86 5c 2f 05 5f 53 42 5f 50 43 49 30 53 41 54  ..\/._SB_PCI0SAT
  80c0: 41 53 43 4e 44 4d 53 54 52 0a 03 a1 1b 86 5c 2f  ASCNDMSTR.....\/
  80d0: 05 5f 53 42 5f 50 43 49 30 49 44 45 30 50 52 49  ._SB_PCI0IDE0PRI
  80e0: 4d 4d 53 54 52 0a 03 a0 49 04 93 68 0a 10 a0 2b  MMSTR...I..h...+
  80f0: 91 48 50 41 43 48 42 30 41 a0 20 5c 57 4e 54 46  .HPACHB0A. \WNTF
  8100: 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  8110: 45 43 5f 5f 42 41 54 31 0a 03 a1 16 4c 45 44 5f  EC__BAT1....LED_
  8120: 0a 04 0a c0 42 45 45 50 0a 0f 70 0a 02 42 53 54  ....BEEP..p..BST
  8130: 53 a0 12 93 68 0a 11 86 5c 2e 5f 53 42 5f 4c 43  S...h...\._SB_LC
  8140: 49 4f 0a 03 14 4b 0e 4e 42 45 4a 01 a0 4e 0c 93  IO...K.NBEJ..N..
  8150: 42 53 54 53 0a 00 a0 26 93 68 0a 0d a0 20 5c 4c  BSTS...&.h... \L
  8160: 46 44 43 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  FDC.\/._SB_PCI0L
  8170: 50 43 5f 46 44 43 5f 46 44 44 30 0a 01 a0 46 04  PC_FDC_FDD0...F.
  8180: 95 68 0a 0c a0 23 93 5c 42 49 44 45 0a 03 86 5c  .h...#.\BIDE...\
  8190: 2f 05 5f 53 42 5f 50 43 49 30 53 41 54 41 53 43  /._SB_PCI0SATASC
  81a0: 4e 44 4d 53 54 52 0a 01 a1 1b 86 5c 2f 05 5f 53  NDMSTR.....\/._S
  81b0: 42 5f 50 43 49 30 49 44 45 30 50 52 49 4d 4d 53  B_PCI0IDE0PRIMMS
  81c0: 54 52 0a 01 a0 43 04 93 68 0a 10 a0 20 5c 57 4e  TR...C..h... \WN
  81d0: 54 46 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  TF.\/._SB_PCI0LP
  81e0: 43 5f 45 43 5f 5f 42 41 54 31 0a 01 a1 1b 86 5c  C_EC__BAT1.....\
  81f0: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  8200: 5f 5f 42 41 54 31 0a 81 a0 12 93 68 0a 11 86 5c  __BAT1.....h...\
  8210: 2e 5f 53 42 5f 4c 43 49 4f 0a 01 4c 45 44 5f 0a  ._SB_LCIO..LED_.
  8220: 04 0a 00 42 45 45 50 0a 00 70 0a 00 42 53 54 53  ...BEEP..p..BSTS
  8230: 14 42 15 4e 42 49 4e 01 a0 38 93 68 0a 0d a0 32  .B.NBIN..8.h...2
  8240: 5c 4c 46 44 43 42 45 4e 5f 0a 00 42 53 46 44 4c  \LFDCBEN_..BSFDL
  8250: 45 44 5f 0a 04 0a 80 86 5c 2f 05 5f 53 42 5f 50  ED_.....\/._SB_P
  8260: 43 49 30 4c 50 43 5f 46 44 43 5f 46 44 44 30 0a  CI0LPC_FDC_FDD0.
  8270: 01 a0 42 06 95 68 0a 0c a0 0b 93 68 0a 06 42 45  ..B..h.....h..BE
  8280: 4e 5f 0a 02 a1 07 42 45 4e 5f 0a 01 4c 45 44 5f  N_....BEN_..LED_
  8290: 0a 04 0a 80 a0 23 93 5c 42 49 44 45 0a 03 86 5c  .....#.\BIDE...\
  82a0: 2f 05 5f 53 42 5f 50 43 49 30 53 41 54 41 53 43  /._SB_PCI0SATASC
  82b0: 4e 44 4d 53 54 52 0a 01 a1 1b 86 5c 2f 05 5f 53  NDMSTR.....\/._S
  82c0: 42 5f 50 43 49 30 49 44 45 30 50 52 49 4d 4d 53  B_PCI0IDE0PRIMMS
  82d0: 54 52 0a 01 a0 49 06 93 68 0a 10 4c 45 44 5f 0a  TR...I..h..LED_.
  82e0: 04 0a 80 a0 3e 5c 57 4e 54 46 70 0a 01 5c 2f 06  ....>\WNTFp..\/.
  82f0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  8300: 42 41 54 31 58 42 31 53 86 5c 2f 05 5f 53 42 5f  BAT1XB1S.\/._SB_
  8310: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 41 54 31  PCI0LPC_EC__BAT1
  8320: 0a 01 a1 1b 86 5c 2f 05 5f 53 42 5f 50 43 49 30  .....\/._SB_PCI0
  8330: 4c 50 43 5f 45 43 5f 5f 42 41 54 31 0a 81 a0 37  LPC_EC__BAT1...7
  8340: 93 68 0a 11 a0 31 92 5c 2f 04 5f 53 42 5f 50 43  .h...1.\/._SB_PC
  8350: 49 30 4c 50 43 5f 43 53 4f 4e 4c 45 44 5f 0a 04  I0LPC_CSONLED_..
  8360: 0a 80 a0 13 5c 57 4e 54 46 86 5c 2e 5f 53 42 5f  ....\WNTF.\._SB_
  8370: 4c 43 49 4f 0a 01 42 45 45 50 0a 00 70 0a 00 42  LCIO..BEEP..p..B
  8380: 53 54 53 14 4a 07 42 45 4a 30 01 a0 41 06 68 42  STS.J.BEJ0..A.hB
  8390: 44 49 53 4c 45 44 5f 0a 04 0a 00 5c 42 48 44 50  DISLED_....\BHDP
  83a0: 0a 01 0a 00 70 0a 01 42 53 54 53 a0 2a 42 48 4b  ....p..BSTS.*BHK
  83b0: 45 70 0a 00 42 48 4b 45 5c 2f 06 5f 53 42 5f 50  Ep..BHKE\/._SB_P
  83c0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  83d0: 48 4b 51 0b 03 30 a0 16 93 42 44 45 56 0a 11 70  HKQ..0...BDEV..p
  83e0: 0a 0f 42 44 45 56 70 0a 00 42 53 54 53 a1 10 4c  ..BDEVp..BSTS..L
  83f0: 45 44 5f 0a 04 0a 80 70 0a 00 42 53 54 53 14 1d  ED_....p..BSTS..
  8400: 42 45 4a 33 01 a0 0d 68 42 44 49 53 70 0a 01 42  BEJ3...hBDISp..B
  8410: 53 54 53 a1 08 70 0a 00 42 53 54 53 14 48 07 42  STS..p..BSTS.H.B
  8420: 50 54 53 01 70 0a 01 48 44 42 4d a0 17 92 93 42  PTS.p..HDBM....B
  8430: 53 54 53 0a 00 70 0a 0f 42 44 45 56 70 0a 00 42  STS..p..BDEVp..B
  8440: 53 54 53 70 0a 00 42 48 4b 45 70 0a 01 60 a0 1d  STSp..BHKEp..`..
  8450: 92 93 42 44 45 56 0a 0f a0 13 90 92 5c 4c 46 44  ..BDEV......\LFD
  8460: 43 93 42 44 45 56 0a 0d 70 0a 00 60 a1 05 70 0a  C.BDEV..p..`..p.
  8470: 00 60 a0 09 93 68 0a 05 70 0a 00 60 a0 08 60 42  .`...h..p..`..`B
  8480: 55 57 4b 0a 01 a1 0f 4c 45 44 5f 0a 04 0a 00 42  UWK....LED_....B
  8490: 55 57 4b 0a 00 14 44 14 42 57 41 4b 01 42 55 57  UWK...D.BWAK.BUW
  84a0: 4b 0a 00 70 42 47 49 44 0a 00 60 a0 10 90 92 5c  K..pBGID..`....\
  84b0: 4c 46 44 43 93 60 0a 0d 42 44 49 53 5c 2f 05 5f  LFDC.`..BDIS\/._
  84c0: 53 42 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 5f  SB_PCI0LPC_FDC__
  84d0: 49 4e 49 a0 4b 05 5c 4c 46 44 43 a0 43 05 92 93  INI.K.\LFDC.C...
  84e0: 60 0a 0d a0 4b 04 93 5c 2f 05 5f 53 42 5f 50 43  `...K..\/._SB_PC
  84f0: 49 30 4c 50 43 5f 46 44 43 5f 46 44 30 53 5c 2f  I0LPC_FDC_FD0S\/
  8500: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  8510: 5f 48 50 4e 46 86 5c 2f 05 5f 53 42 5f 50 43 49  _HPNF.\/._SB_PCI
  8520: 30 4c 50 43 5f 46 44 43 5f 46 44 44 30 0a 01 a0  0LPC_FDC_FDD0...
  8530: 4a 0a 93 42 53 54 53 0a 00 a0 2e 92 93 60 42 44  J..BSTS......`BD
  8540: 45 56 a0 10 42 58 43 4e 70 60 42 44 45 56 4e 58  EV..BXCNp`BDEVNX
  8550: 52 43 60 a1 14 4e 42 45 4a 42 44 45 56 70 60 42  RC`..NBEJBDEVp`B
  8560: 44 45 56 4e 42 49 4e 60 a1 41 07 a0 4e 06 91 5c  DEVNBIN`.A..N..\
  8570: 4c 46 44 43 92 93 42 44 45 56 0a 0d a0 4d 05 92  LFDC..BDEV...M..
  8580: 93 60 0a 0f 4c 45 44 5f 0a 04 0a 80 a0 4d 04 48  .`..LED_.....M.H
  8590: 50 42 55 7d 79 68 0a 08 00 0b 05 20 42 48 4b 45  PBU}yh..... BHKE
  85a0: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  85b0: 43 5f 5f 48 4b 45 59 4d 48 4b 51 42 48 4b 45 a0  C__HKEYMHKQBHKE.
  85c0: 06 92 94 68 0a 02 a1 13 a0 0a 42 58 43 4e 4e 58  ...h......BXCNNX
  85d0: 52 45 60 a1 06 4e 42 52 45 60 14 4e 0f 42 44 49  RE`..NBRE`.N.BDI
  85e0: 53 00 a0 46 0f 92 5c 2f 04 5f 53 42 5f 50 43 49  S..F..\/._SB_PCI
  85f0: 30 4c 50 43 5f 43 53 4f 4e a0 46 06 93 5c 42 49  0LPC_CSON.F..\BI
  8600: 44 45 0a 03 70 0a 00 5c 2f 04 5f 53 42 5f 50 43  DE..p..\/._SB_PC
  8610: 49 30 53 41 54 41 53 49 45 30 70 0a 00 5c 2f 04  I0SATASIE0p..\/.
  8620: 5f 53 42 5f 50 43 49 30 53 41 54 41 53 54 49 30  _SB_PCI0SATASTI0
  8630: 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  p..\/._SB_PCI0LP
  8640: 43 5f 55 52 53 54 5b 21 0a 0f 70 0a 01 5c 2f 04  C_URST[!..p..\/.
  8650: 5f 53 42 5f 50 43 49 30 53 41 54 41 53 53 49 47  _SB_PCI0SATASSIG
  8660: a1 4e 05 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49  .N.p..\/._SB_PCI
  8670: 30 49 44 45 30 50 49 45 30 70 0a 00 5c 2f 04 5f  0IDE0PIE0p..\/._
  8680: 53 42 5f 50 43 49 30 49 44 45 30 50 54 49 30 70  SB_PCI0IDE0PTI0p
  8690: 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  86a0: 5f 55 52 53 54 5b 21 0a 0f 70 0a 01 5c 2f 04 5f  _URST[!..p..\/._
  86b0: 53 42 5f 50 43 49 30 49 44 45 30 50 53 49 47 70  SB_PCI0IDE0PSIGp
  86c0: 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  86d0: 5f 43 53 4f 4e 42 53 46 44 14 41 0e 42 45 4e 5f  _CSONBSFD.A.BEN_
  86e0: 01 a0 49 0d 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  ..I.\/._SB_PCI0L
  86f0: 50 43 5f 43 53 4f 4e 70 0a 00 5c 2f 04 5f 53 42  PC_CSONp..\/._SB
  8700: 5f 50 43 49 30 4c 50 43 5f 55 52 53 54 70 0a 00  _PCI0LPC_URSTp..
  8710: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43  \/._SB_PCI0LPC_C
  8720: 53 4f 4e 5b 22 0a 0f a0 43 09 68 a0 35 93 5c 42  SON["...C.h.5.\B
  8730: 49 44 45 0a 03 70 0a 00 5c 2f 04 5f 53 42 5f 50  IDE..p..\/._SB_P
  8740: 43 49 30 53 41 54 41 53 53 49 47 70 0a 01 5c 2f  CI0SATASSIGp..\/
  8750: 04 5f 53 42 5f 50 43 49 30 53 41 54 41 53 49 44  ._SB_PCI0SATASID
  8760: 45 a1 2d 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49  E.-p..\/._SB_PCI
  8770: 30 49 44 45 30 50 53 49 47 70 0a 01 5c 2f 04 5f  0IDE0PSIGp..\/._
  8780: 53 42 5f 50 43 49 30 49 44 45 30 50 49 44 45 5b  SB_PCI0IDE0PIDE[
  8790: 21 0a 2d 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49  !.-p..\/._SB_PCI
  87a0: 30 4c 50 43 5f 55 52 53 54 a0 0a 93 68 0a 02 5b  0LPC_URST...h..[
  87b0: 22 0b d0 07 a1 06 5b 22 0b 90 01 14 4e 05 42 53  ".....["....N.BS
  87c0: 54 41 01 a0 17 5c 2f 04 5f 53 42 5f 50 43 49 30  TA...\/._SB_PCI0
  87d0: 4c 50 43 5f 43 53 4f 4e a4 0a 00 42 49 4e 49 a0  LPC_CSON...BINI.
  87e0: 0d 93 68 0a 00 a4 93 42 44 45 56 0a 0d a0 0d 93  ..h....BDEV.....
  87f0: 68 0a 01 a4 95 42 44 45 56 0a 0c a0 0d 93 68 0a  h....BDEV.....h.
  8800: 02 a4 93 42 44 45 56 0a 0e a0 0d 93 68 0a 03 a4  ...BDEV.....h...
  8810: 93 42 44 45 56 0a 11 a4 0a 00 14 44 06 42 55 57  .BDEV......D.BUW
  8820: 4b 01 a0 3f 5c 48 38 44 52 a0 1c 68 70 0a 01 5c  K..?\H8DR..hp..\
  8830: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  8840: 5f 5f 48 57 42 55 a1 1b 70 0a 00 5c 2f 05 5f 53  __HWBU..p..\/._S
  8850: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57  B_PCI0LPC_EC__HW
  8860: 42 55 a1 1c a0 0d 68 5c 4d 42 45 43 0a 32 0a ff  BU....h\MBEC.2..
  8870: 0a 80 a1 0c 5c 4d 42 45 43 0a 32 0a 7f 0a 00 14  ....\MBEC.2.....
  8880: 1a 42 49 4e 49 00 a0 13 93 42 44 45 56 0a ff 70  .BINI....BDEV..p
  8890: 42 47 49 44 0a 00 42 44 45 56 14 46 0b 42 47 49  BGID..BDEV.F.BGI
  88a0: 44 01 a0 06 68 70 0a ff 60 a1 45 0a a0 0c 5c 48  D...hp..`.E...\H
  88b0: 38 44 52 70 48 42 49 44 60 a1 10 7a 52 42 45 43  8DRpHBID`..zRBEC
  88c0: 0a 47 0a 02 60 7b 60 0a 0f 60 7b 60 0a 03 60 a0  .G..`{`..`{`..`.
  88d0: 09 93 60 0a 00 70 0a 03 60 a1 11 a0 09 93 60 0a  ..`..p..`.....`.
  88e0: 02 70 0a 06 60 a1 05 70 0a 0f 60 a0 29 93 60 0a  .p..`..p..`.).`.
  88f0: 0f a0 10 5c 48 38 44 52 a0 09 48 42 31 41 70 0a  ...\H8DR..HB1Ap.
  8900: 10 60 a1 12 a0 10 7b 5c 52 42 45 43 0a 39 0a 80  .`....{\RBEC.9..
  8910: 00 70 0a 10 60 a0 39 93 60 0a 0f a0 33 92 5c 2f  .p..`.9.`...3.\/
  8920: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43 53 4f  ._SB_PCI0LPC_CSO
  8930: 4e a0 1d 92 7b 5c 2f 04 5f 53 42 5f 50 43 49 30  N...{\/._SB_PCI0
  8940: 4c 50 43 5f 47 4c 30 30 0a 40 00 70 0a 11 60 a4  LPC_GL00.@.p..`.
  8950: 60 14 28 42 53 46 44 00 a0 13 42 53 54 41 0a 00  `.(BSFD...BSTA..
  8960: 5c 4d 49 53 41 0b f3 03 0a f3 0a 00 a1 0d 5c 4d  \MISA.........\M
  8970: 49 53 41 0b f3 03 0a f3 0a 04 14 41 0b 4e 58 52  ISA........A.NXR
  8980: 45 01 a0 14 93 68 0a 0f 4c 45 44 5f 0a 04 0a 00  E....h..LED_....
  8990: 70 0a 00 42 53 54 53 a0 21 93 68 0a 0d a0 1b 5c  p..BSTS.!.h....\
  89a0: 4c 46 44 43 4c 45 44 5f 0a 04 0a c0 86 5c 2e 5f  LFDCLED_.....\._
  89b0: 53 42 5f 53 57 41 50 0a 83 a0 1a 95 68 0a 0c 4c  SB_SWAP.....h..L
  89c0: 45 44 5f 0a 04 0a c0 86 5c 2e 5f 53 42 5f 53 57  ED_.....\._SB_SW
  89d0: 41 50 0a 83 a0 1a 93 68 0a 0e 4c 45 44 5f 0a 04  AP.....h..LED_..
  89e0: 0a c0 86 5c 2e 5f 53 42 5f 53 57 41 50 0a 83 a0  ...\._SB_SWAP...
  89f0: 3c 93 68 0a 10 a0 1f 91 48 50 41 43 48 42 30 41  <.h.....HPACHB0A
  8a00: 4c 45 44 5f 0a 04 0a c0 86 5c 2e 5f 53 42 5f 53  LED_.....\._SB_S
  8a10: 57 41 50 0a 83 a1 16 4c 45 44 5f 0a 04 0a c0 42  WAP....LED_....B
  8a20: 45 45 50 0a 0f 70 0a 02 42 53 54 53 14 45 0c 4e  EEP..p..BSTS.E.N
  8a30: 58 52 43 01 a0 2b 93 68 0a 0d a0 25 5c 4c 46 44  XRC..+.h...%\LFD
  8a40: 43 4c 45 44 5f 0a 04 0a 80 42 45 4e 5f 0a 00 42  CLED_....BEN_..B
  8a50: 53 46 44 86 5c 2e 5f 53 42 5f 53 57 41 50 0a 80  SFD.\._SB_SWAP..
  8a60: a0 2e 95 68 0a 0c 4c 45 44 5f 0a 04 0a 80 a0 0b  ...h..LED_......
  8a70: 93 68 0a 06 42 45 4e 5f 0a 02 a1 07 42 45 4e 5f  .h..BEN_....BEN_
  8a80: 0a 01 86 5c 2e 5f 53 42 5f 53 57 41 50 0a 80 a0  ...\._SB_SWAP...
  8a90: 20 93 68 0a 0e 4c 45 44 5f 0a 04 0a 80 42 45 4e   .h..LED_....BEN
  8aa0: 5f 0a 00 86 5c 2e 5f 53 42 5f 53 57 41 50 0a 80  _...\._SB_SWAP..
  8ab0: a0 34 93 68 0a 10 86 5c 2f 05 5f 53 42 5f 50 43  .4.h...\/._SB_PC
  8ac0: 49 30 4c 50 43 5f 45 43 5f 5f 42 41 54 31 0a 81  I0LPC_EC__BAT1..
  8ad0: 4c 45 44 5f 0a 04 0a 80 86 5c 2e 5f 53 42 5f 53  LED_.....\._SB_S
  8ae0: 57 41 50 0a 80 42 45 45 50 0a 00 70 0a 00 42 53  WAP..BEEP..p..BS
  8af0: 54 53 14 49 04 4e 58 45 4a 01 a0 1f 93 68 0a 10  TS.I.NXEJ....h..
  8b00: 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  8b10: 45 43 5f 5f 42 41 54 31 0a 81 86 5c 2e 5f 53 42  EC__BAT1...\._SB
  8b20: 5f 53 57 41 50 0a 82 4c 45 44 5f 0a 04 0a 00 42  _SWAP..LED_....B
  8b30: 45 45 50 0a 00 70 0a 00 42 53 54 53 14 13 4e 58  EEP..p..BSTS..NX
  8b40: 49 4e 01 86 5c 2e 5f 53 42 5f 53 57 41 50 0a 81  IN..\._SB_SWAP..
  8b50: 10 43 10 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  .C.\/._SB_PCI0LP
  8b60: 43 5f 46 44 43 5f 08 58 46 44 53 0a 00 08 44 43  C_FDC_.XFDS...DC
  8b70: 46 44 0a 00 14 43 05 5f 49 4e 49 00 70 0a 00 58  FD...C._INI.p..X
  8b80: 46 44 53 a0 37 5c 48 38 44 52 7d 5c 2f 05 5f 53  FDS.7\H8DR}\/._S
  8b90: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 41  B_PCI0LPC_EC__HA
  8ba0: 4d 41 0a 0c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  MA..\/._SB_PCI0L
  8bb0: 50 43 5f 45 43 5f 5f 48 41 4d 41 a1 0c 5c 4d 42  PC_EC__HAMA..\MB
  8bc0: 45 43 0a 1a 0a ff 0a 0c 08 46 44 45 42 11 17 0a  EC.......FDEB...
  8bd0: 14 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  8be0: 00 02 00 00 00 8c 46 44 45 42 0a 00 46 44 30 53  ......FDEB..FD0S
  8bf0: 14 43 06 5f 46 44 45 00 a0 26 91 5c 2f 05 5f 53  .C._FDE..&.\/._S
  8c00: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 53  B_PCI0LPC_EC__BS
  8c10: 54 41 0a 00 44 43 46 44 70 0a 01 46 44 30 53 a1  TA..DCFDp..FD0S.
  8c20: 2f a0 24 91 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  /.$.\/._SB_PCI0L
  8c30: 50 43 5f 45 43 5f 5f 48 50 4e 46 58 46 44 53 70  PC_EC__HPNFXFDSp
  8c40: 0a 00 46 44 30 53 a1 08 70 0a 01 46 44 30 53 a4  ..FD0S..p..FD0S.
  8c50: 46 44 45 42 10 45 06 5c 2f 05 5f 53 42 5f 50 43  FDEB.E.\/._SB_PC
  8c60: 49 30 4c 50 43 5f 46 44 43 5f 46 44 44 30 14 4b  I0LPC_FDC_FDD0.K
  8c70: 04 5f 45 4a 30 01 a0 32 5c 2f 05 5f 53 42 5f 50  ._EJ0..2\/._SB_P
  8c80: 43 49 30 4c 50 43 5f 45 43 5f 5f 42 53 54 41 0a  CI0LPC_EC__BSTA.
  8c90: 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  8ca0: 45 43 5f 5f 42 45 4a 30 68 a1 10 a0 05 44 43 46  EC__BEJ0h....DCF
  8cb0: 44 a1 08 70 0a 01 58 46 44 53 10 41 12 5c 2f 04  D..p..XFDS.A.\/.
  8cc0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  8cd0: 14 43 09 5f 51 35 32 00 a0 32 5c 2f 05 5f 53 42  .C._Q52..2\/._SB
  8ce0: 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 58 46 44  _PCI0LPC_FDC_XFD
  8cf0: 53 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  Sp..\/._SB_PCI0L
  8d00: 50 43 5f 46 44 43 5f 58 46 44 53 a1 48 05 a0 32  PC_FDC_XFDS.H..2
  8d10: 91 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  8d20: 45 43 5f 5f 42 53 54 41 0a 00 5c 2f 05 5f 53 42  EC__BSTA..\/._SB
  8d30: 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 44 43 46  _PCI0LPC_FDC_DCF
  8d40: 44 a1 22 a0 20 5c 4c 46 44 43 86 5c 2f 05 5f 53  D.". \LFDC.\/._S
  8d50: 42 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 46 44  B_PCI0LPC_FDC_FD
  8d60: 44 30 0a 01 14 47 07 5f 51 35 33 00 70 0a 00 5c  D0...G._Q53.p..\
  8d70: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 46 44  /._SB_PCI0LPC_FD
  8d80: 43 5f 58 46 44 53 a0 32 91 5c 2f 05 5f 53 42 5f  C_XFDS.2.\/._SB_
  8d90: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 53 54 41  PCI0LPC_EC__BSTA
  8da0: 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  8db0: 5f 46 44 43 5f 44 43 46 44 a1 22 a0 20 5c 4c 46  _FDC_DCFD.". \LF
  8dc0: 44 43 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  DC.\/._SB_PCI0LP
  8dd0: 43 5f 46 44 43 5f 46 44 44 30 0a 01 10 46 04 5c  C_FDC_FDD0...F.\
  8de0: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  8df0: 5f 5f 42 41 54 31 14 2c 5f 45 4a 30 01 70 0a 00  __BAT1.,_EJ0.p..
  8e00: 42 31 53 54 70 0a 00 58 42 31 53 5c 2f 05 5f 53  B1STp..XB1S\/._S
  8e10: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 45  B_PCI0LPC_EC__BE
  8e20: 4a 30 68 10 40 33 5c 5f 53 42 5f 5b 82 47 32 53  J0h.@3\_SB_[.G2S
  8e30: 57 41 50 08 5f 48 49 44 0c 24 4d 00 69 14 15 5f  WAP._HID.$M.i.._
  8e40: 53 54 41 00 a0 09 5c 57 4d 45 46 a4 0a 0f a1 04  STA...\WMEF.....
  8e50: a4 0a 00 14 22 58 43 4e 4e 01 70 68 5c 2f 05 5f  ...."XCNN.ph\/._
  8e60: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42  SB_PCI0LPC_EC__B
  8e70: 58 43 4e a4 0a 09 14 09 58 53 57 50 00 a4 0a 01  XCN.....XSWP....
  8e80: 14 1e 58 45 4a 30 01 5c 2f 05 5f 53 42 5f 50 43  ..XEJ0.\/._SB_PC
  8e90: 49 30 4c 50 43 5f 45 43 5f 5f 42 45 4a 30 68 14  I0LPC_EC__BEJ0h.
  8ea0: 1e 58 45 4a 33 01 5c 2f 05 5f 53 42 5f 50 43 49  .XEJ3.\/._SB_PCI
  8eb0: 30 4c 50 43 5f 45 43 5f 5f 42 45 4a 33 68 14 40  0LPC_EC__BEJ3h.@
  8ec0: 1f 58 44 49 44 00 08 58 50 43 4b 12 17 06 0a 00  .XDID..XPCK.....
  8ed0: 0a 00 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff  ................
  8ee0: ff 0a 00 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  ...p\/._SB_PCI0L
  8ef0: 50 43 5f 45 43 5f 5f 42 44 45 56 60 70 60 88 58  PC_EC__BDEV`p`.X
  8f00: 50 43 4b 0a 00 00 a0 44 0d 95 60 0a 0c a0 4a 06  PCK....D..`...J.
  8f10: 93 5c 42 49 44 45 0a 03 70 5c 2f 04 5f 53 42 5f  .\BIDE..p\/._SB_
  8f20: 50 43 49 30 53 41 54 41 5f 41 44 52 88 58 50 43  PCI0SATA_ADR.XPC
  8f30: 4b 0a 02 00 70 5c 2f 05 5f 53 42 5f 50 43 49 30  K...p\/._SB_PCI0
  8f40: 53 41 54 41 53 43 4e 44 5f 41 44 52 88 58 50 43  SATASCND_ADR.XPC
  8f50: 4b 0a 03 00 70 5c 2f 06 5f 53 42 5f 50 43 49 30  K...p\/._SB_PCI0
  8f60: 53 41 54 41 53 43 4e 44 4d 53 54 52 5f 41 44 52  SATASCNDMSTR_ADR
  8f70: 88 58 50 43 4b 0a 04 00 a1 42 06 70 5c 2f 04 5f  .XPCK....B.p\/._
  8f80: 53 42 5f 50 43 49 30 49 44 45 30 5f 41 44 52 88  SB_PCI0IDE0_ADR.
  8f90: 58 50 43 4b 0a 02 00 70 5c 2f 05 5f 53 42 5f 50  XPCK...p\/._SB_P
  8fa0: 43 49 30 49 44 45 30 50 52 49 4d 5f 41 44 52 88  CI0IDE0PRIM_ADR.
  8fb0: 58 50 43 4b 0a 03 00 70 5c 2f 06 5f 53 42 5f 50  XPCK...p\/._SB_P
  8fc0: 43 49 30 49 44 45 30 50 52 49 4d 4d 53 54 52 5f  CI0IDE0PRIMMSTR_
  8fd0: 41 44 52 88 58 50 43 4b 0a 04 00 a0 4f 05 93 60  ADR.XPCK....O..`
  8fe0: 0a 0d a0 4b 04 5c 4c 46 44 43 70 5c 2f 05 5f 53  ...K.\LFDCp\/._S
  8ff0: 42 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 5f 48  B_PCI0LPC_FDC__H
  9000: 49 44 88 58 50 43 4b 0a 02 00 70 5c 2f 06 5f 53  ID.XPCK...p\/._S
  9010: 42 5f 50 43 49 30 4c 50 43 5f 46 44 43 5f 46 44  B_PCI0LPC_FDC_FD
  9020: 44 30 5f 41 44 52 88 58 50 43 4b 0a 04 00 a1 0c  D0_ADR.XPCK.....
  9030: 70 0a 0f 88 58 50 43 4b 0a 00 00 a0 4e 04 93 60  p...XPCK....N..`
  9040: 0a 10 70 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  ..p\/._SB_PCI0LP
  9050: 43 5f 45 43 5f 5f 42 41 54 31 5f 48 49 44 88 58  C_EC__BAT1_HID.X
  9060: 50 43 4b 0a 02 00 70 5c 2f 06 5f 53 42 5f 50 43  PCK...p\/._SB_PC
  9070: 49 30 4c 50 43 5f 45 43 5f 5f 42 41 54 31 5f 55  I0LPC_EC__BAT1_U
  9080: 49 44 88 58 50 43 4b 0a 04 00 70 7f 5c 2f 04 5f  ID.XPCK...p.\/._
  9090: 53 42 5f 50 43 49 30 4c 50 43 5f 43 53 4f 4e 0a  SB_PCI0LPC_CSON.
  90a0: 01 00 88 58 50 43 4b 0a 05 00 a4 58 50 43 4b 14  ...XPCK....XPCK.
  90b0: 48 05 58 53 54 4d 01 08 58 44 4d 59 11 03 0a 14  H.XSTM..XDMY....
  90c0: a0 27 93 5c 42 49 44 45 0a 03 5c 2f 05 5f 53 42  .'.\BIDE..\/._SB
  90d0: 5f 50 43 49 30 53 41 54 41 53 43 4e 44 5f 53 54  _PCI0SATASCND_ST
  90e0: 4d 58 44 4d 59 68 0a 00 a1 1f 5c 2f 05 5f 53 42  MXDMYh....\/._SB
  90f0: 5f 50 43 49 30 49 44 45 30 50 52 49 4d 5f 53 54  _PCI0IDE0PRIM_ST
  9100: 4d 58 44 4d 59 68 0a 00 14 4b 04 58 47 54 46 00  MXDMYh...K.XGTF.
  9110: a0 25 93 5c 42 49 44 45 0a 03 a4 5c 2f 06 5f 53  .%.\BIDE...\/._S
  9120: 42 5f 50 43 49 30 53 41 54 41 53 43 4e 44 4d 53  B_PCI0SATASCNDMS
  9130: 54 52 5f 47 54 46 a1 1d a4 5c 2f 06 5f 53 42 5f  TR_GTF...\/._SB_
  9140: 50 43 49 30 49 44 45 30 50 52 49 4d 4d 53 54 52  PCI0IDE0PRIMMSTR
  9150: 5f 47 54 46 10 4f e7 5c 5f 53 42 5f 5b 82 46 e7  _GTF.O.\_SB_[.F.
  9160: 47 44 43 4b 08 5f 48 49 44 0c 24 4d 00 79 08 5f  GDCK._HID.$M.y._
  9170: 43 49 44 0c 41 d0 0c 15 08 44 4f 49 44 0c ff ff  CID.A....DOID...
  9180: ff ff 08 44 49 44 42 0c ff ff ff ff 08 46 4c 41  ...DIDB......FLA
  9190: 47 0a 00 08 57 55 43 54 0a 00 08 44 48 4b 45 0a  G...WUCT...DHKE.
  91a0: 00 5b 02 44 45 56 54 14 3f 44 53 54 41 00 55 44  .[.DEVT.?DSTA.UD
  91b0: 43 4b 55 44 4b 54 a0 1a 91 93 47 44 49 44 0c 24  CKUDKT....GDID.$
  91c0: 4d 00 4c 93 47 44 49 44 0c 24 4d 00 44 70 0a 0f  M.L.GDID.$M.Dp..
  91d0: 60 a1 13 a0 0b 92 5c 57 39 38 46 70 0a 00 60 a1  `.....\W98Fp..`.
  91e0: 05 70 0a 0c 60 a4 60 14 47 07 44 50 54 53 01 a0  .p..`.`.G.DPTS..
  91f0: 4f 06 90 92 95 68 0a 01 92 94 68 0a 04 70 0a 00  O....h....h..p..
  9200: 44 48 4b 45 a0 18 44 46 4c 47 0a 02 0a 02 70 0a  DHKE..DFLG....p.
  9210: 00 44 4f 49 44 44 46 4c 47 0a 01 0a 02 a0 2f 91  .DOIDDFLG...../.
  9220: 93 47 44 49 44 0c 24 4d 00 4c 93 47 44 49 44 0c  .GDID.$M.L.GDID.
  9230: 24 4d 00 44 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  $M.D\/._SB_PCI0L
  9240: 50 43 5f 45 43 5f 5f 44 44 57 4b 0a 01 70 47 44  PC_EC__DDWK..pGD
  9250: 49 44 44 49 44 42 44 46 4c 47 0a 00 0b 00 01 08  IDDIDBDFLG......
  9260: 44 44 54 4d 0a 00 14 4a 18 44 57 41 4b 01 70 0c  DDTM...J.DWAK.p.
  9270: ff ff ff ff 44 4f 49 44 a0 48 17 90 92 95 68 0a  ....DOID.H....h.
  9280: 01 92 94 68 0a 04 70 0a 00 44 44 54 4d a0 1d 91  ...h..p..DDTM...
  9290: 93 44 49 44 42 0c 24 4d 00 4c 93 44 49 44 42 0c  .DIDB.$M.L.DIDB.
  92a0: 24 4d 00 44 70 0a 01 44 44 54 4d a0 42 0d 44 44  $M.Dp..DDTM.B.DD
  92b0: 54 4d 70 0a 00 44 44 54 4d a0 12 93 47 44 49 44  TMp..DDTM...GDID
  92c0: 0c 24 4d 00 4c 70 0a 01 44 44 54 4d a0 12 93 47  .$M.Lp..DDTM...G
  92d0: 44 49 44 0c 24 4d 00 44 70 0a 01 44 44 54 4d a0  DID.$M.Dp..DDTM.
  92e0: 3b 44 44 54 4d a0 22 93 68 0a 04 a0 1c 7b 5c 2f  ;DDTM.".h....{\/
  92f0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 57 41 4b  ._SB_PCI0LPC_WAK
  9300: 52 0a 08 00 44 47 50 45 79 68 0a 08 44 48 4b 45  R...DGPEyh..DHKE
  9310: a0 0a 92 44 46 4c 47 0a 02 0a 08 a1 42 06 70 0a  ...DFLG.....B.p.
  9320: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  9330: 42 55 53 44 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  BUSD\/._SB_PCI0L
  9340: 50 43 5f 45 43 5f 5f 44 41 54 54 0a 00 0a 01 5c  PC_EC__DATT....\
  9350: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43  /._SB_PCI0LPC_EC
  9360: 5f 5f 44 41 54 54 0a 01 0a 00 86 5c 2e 5f 53 42  __DATT.....\._SB
  9370: 5f 47 44 43 4b 0a 00 5c 44 48 44 50 0a 00 a1 3b  _GDCK..\DHDP...;
  9380: 70 0a 00 44 44 54 4d a0 12 93 47 44 49 44 0c 24  p..DDTM...GDID.$
  9390: 4d 00 4c 70 0a 01 44 44 54 4d a0 12 93 47 44 49  M.Lp..DDTM...GDI
  93a0: 44 0c 24 4d 00 44 70 0a 01 44 44 54 4d a0 09 44  D.$M.Dp..DDTM..D
  93b0: 44 54 4d 57 44 43 4b a1 02 a3 44 46 4c 47 0a 01  DTMWDCK...DFLG..
  93c0: 0b 00 01 44 46 4c 47 0a 01 0a 02 44 46 4c 47 0a  ...DFLG....DFLG.
  93d0: 01 0a 10 44 46 4c 47 0a 01 0a 20 70 0a 01 5c 2f  ...DFLG... p..\/
  93e0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 44 53 43  ._SB_PCI0LPC_DSC
  93f0: 49 14 0e 44 47 50 45 00 44 46 4c 47 0a 00 0a 08  I..DGPE.DFLG....
  9400: 14 4e 12 44 44 43 4b 01 a0 4a 08 68 5c 2f 05 5f  .N.DDCK..J.h\/._
  9410: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c  SB_PCI0LPC_EC__L
  9420: 45 44 5f 0a 08 0a 00 5c 2f 05 5f 53 42 5f 50 43  ED_....\/._SB_PC
  9430: 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 09  I0LPC_EC__LED_..
  9440: 0a 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  9450: 5f 4c 43 4f 4e 0a 01 42 43 4f 4e 0a 01 5c 2f 05  _LCON..BCON..\/.
  9460: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  9470: 44 41 54 54 0a 00 0a 00 5c 2f 05 5f 53 42 5f 50  DATT....\/._SB_P
  9480: 43 49 30 4c 50 43 5f 45 43 5f 5f 44 41 54 54 0a  CI0LPC_EC__DATT.
  9490: 01 0a 01 a1 48 09 5c 2f 05 5f 53 42 5f 50 43 49  ....H.\/._SB_PCI
  94a0: 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 08 0a  0LPC_EC__LED_...
  94b0: 80 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  94c0: 45 43 5f 5f 4c 45 44 5f 0a 09 0a c0 44 46 4c 47  EC__LED_....DFLG
  94d0: 0a 00 0a 02 5c 44 48 44 50 0a 00 42 43 4f 4e 0a  ....\DHDP..BCON.
  94e0: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  94f0: 4c 43 4f 4e 0a 00 5c 2f 05 5f 53 42 5f 50 43 49  LCON..\/._SB_PCI
  9500: 30 4c 50 43 5f 45 43 5f 5f 44 41 54 54 0a 00 0a  0LPC_EC__DATT...
  9510: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  9520: 45 43 5f 5f 44 41 54 54 0a 01 0a 00 a4 0a 01 14  EC__DATT........
  9530: 43 05 44 45 4a 30 01 a0 0d 68 70 0a 00 44 4f 49  C.DEJ0...hp..DOI
  9540: 44 55 44 4b 49 44 46 4c 47 0a 01 0a 02 5c 2f 05  DUDKIDFLG....\/.
  9550: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  9560: 4c 45 44 5f 0a 08 0a 00 5c 2f 05 5f 53 42 5f 50  LED_....\/._SB_P
  9570: 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a  CI0LPC_EC__LED_.
  9580: 09 0a 00 14 1f 44 45 4a 33 01 a0 18 68 44 46 4c  .....DEJ3...hDFL
  9590: 47 0a 00 0a 10 a0 0d 93 5c 53 50 53 5f 0a 03 50  G.......\SPS_..P
  95a0: 44 45 33 14 11 44 45 4a 34 01 a0 0a 68 44 46 4c  DE3..DEJ4...hDFL
  95b0: 47 0a 00 0a 20 14 07 50 44 45 33 00 a3 08 48 49  G... ..PDE3...HI
  95c0: 44 45 0a 00 14 40 08 57 44 43 4b 00 a0 2f 91 44  DE...@.WDCK../.D
  95d0: 46 4c 47 0a 02 0a 10 44 46 4c 47 0a 02 0a 20 44  FLG....DFLG... D
  95e0: 44 43 4b 0a 01 a0 16 5c 57 39 38 46 44 46 4c 47  DCK....\W98FDFLG
  95f0: 0a 00 0b 00 02 70 0a 05 48 49 44 45 a1 48 04 a0  .....p..HIDE.H..
  9600: 36 93 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  6.\/._SB_PCI0LPC
  9610: 5f 45 43 5f 5f 42 47 49 44 0a 00 0a 11 5c 2f 05  _EC__BGID....\/.
  9620: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  9630: 4e 42 52 45 0a 11 a1 0e 86 5c 2e 5f 53 42 5f 47  NBRE.....\._SB_G
  9640: 44 43 4b 0a 00 14 4f 07 55 44 43 4b 00 a0 47 07  DCK...O.UDCK..G.
  9650: 44 46 4c 47 0a 02 0a 08 a0 4c 06 92 44 46 4c 47  DFLG.....L..DFLG
  9660: 0a 02 0b 00 01 7d 44 48 4b 45 0b 04 20 44 48 4b  .....}DHKE.. DHK
  9670: 45 a0 28 93 5c 55 4f 50 54 0a 00 5c 2f 06 5f 53  E.(.\UOPT..\/._S
  9680: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  9690: 45 59 4d 48 4b 51 44 48 4b 45 a0 13 5c 57 39 38  EYMHKQDHKE..\W98
  96a0: 46 86 5c 2e 5f 53 42 5f 47 44 43 4b 0a 01 a1 0e  F.\._SB_GDCK....
  96b0: 86 5c 2e 5f 53 42 5f 47 44 43 4b 0a 03 44 46 4c  .\._SB_GDCK..DFL
  96c0: 47 0a 01 0a 08 14 1d 55 44 4b 49 00 a0 0d 5c 57  G......UDKI...\W
  96d0: 4e 54 46 70 0a 01 57 55 43 54 a1 08 70 0a 05 57  NTFp..WUCT..p..W
  96e0: 55 43 54 14 43 05 55 44 4b 54 00 a0 4b 04 7b 44  UCT.C.UDKT..K.{D
  96f0: 48 4b 45 0b 04 20 00 a0 3f 93 47 44 49 44 0a 00  HKE.. ..?.GDID..
  9700: a0 36 92 76 57 55 43 54 70 0a 00 44 48 4b 45 a0  .6.vWUCTp..DHKE.
  9710: 27 93 5c 55 4f 50 54 0a 00 5c 2f 06 5f 53 42 5f  '.\UOPT..\/._SB_
  9720: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59  PCI0LPC_EC__HKEY
  9730: 4d 48 4b 51 0b 03 40 14 35 47 44 49 44 00 a0 29  MHKQ..@.5GDID..)
  9740: 93 44 4f 49 44 0c ff ff ff ff 70 0c ff ff ff ff  .DOID.....p.....
  9750: 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 5f 49 44 70  \/._SB_GDCKG_IDp
  9760: 52 44 49 44 44 4f 49 44 a4 44 4f 49 44 14 4f 09  RDIDDOID.DOID.O.
  9770: 52 44 49 44 00 70 0a 00 60 a0 41 09 5c 2f 04 5f  RDID.p..`.A.\/._
  9780: 53 42 5f 50 43 49 30 4c 50 43 5f 45 50 57 47 a0  SB_PCI0LPC_EPWG.
  9790: 40 06 93 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47  @..\/._SB_GDCKGG
  97a0: 49 44 0a 00 a0 42 04 5c 48 38 44 52 a0 31 5c 2f  ID...B.\H8DR.1\/
  97b0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  97c0: 5f 45 45 50 52 70 5c 2f 05 5f 53 42 5f 50 43 49  _EEPRp\/._SB_PCI
  97d0: 30 4c 50 43 5f 45 43 5f 5f 48 44 45 50 60 a1 08  0LPC_EC__HDEP`..
  97e0: 70 0c 24 4d 00 4c 60 a1 08 70 5c 44 43 4b 49 60  p.$M.L`..p\DCKI`
  97f0: a0 1a 93 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47  ...\/._SB_GDCKGG
  9800: 49 44 0a 01 70 0c 24 4d 00 44 60 a4 60 14 47 08  ID..p.$M.D`.`.G.
  9810: 52 44 53 52 00 70 0a 00 60 a0 49 07 92 93 47 44  RDSR.p..`.I...GD
  9820: 49 44 0a 00 a0 46 05 93 5c 2f 03 5f 53 42 5f 47  ID...F..\/._SB_G
  9830: 44 43 4b 47 47 49 44 0a 00 a0 38 5c 48 38 44 52  DCKGGID...8\H8DR
  9840: a0 31 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  .1\/._SB_PCI0LPC
  9850: 5f 45 43 5f 5f 45 45 50 52 70 5c 2f 05 5f 53 42  _EC__EEPRp\/._SB
  9860: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 44 45  _PCI0LPC_EC__HDE
  9870: 4e 60 a1 08 70 5c 44 43 4b 53 60 a0 17 93 5c 2f  N`..p\DCKS`...\/
  9880: 03 5f 53 42 5f 47 44 43 4b 47 47 49 44 0a 01 70  ._SB_GDCKGGID..p
  9890: 0a 00 60 a4 60 14 45 17 42 43 4f 4e 01 70 5c 2f  ..`.`.E.BCON.p\/
  98a0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  98b0: 5f 44 41 54 54 0a 00 0a 02 60 5c 2f 05 5f 53 42  _DATT....`\/._SB
  98c0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 41 54  _PCI0LPC_EC__DAT
  98d0: 54 0a 00 0a 01 7d 5c 2f 04 5f 53 42 5f 50 43 49  T....}\/._SB_PCI
  98e0: 30 4c 50 43 5f 53 45 52 51 0a 40 5c 2f 04 5f 53  0LPC_SERQ.@\/._S
  98f0: 42 5f 50 43 49 30 4c 50 43 5f 53 45 52 51 7b 5c  B_PCI0LPC_SERQ{\
  9900: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 53 45  /._SB_PCI0LPC_SE
  9910: 52 51 0a 7f 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  RQ..\/._SB_PCI0L
  9920: 50 43 5f 53 45 52 51 70 5c 2f 04 5f 53 42 5f 50  PC_SERQp\/._SB_P
  9930: 43 49 30 4c 50 43 5f 43 4c 4b 52 61 a0 2e 68 70  CI0LPC_CLKRa..hp
  9940: 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  9950: 5f 43 4c 4b 52 70 0a 01 5c 2f 04 5f 53 42 5f 50  _CLKRp..\/._SB_P
  9960: 43 49 30 4c 50 43 5f 42 55 53 43 a1 17 70 0a 01  CI0LPC_BUSC..p..
  9970: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 42  \/._SB_PCI0LPC_B
  9980: 55 53 44 70 61 5c 2f 04 5f 53 42 5f 50 43 49 30  USDpa\/._SB_PCI0
  9990: 4c 50 43 5f 43 4c 4b 52 7d 5c 2f 04 5f 53 42 5f  LPC_CLKR}\/._SB_
  99a0: 50 43 49 30 4c 50 43 5f 53 45 52 51 0a c0 5c 2f  PCI0LPC_SERQ..\/
  99b0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 53 45 52  ._SB_PCI0LPC_SER
  99c0: 51 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43  Q{\/._SB_PCI0LPC
  99d0: 5f 53 45 52 51 0a bf 5c 2f 04 5f 53 42 5f 50 43  _SERQ..\/._SB_PC
  99e0: 49 30 4c 50 43 5f 53 45 52 51 a0 20 93 60 0a 00  I0LPC_SERQ. .`..
  99f0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  9a00: 43 5f 5f 44 41 54 54 0a 00 0a 00 14 39 44 46 4c  C__DATT.....9DFL
  9a10: 47 02 a0 0f 93 68 0a 00 7d 46 4c 41 47 69 46 4c  G....h..}FLAGiFL
  9a20: 41 47 a0 11 93 68 0a 01 7b 46 4c 41 47 80 69 00  AG...h..{FLAG.i.
  9a30: 46 4c 41 47 a0 0b 7b 46 4c 41 47 69 00 a4 0a 01  FLAG..{FLAGi....
  9a40: a1 04 a4 0a 00 10 4b 1b 5c 2f 04 5f 53 42 5f 50  ......K.\/._SB_P
  9a50: 43 49 30 4c 50 43 5f 45 43 5f 5f 14 40 11 5f 51  CI0LPC_EC__.@._Q
  9a60: 33 37 00 a0 48 10 5c 2f 04 5f 53 42 5f 50 43 49  37..H.\/._SB_PCI
  9a70: 30 4c 50 43 5f 45 50 57 47 70 0b d0 07 60 70 0c  0LPC_EPWGp...`p.
  9a80: ff ff ff ff 5c 2f 03 5f 53 42 5f 47 44 43 4b 47  ....\/._SB_GDCKG
  9a90: 5f 49 44 a2 33 90 93 5c 2f 03 5f 53 42 5f 47 44  _ID.3..\/._SB_GD
  9aa0: 43 4b 47 47 49 44 0c ff ff ff ff 60 5b 22 0a 01  CKGGID.....`["..
  9ab0: 70 0c ff ff ff ff 5c 2f 03 5f 53 42 5f 47 44 43  p.....\/._SB_GDC
  9ac0: 4b 47 5f 49 44 76 60 70 0c ff ff ff ff 5c 2f 03  KG_IDv`p.....\/.
  9ad0: 5f 53 42 5f 47 44 43 4b 44 4f 49 44 a0 4f 08 91  _SB_GDCKDOID.O..
  9ae0: 93 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 44 49 44  .\/._SB_GDCKGDID
  9af0: 0c 24 4d 00 4c 93 5c 2f 03 5f 53 42 5f 47 44 43  .$M.L.\/._SB_GDC
  9b00: 4b 47 44 49 44 0c 24 4d 00 44 a0 36 93 5c 2f 05  KGDID.$M.D.6.\/.
  9b10: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  9b20: 42 47 49 44 0a 00 0a 11 5c 2f 05 5f 53 42 5f 50  BGID....\/._SB_P
  9b30: 43 49 30 4c 50 43 5f 45 43 5f 5f 4e 42 52 45 0a  CI0LPC_EC__NBRE.
  9b40: 11 a1 2a a0 28 48 50 41 43 70 0a 00 5c 2f 04 5f  ..*.(HPACp..\/._
  9b50: 53 42 5f 50 43 49 30 4c 50 43 5f 44 52 53 54 86  SB_PCI0LPC_DRST.
  9b60: 5c 2e 5f 53 42 5f 47 44 43 4b 0a 00 14 44 09 45  \._SB_GDCK...D.E
  9b70: 45 50 52 00 70 0a 00 60 a0 46 08 5c 48 38 44 52  EPR.p..`.F.\H8DR
  9b80: 70 0a 00 48 44 45 4f 70 0a 0a 48 44 45 43 a2 0e  p..HDEOp..HDEC..
  9b90: 92 7b 48 44 45 43 0a c0 00 5b 22 0a 01 a0 41 06  .{HDEC...["...A.
  9ba0: 92 7b 48 44 45 43 0a 40 00 70 0a 00 61 70 48 44  .{HDEC.@.p..apHD
  9bb0: 45 4e 62 70 0a 04 63 a2 11 63 72 61 7b 62 0a ff  ENbp..c..cra{b..
  9bc0: 00 61 7a 62 0a 08 62 76 63 70 48 44 45 50 62 70  .azb..bvcpHDEPbp
  9bd0: 0a 04 63 a2 11 63 72 61 7b 62 0a ff 00 61 7a 62  ..c..cra{b...azb
  9be0: 0a 08 62 76 63 72 61 48 44 45 4d 61 72 61 48 44  ..bvcraHDEMaraHD
  9bf0: 45 53 61 a0 0b 92 7b 61 0a ff 00 70 0a 01 60 a4  ESa...{a...p..`.
  9c00: 60 14 44 04 5f 53 54 41 00 70 47 47 49 44 60 a0  `.D._STA.pGGID`.
  9c10: 0b 92 5c 57 39 38 46 70 0a 00 61 a1 05 70 0a 0c  ..\W98Fp..a..p..
  9c20: 61 a0 1b 91 93 60 0a 00 93 60 0a 01 70 5c 2f 03  a....`...`..p\/.
  9c30: 5f 53 42 5f 47 44 43 4b 44 53 54 41 61 a0 06 93  _SB_GDCKDSTAa...
  9c40: 60 0a 02 a3 a4 61 14 48 0c 5f 49 4e 49 00 5c 2f  `....a.H._INI.\/
  9c50: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  9c60: 5f 44 41 54 54 0a 02 0a 01 a0 3e 93 47 47 49 44  _DATT.....>.GGID
  9c70: 0a 07 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  9c80: 5f 45 43 5f 5f 44 41 54 54 0a 01 0a 00 5c 2f 05  _EC__DATT....\/.
  9c90: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  9ca0: 44 41 54 54 0a 00 0a 01 a1 37 5c 2f 05 5f 53 42  DATT.....7\/._SB
  9cb0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 41 54  _PCI0LPC_EC__DAT
  9cc0: 54 0a 01 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30  T....\/._SB_PCI0
  9cd0: 4c 50 43 5f 45 43 5f 5f 44 41 54 54 0a 00 0a 00  LPC_EC__DATT....
  9ce0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  9cf0: 43 5f 5f 44 44 57 4b 0a 00 70 0a 01 5c 2f 04 5f  C__DDWK..p..\/._
  9d00: 53 42 5f 50 43 49 30 4c 50 43 5f 44 53 43 49 14  SB_PCI0LPC_DSCI.
  9d10: 2f 5f 44 43 4b 01 70 0a 00 60 a0 22 91 93 47 47  /_DCK.p..`."..GG
  9d20: 49 44 0a 00 93 47 47 49 44 0a 01 70 5c 2f 03 5f  ID...GGID..p\/._
  9d30: 53 42 5f 47 44 43 4b 44 44 43 4b 68 60 a4 60 08  SB_GDCKDDCKh`.`.
  9d40: 55 44 4f 50 0a 00 14 38 5f 45 4a 30 01 a0 18 93  UDOP...8_EJ0....
  9d50: 47 47 49 44 0a 00 5c 2f 03 5f 53 42 5f 47 44 43  GGID..\/._SB_GDC
  9d60: 4b 44 45 4a 30 68 a0 18 93 47 47 49 44 0a 01 5c  KDEJ0h...GGID..\
  9d70: 2f 03 5f 53 42 5f 47 44 43 4b 44 45 4a 30 68 14  /._SB_GDCKDEJ0h.
  9d80: 38 58 45 4a 33 01 a0 18 93 47 47 49 44 0a 00 5c  8XEJ3....GGID..\
  9d90: 2f 03 5f 53 42 5f 47 44 43 4b 44 45 4a 33 68 a0  /._SB_GDCKDEJ3h.
  9da0: 18 93 47 47 49 44 0a 01 5c 2f 03 5f 53 42 5f 47  ..GGID..\/._SB_G
  9db0: 44 43 4b 44 45 4a 33 68 14 38 5f 45 4a 34 01 a0  DCKDEJ3h.8_EJ4..
  9dc0: 18 93 47 47 49 44 0a 00 5c 2f 03 5f 53 42 5f 47  ..GGID..\/._SB_G
  9dd0: 44 43 4b 44 45 4a 34 68 a0 18 93 47 47 49 44 0a  DCKDEJ4h...GGID.
  9de0: 01 5c 2f 03 5f 53 42 5f 47 44 43 4b 44 45 4a 34  .\/._SB_GDCKDEJ4
  9df0: 68 14 36 50 45 4a 33 00 a0 17 93 47 47 49 44 0a  h.6PEJ3....GGID.
  9e00: 00 5c 2f 03 5f 53 42 5f 47 44 43 4b 50 44 45 33  .\/._SB_GDCKPDE3
  9e10: a0 17 93 47 47 49 44 0a 01 5c 2f 03 5f 53 42 5f  ...GGID..\/._SB_
  9e20: 47 44 43 4b 50 44 45 33 14 41 04 5f 42 44 4e 00  GDCKPDE3.A._BDN.
  9e30: 70 0a 00 60 a0 19 93 47 47 49 44 0a 00 70 5c 2f  p..`...GGID..p\/
  9e40: 03 5f 53 42 5f 47 44 43 4b 52 44 49 44 60 a0 19  ._SB_GDCKRDID`..
  9e50: 93 47 47 49 44 0a 01 70 5c 2f 03 5f 53 42 5f 47  .GGID..p\/._SB_G
  9e60: 44 43 4b 52 44 49 44 60 a4 60 14 41 04 5f 55 49  DCKRDID`.`.A._UI
  9e70: 44 00 70 0a 00 60 a0 19 93 47 47 49 44 0a 00 70  D.p..`...GGID..p
  9e80: 5c 2f 03 5f 53 42 5f 47 44 43 4b 52 44 53 52 60  \/._SB_GDCKRDSR`
  9e90: a0 19 93 47 47 49 44 0a 01 70 5c 2f 03 5f 53 42  ...GGID..p\/._SB
  9ea0: 5f 47 44 43 4b 52 44 53 52 60 a4 60 14 2e 47 50  _GDCKRDSR`.`..GP
  9eb0: 54 53 01 5c 2f 03 5f 53 42 5f 47 44 43 4b 44 50  TS.\/._SB_GDCKDP
  9ec0: 54 53 68 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  TSh\/._SB_PCI0LP
  9ed0: 43 5f 45 43 5f 5f 52 50 54 53 68 14 48 04 47 57  C_EC__RPTSh.H.GW
  9ee0: 41 4b 01 5c 2f 03 5f 53 42 5f 47 44 43 4b 44 57  AK.\/._SB_GDCKDW
  9ef0: 41 4b 68 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  AKh\/._SB_PCI0LP
  9f00: 43 5f 45 43 5f 5f 52 57 41 4b 68 5c 2f 05 5f 53  C_EC__RWAKh\/._S
  9f10: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 44  B_PCI0LPC_EC__DD
  9f20: 57 4b 0a 00 14 36 47 47 50 45 00 a0 17 93 47 47  WK...6GGPE....GG
  9f30: 49 44 0a 00 5c 2f 03 5f 53 42 5f 47 44 43 4b 44  ID..\/._SB_GDCKD
  9f40: 47 50 45 a0 17 93 47 47 49 44 0a 01 5c 2f 03 5f  GPE...GGID..\/._
  9f50: 53 42 5f 47 44 43 4b 44 47 50 45 08 47 5f 49 44  SB_GDCKDGPE.G_ID
  9f60: 0c ff ff ff ff 14 4e 06 47 47 49 44 00 70 47 5f  ......N.GGID.pG_
  9f70: 49 44 60 a0 4e 05 93 60 0c ff ff ff ff 70 5c 2f  ID`.N..`.....p\/
  9f80: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 44 4b 49  ._SB_PCI0LPC_DKI
  9f90: 30 60 70 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50  0`p\/._SB_PCI0LP
  9fa0: 43 5f 44 4b 49 31 61 70 5c 2f 04 5f 53 42 5f 50  C_DKI1ap\/._SB_P
  9fb0: 43 49 30 4c 50 43 5f 44 4b 49 32 62 7d 60 79 61  CI0LPC_DKI2b}`ya
  9fc0: 0a 01 00 60 7d 60 79 62 0a 02 00 60 70 60 47 5f  ...`}`yb...`p`G_
  9fd0: 49 44 a4 60 10 42 2a 5c 2f 04 5f 53 42 5f 50 43  ID.`.B*\/._SB_PC
  9fe0: 49 30 4c 50 43 5f 45 43 5f 5f 14 49 07 5f 51 35  I0LPC_EC__.I._Q5
  9ff0: 30 00 70 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47  0.p\/._SB_GDCKGG
  a000: 49 44 60 a0 40 06 92 93 60 0a 07 5c 2f 05 5f 53  ID`.@...`..\/._S
  a010: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45  B_PCI0LPC_EC__LE
  a020: 44 5f 0a 08 0a 80 5c 2f 05 5f 53 42 5f 50 43 49  D_....\/._SB_PCI
  a030: 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 09 0a  0LPC_EC__LED_...
  a040: c0 a0 13 5c 57 39 38 46 86 5c 2e 5f 53 42 5f 47  ...\W98F.\._SB_G
  a050: 44 43 4b 0a 01 a1 0e 86 5c 2e 5f 53 42 5f 47 44  DCK.....\._SB_GD
  a060: 43 4b 0a 03 14 46 19 44 41 54 54 02 70 0a 00 60  CK...F.DATT.p..`
  a070: a0 42 08 93 68 0a 00 a0 28 93 69 0a 01 a0 11 5c  .B..h...(.i....\
  a080: 48 38 44 52 7d 48 41 4d 36 0a 80 48 41 4d 36 a1  H8DR}HAM6..HAM6.
  a090: 0c 5c 4d 42 45 43 0a 16 0a ff 0a 80 70 0a 01 60  .\MBEC......p..`
  a0a0: a0 24 93 69 0a 00 a0 11 5c 48 38 44 52 7b 48 41  .$.i....\H8DR{HA
  a0b0: 4d 36 0a 7f 48 41 4d 36 a1 0c 5c 4d 42 45 43 0a  M6..HAM6..\MBEC.
  a0c0: 16 0a 7f 0a 00 a0 2d 93 69 0a 02 a0 14 5c 48 38  ......-.i....\H8
  a0d0: 44 52 a0 0d 7b 48 41 4d 36 0a 80 00 70 0a 01 60  DR..{HAM6...p..`
  a0e0: a1 12 a0 10 7b 5c 52 42 45 43 0a 16 0a 80 00 70  ....{\RBEC.....p
  a0f0: 0a 01 60 a0 42 08 93 68 0a 01 a0 28 93 69 0a 01  ..`.B..h...(.i..
  a100: a0 11 5c 48 38 44 52 7d 48 41 4d 41 0a 01 48 41  ..\H8DR}HAMA..HA
  a110: 4d 41 a1 0c 5c 4d 42 45 43 0a 1a 0a ff 0a 01 70  MA..\MBEC......p
  a120: 0a 01 60 a0 24 93 69 0a 00 a0 11 5c 48 38 44 52  ..`.$.i....\H8DR
  a130: 7b 48 41 4d 41 0a fe 48 41 4d 41 a1 0c 5c 4d 42  {HAMA..HAMA..\MB
  a140: 45 43 0a 1a 0a fe 0a 00 a0 2d 93 69 0a 02 a0 14  EC.......-.i....
  a150: 5c 48 38 44 52 a0 0d 7b 48 41 4d 41 0a 01 00 70  \H8DR..{HAMA...p
  a160: 0a 01 60 a1 12 a0 10 7b 5c 52 42 45 43 0a 1a 0a  ..`....{\RBEC...
  a170: 01 00 70 0a 01 60 a0 42 08 93 68 0a 02 a0 28 93  ..p..`.B..h...(.
  a180: 69 0a 01 a0 11 5c 48 38 44 52 7d 48 41 4d 42 0a  i....\H8DR}HAMB.
  a190: 01 48 41 4d 42 a1 0c 5c 4d 42 45 43 0a 1b 0a ff  .HAMB..\MBEC....
  a1a0: 0a 01 70 0a 01 60 a0 24 93 69 0a 00 a0 11 5c 48  ..p..`.$.i....\H
  a1b0: 38 44 52 7b 48 41 4d 42 0a fe 48 41 4d 42 a1 0c  8DR{HAMB..HAMB..
  a1c0: 5c 4d 42 45 43 0a 1a 0a fe 0a 00 a0 2d 93 69 0a  \MBEC.......-.i.
  a1d0: 02 a0 14 5c 48 38 44 52 a0 0d 7b 48 41 4d 42 0a  ...\H8DR..{HAMB.
  a1e0: 01 00 70 0a 01 60 a1 12 a0 10 7b 5c 52 42 45 43  ..p..`....{\RBEC
  a1f0: 0a 1b 0a 01 00 70 0a 01 60 a4 60 14 4b 07 44 44  .....p..`.`.K.DD
  a200: 57 4b 01 70 0a 00 60 a0 23 93 68 0a 01 a0 0c 5c  WK.p..`.#.h....\
  a210: 48 38 44 52 70 01 48 57 44 4b a1 0c 5c 4d 42 45  H8DRp.HWDK..\MBE
  a220: 43 0a 32 0a ff 0a 08 70 0a 01 60 a0 1f 93 68 0a  C.2....p..`...h.
  a230: 00 a0 0c 5c 48 38 44 52 70 00 48 57 44 4b a1 0c  ...\H8DRp.HWDK..
  a240: 5c 4d 42 45 43 0a 32 0a f7 0a 00 a0 29 93 68 0a  \MBEC.2.....).h.
  a250: 02 a0 10 5c 48 38 44 52 a0 09 48 57 44 4b 70 0a  ...\H8DR..HWDKp.
  a260: 01 60 a1 12 a0 10 7b 5c 52 42 45 43 0a 32 0a 08  .`....{\RBEC.2..
  a270: 00 70 0a 01 60 a4 60 10 23 5c 2f 04 5f 53 42 5f  .p..`.`.#\/._SB_
  a280: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 14 07 52 50  PCI0LPC_EC__..RP
  a290: 54 53 01 a3 14 06 52 57 41 4b 01 10 42 10 5c 2f  TS....RWAK..B.\/
  a2a0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  a2b0: 5f 14 4e 04 5f 51 31 43 00 a0 3f 5c 2f 06 5f 53  _.N._Q1C..?\/._S
  a2c0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  a2d0: 45 59 4d 48 4b 4b 0c 00 00 20 00 5c 2f 06 5f 53  EYMHKK... .\/._S
  a2e0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  a2f0: 45 59 4d 48 4b 51 0b 16 10 5c 55 43 4d 53 0a 00  EYMHKQ...\UCMS..
  a300: 14 4e 04 5f 51 31 44 00 a0 3f 5c 2f 06 5f 53 42  .N._Q1D..?\/._SB
  a310: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  a320: 59 4d 48 4b 4b 0c 00 00 10 00 5c 2f 06 5f 53 42  YMHKK.....\/._SB
  a330: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  a340: 59 4d 48 4b 51 0b 15 10 5c 55 43 4d 53 0a 01 14  YMHKQ...\UCMS...
  a350: 4e 04 5f 51 31 45 00 a0 3f 5c 2f 06 5f 53 42 5f  N._Q1E..?\/._SB_
  a360: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59  PCI0LPC_EC__HKEY
  a370: 4d 48 4b 4b 0c 00 00 40 00 5c 2f 06 5f 53 42 5f  MHKK...@.\/._SB_
  a380: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59  PCI0LPC_EC__HKEY
  a390: 4d 48 4b 51 0b 17 10 5c 55 43 4d 53 0a 02 10 44  MHKQ...\UCMS...D
  a3a0: 13 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  a3b0: 45 43 5f 5f 14 4c 04 5f 51 31 34 00 a0 3d 5c 2f  EC__.L._Q14..=\/
  a3c0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  a3d0: 5f 48 4b 45 59 4d 48 4b 4b 0b 00 80 5c 2f 06 5f  _HKEYMHKK...\/._
  a3e0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  a3f0: 4b 45 59 4d 48 4b 51 0b 10 10 5c 55 43 4d 53 0a  KEYMHKQ...\UCMS.
  a400: 04 14 4e 04 5f 51 31 35 00 a0 3f 5c 2f 06 5f 53  ..N._Q15..?\/._S
  a410: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  a420: 45 59 4d 48 4b 4b 0c 00 00 01 00 5c 2f 06 5f 53  EYMHKK.....\/._S
  a430: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b  B_PCI0LPC_EC__HK
  a440: 45 59 4d 48 4b 51 0b 11 10 5c 55 43 4d 53 0a 05  EYMHKQ...\UCMS..
  a450: 14 42 08 50 57 4d 41 00 a0 0a 93 5c 42 52 46 51  .B.PWMA....\BRFQ
  a460: 0a 01 a3 a1 4f 06 a0 0a 93 5c 42 52 46 51 0a 03  ....O....\BRFQ..
  a470: a3 a1 41 06 70 5c 55 43 4d 53 0a 15 60 a0 0d 93  ..A.p\UCMS..`...
  a480: 60 0a 00 70 0a 01 5c 42 52 46 51 a1 09 70 0a 03  `..p..\BRFQ..p..
  a490: 5c 42 52 46 51 a0 3d 5c 2f 06 5f 53 42 5f 50 43  \BRFQ.=\/._SB_PC
  a4a0: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  a4b0: 4b 4b 0b 0c 08 5c 2f 06 5f 53 42 5f 50 43 49 30  KK...\/._SB_PCI0
  a4c0: 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51  LPC_EC__HKEYMHKQ
  a4d0: 0b 10 50 10 44 06 5c 2f 04 5f 53 42 5f 50 43 49  ..P.D.\/._SB_PCI
  a4e0: 30 4c 50 43 5f 45 43 5f 5f 14 4e 04 5f 51 31 39  0LPC_EC__.N._Q19
  a4f0: 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  ..?\/._SB_PCI0LP
  a500: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0c 00  C_EC__HKEYMHKK..
  a510: 00 80 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  ...\/._SB_PCI0LP
  a520: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 18  C_EC__HKEYMHKQ..
  a530: 10 5c 55 43 4d 53 0a 03 10 44 06 5c 2f 04 5f 53  .\UCMS...D.\/._S
  a540: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 14 4e  B_PCI0LPC_EC__.N
  a550: 04 5f 51 36 33 00 a0 3f 5c 2f 06 5f 53 42 5f 50  ._Q63..?\/._SB_P
  a560: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  a570: 48 4b 4b 0c 00 00 08 00 5c 2f 06 5f 53 42 5f 50  HKK.....\/._SB_P
  a580: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  a590: 48 4b 51 0b 14 10 5c 55 43 4d 53 0a 0b 10 43 09  HKQ...\UCMS...C.
  a5a0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  a5b0: 43 5f 5f 14 0a 5f 51 37 30 00 46 4e 53 54 14 0a  C__.._Q70.FNST..
  a5c0: 5f 51 37 32 00 46 4e 53 54 14 0a 5f 51 37 33 00  _Q72.FNST.._Q73.
  a5d0: 46 4e 53 54 14 4c 05 46 4e 53 54 00 a0 12 5c 48  FNST.L.FNST...\H
  a5e0: 38 44 52 70 48 46 4e 53 60 70 48 46 4e 45 61 a1  8DRpHFNS`pHFNEa.
  a5f0: 17 7b 5c 52 42 45 43 0a 0e 0a 03 60 7b 5c 52 42  .{\RBEC....`{\RB
  a600: 45 43 0a 00 0a 08 61 a0 29 61 a0 0c 93 60 0a 00  EC....a.)a...`..
  a610: 5c 55 43 4d 53 0a 11 a0 0c 93 60 0a 01 5c 55 43  \UCMS.....`..\UC
  a620: 4d 53 0a 0f a0 0c 93 60 0a 02 5c 55 43 4d 53 0a  MS.....`..\UCMS.
  a630: 10 10 49 3c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  ..I<\/._SB_PCI0L
  a640: 50 43 5f 45 43 5f 5f 48 4b 45 59 08 57 47 46 4c  PC_EC__HKEY.WGFL
  a650: 0a 00 14 1e 57 4c 53 57 00 a4 5c 2f 05 5f 53 42  ....WLSW..\/._SB
  a660: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 47 53 54  _PCI0LPC_EC__GST
  a670: 53 14 42 04 47 57 41 4e 00 70 0a 00 60 a0 0e 7b  S.B.GWAN.p..`..{
  a680: 57 47 46 4c 0a 01 00 7d 60 0a 01 60 a0 0b 7b 57  WGFL...}`..`..{W
  a690: 47 46 4c 0a 08 00 a4 60 a0 0a 57 50 57 53 7d 60  GFL....`..WPWS}`
  a6a0: 0a 02 60 a0 0e 7b 57 47 46 4c 0a 04 00 7d 60 0a  ..`..{WGFL...}`.
  a6b0: 04 60 a4 60 14 4b 04 53 57 41 4e 01 a0 0c 7b 68  .`.`.K.SWAN...{h
  a6c0: 0a 02 00 57 50 57 43 0a 01 a1 07 57 50 57 43 0a  ...WPWC....WPWC.
  a6d0: 00 a0 18 7b 68 0a 04 00 7d 57 47 46 4c 0a 04 57  ...{h...}WGFL..W
  a6e0: 47 46 4c 5c 57 47 53 56 0a 02 a1 15 7b 57 47 46  GFL\WGSV....{WGF
  a6f0: 4c 80 0a 04 00 57 47 46 4c 5c 57 47 53 56 0a 03  L....WGFL\WGSV..
  a700: 14 42 04 47 42 44 43 00 70 0a 00 60 a0 0e 7b 57  .B.GBDC.p..`..{W
  a710: 47 46 4c 0a 10 00 7d 60 0a 01 60 a0 0b 7b 57 47  GFL...}`..`..{WG
  a720: 46 4c 0a 80 00 a4 60 a0 0a 42 50 57 53 7d 60 0a  FL....`..BPWS}`.
  a730: 02 60 a0 0e 7b 57 47 46 4c 0a 40 00 7d 60 0a 04  .`..{WGFL.@.}`..
  a740: 60 a4 60 14 4b 04 53 42 44 43 01 a0 0c 7b 68 0a  `.`.K.SBDC...{h.
  a750: 02 00 42 50 57 43 0a 01 a1 07 42 50 57 43 0a 00  ..BPWC....BPWC..
  a760: a0 18 7b 68 0a 04 00 7d 57 47 46 4c 0a 40 57 47  ..{h...}WGFL.@WG
  a770: 46 4c 5c 42 4c 54 48 0a 02 a1 15 7b 57 47 46 4c  FL\BLTH....{WGFL
  a780: 80 0a 40 00 57 47 46 4c 5c 42 4c 54 48 0a 03 14  ..@.WGFL\BLTH...
  a790: 3b 57 50 57 53 00 a0 1f 5c 48 38 44 52 70 5c 2f  ;WPWS...\H8DRp\/
  a7a0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  a7b0: 5f 44 43 57 57 60 a1 12 70 7a 7b 5c 52 42 45 43  _DCWW`..pz{\RBEC
  a7c0: 0a 3a 0a 40 00 0a 06 00 60 a4 60 14 19 57 54 47  .:.@....`.`..WTG
  a7d0: 4c 00 a0 12 7b 57 47 46 4c 0a 01 00 57 50 57 43  L...{WGFL...WPWC
  a7e0: 92 57 50 57 53 14 42 09 57 50 57 43 01 a0 4e 04  .WPWS.B.WPWC..N.
  a7f0: 90 68 90 7b 57 47 46 4c 0a 01 00 92 7b 57 47 46  .h.{WGFL....{WGF
  a800: 4c 0a 08 00 a0 1f 5c 48 38 44 52 70 01 5c 2f 05  L.....\H8DRp.\/.
  a810: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  a820: 44 43 57 57 a1 0c 5c 4d 42 45 43 0a 3a 0a ff 0a  DCWW..\MBEC.:...
  a830: 40 7d 57 47 46 4c 0a 02 57 47 46 4c a1 3b a0 1f  @}WGFL..WGFL.;..
  a840: 5c 48 38 44 52 70 00 5c 2f 05 5f 53 42 5f 50 43  \H8DRp.\/._SB_PC
  a850: 49 30 4c 50 43 5f 45 43 5f 5f 44 43 57 57 a1 0c  I0LPC_EC__DCWW..
  a860: 5c 4d 42 45 43 0a 3a 0a bf 0a 00 7b 57 47 46 4c  \MBEC.:....{WGFL
  a870: 80 0a 02 00 57 47 46 4c 14 3b 42 50 57 53 00 a0  ....WGFL.;BPWS..
  a880: 1f 5c 48 38 44 52 70 5c 2f 05 5f 53 42 5f 50 43  .\H8DRp\/._SB_PC
  a890: 49 30 4c 50 43 5f 45 43 5f 5f 44 43 42 44 60 a1  I0LPC_EC__DCBD`.
  a8a0: 12 70 7a 7b 5c 52 42 45 43 0a 3a 0a 10 00 0a 04  .pz{\RBEC.:.....
  a8b0: 00 60 a4 60 14 19 42 54 47 4c 00 a0 12 7b 57 47  .`.`..BTGL...{WG
  a8c0: 46 4c 0a 10 00 42 50 57 43 92 42 50 57 53 14 42  FL...BPWC.BPWS.B
  a8d0: 09 42 50 57 43 01 a0 4e 04 90 68 90 7b 57 47 46  .BPWC..N..h.{WGF
  a8e0: 4c 0a 10 00 92 7b 57 47 46 4c 0a 80 00 a0 1f 5c  L....{WGFL.....\
  a8f0: 48 38 44 52 70 01 5c 2f 05 5f 53 42 5f 50 43 49  H8DRp.\/._SB_PCI
  a900: 30 4c 50 43 5f 45 43 5f 5f 44 43 42 44 a1 0c 5c  0LPC_EC__DCBD..\
  a910: 4d 42 45 43 0a 3a 0a ff 0a 10 7d 57 47 46 4c 0a  MBEC.:....}WGFL.
  a920: 20 57 47 46 4c a1 3b a0 1f 5c 48 38 44 52 70 00   WGFL.;..\H8DRp.
  a930: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  a940: 43 5f 5f 44 43 42 44 a1 0c 5c 4d 42 45 43 0a 3a  C__DCBD..\MBEC.:
  a950: 0a ef 0a 00 7b 57 47 46 4c 80 0a 20 00 57 47 46  ....{WGFL.. .WGF
  a960: 4c 14 3b 57 47 49 4e 00 70 0a 00 57 47 46 4c 70  L.;WGIN.p..WGFLp
  a970: 5c 57 47 53 56 0a 01 57 47 46 4c a0 10 57 50 57  \WGSV..WGFL..WPW
  a980: 53 7d 57 47 46 4c 0a 02 57 47 46 4c a0 10 42 50  S}WGFL..WGFL..BP
  a990: 57 53 7d 57 47 46 4c 0a 20 57 47 46 4c 14 36 57  WS}WGFL. WGFL.6W
  a9a0: 47 50 53 01 a0 0d 92 95 68 0a 04 5c 42 4c 54 48  GPS.....h..\BLTH
  a9b0: 0a 05 a0 10 92 7b 57 47 46 4c 0a 04 00 57 50 57  .....{WGFL...WPW
  a9c0: 43 0a 00 a0 10 92 7b 57 47 46 4c 0a 40 00 42 50  C.....{WGFL.@.BP
  a9d0: 57 43 0a 00 14 26 57 47 57 4b 01 a0 0f 7b 57 47  WC...&WGWK...{WG
  a9e0: 46 4c 0a 20 00 42 50 57 43 0a 01 a0 0f 7b 57 47  FL. .BPWC....{WG
  a9f0: 46 4c 0a 02 00 57 50 57 43 0a 01 10 39 5c 2f 04  FL...WPWC...9\/.
  aa00: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  aa10: 14 24 5f 51 34 31 00 5c 2f 06 5f 53 42 5f 50 43  .$_Q41.\/._SB_PC
  aa20: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48  I0LPC_EC__HKEYMH
  aa30: 4b 51 0b 00 70 10 4e 0b 5c 5f 53 42 5f 5b 82 45  KQ..p.N.\_SB_[.E
  aa40: 0b 4c 43 49 4f 08 5f 48 49 44 0c 30 ae 00 01 08  .LCIO._HID.0....
  aa50: 5f 43 49 44 0c 41 d0 0a 06 14 29 5f 53 54 41 00  _CID.A....)_STA.
  aa60: a0 1d 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43  ..\/._SB_PCI0LPC
  aa70: 5f 45 43 5f 5f 42 53 54 41 0a 03 a4 0a 0f a1 04  _EC__BSTA.......
  aa80: a4 0a 00 14 40 07 5f 45 4a 30 01 5c 2f 05 5f 53  ....@._EJ0.\/._S
  aa90: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 45  B_PCI0LPC_EC__BE
  aaa0: 4a 30 68 a0 40 05 91 93 5c 2f 03 5f 53 42 5f 47  J0h.@...\/._SB_G
  aab0: 44 43 4b 47 44 49 44 0c 24 4d 00 4c 93 5c 2f 03  DCKGDID.$M.L.\/.
  aac0: 5f 53 42 5f 47 44 43 4b 47 44 49 44 0c 24 4d 00  _SB_GDCKGDID.$M.
  aad0: 44 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  Dp..\/._SB_PCI0L
  aae0: 50 43 5f 44 52 53 54 86 5c 2e 5f 53 42 5f 47 44  PC_DRST.\._SB_GD
  aaf0: 43 4b 0a 00 10 23 5c 2f 04 5f 53 42 5f 50 43 49  CK...#\/._SB_PCI
  ab00: 30 45 58 50 33 45 58 50 44 08 5f 45 4a 44 0d 5f  0EXP3EXPD._EJD._
  ab10: 53 42 2e 47 44 43 4b 00 10 27 5c 2f 05 5f 53 42  SB.GDCK..'\/._SB
  ab20: 5f 50 43 49 30 55 53 42 32 55 52 54 48 55 50 44  _PCI0USB2URTHUPD
  ab30: 4b 08 5f 45 4a 44 0d 5f 53 42 2e 47 44 43 4b 00  K._EJD._SB.GDCK.
  ab40: 10 27 5c 2f 05 5f 53 42 5f 50 43 49 30 55 53 42  .'\/._SB_PCI0USB
  ab50: 37 55 52 54 48 55 50 44 4b 08 5f 45 4a 44 0d 5f  7URTHUPDK._EJD._
  ab60: 53 42 2e 47 44 43 4b 00 10 31 5c 2f 05 5f 53 42  SB.GDCK..1\/._SB
  ab70: 5f 50 43 49 30 55 53 42 31 55 52 54 48 55 50 45  _PCI0USB1URTHUPE
  ab80: 58 08 5f 45 4a 44 0d 5f 53 42 2e 50 43 49 30 2e  X._EJD._SB.PCI0.
  ab90: 45 58 50 32 2e 45 58 55 50 00 10 31 5c 2f 05 5f  EXP2.EXUP..1\/._
  aba0: 53 42 5f 50 43 49 30 55 53 42 37 55 52 54 48 55  SB_PCI0USB7URTHU
  abb0: 50 45 58 08 5f 45 4a 44 0d 5f 53 42 2e 50 43 49  PEX._EJD._SB.PCI
  abc0: 30 2e 45 58 50 32 2e 45 58 55 50 00 10 32 5c 2f  0.EXP2.EXUP..2\/
  abd0: 04 5f 53 42 5f 50 43 49 30 45 58 50 32 45 58 55  ._SB_PCI0EXP2EXU
  abe0: 50 08 5f 45 4a 44 0d 5f 53 42 2e 50 43 49 30 2e  P._EJD._SB.PCI0.
  abf0: 55 53 42 37 2e 55 52 54 48 2e 55 50 45 58 00 08  USB7.URTH.UPEX..
  ac00: 5c 5f 53 30 5f 12 0a 04 0a 00 0a 00 0a 00 0a 00  \_S0_...........
  ac10: 08 5c 5f 53 33 5f 12 0a 04 0a 05 0a 05 0a 00 0a  .\_S3_..........
  ac20: 00 08 5c 5f 53 34 5f 12 0a 04 0a 06 0a 06 0a 00  ..\_S4_.........
  ac30: 0a 00 08 5c 5f 53 35 5f 12 0a 04 0a 07 0a 07 0a  ...\_S5_........
  ac40: 00 0a 00 14 42 1a 5c 5f 50 54 53 01 70 0a 01 60  ....B.\_PTS.p..`
  ac50: a0 0c 93 68 5c 53 50 53 5f 70 0a 00 60 a0 0f 91  ...h\SPS_p..`...
  ac60: 93 68 0a 00 92 95 68 0a 06 70 0a 00 60 a0 48 17  .h....h..p..`.H.
  ac70: 60 70 68 5c 53 50 53 5f 5c 2f 06 5f 53 42 5f 50  `ph\SPS_\/._SB_P
  ac80: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d  CI0LPC_EC__HKEYM
  ac90: 48 4b 45 0a 00 a0 1f 5c 2f 05 5f 53 42 5f 50 43  HKE....\/._SB_PC
  aca0: 49 30 4c 50 43 5f 45 43 5f 5f 4b 42 4c 54 5c 55  I0LPC_EC__KBLT\U
  acb0: 43 4d 53 0a 0d a0 47 05 93 68 0a 01 70 5c 2f 05  CMS...G..h..p\/.
  acc0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  acd0: 48 46 4e 49 5c 46 4e 49 44 70 0a 00 5c 2f 05 5f  HFNI\FNIDp..\/._
  ace0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  acf0: 46 4e 49 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49  FNIp..\/._SB_PCI
  ad00: 30 4c 50 43 5f 45 43 5f 5f 48 46 53 50 a0 32 93  0LPC_EC__HFSP.2.
  ad10: 68 0a 03 5c 56 56 50 44 0a 03 5c 54 52 41 50 70  h..\VVPD..\TRAPp
  ad20: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45  \/._SB_PCI0LPC_E
  ad30: 43 5f 5f 41 43 5f 5f 5f 50 53 52 5c 41 43 53 54  C__AC___PSR\ACST
  ad40: a0 29 93 68 0a 04 5c 2f 03 5f 53 42 5f 53 4c 50  .).h..\/._SB_SLP
  ad50: 42 5f 50 53 57 0a 00 a0 0d 5c 53 50 45 4e 5c 53  B_PSW....\SPEN\S
  ad60: 54 45 50 0a 07 5c 54 52 41 50 a0 0a 93 68 0a 05  TEP..\TRAP...h..
  ad70: 5c 54 52 41 50 5c 2f 05 5f 53 42 5f 50 43 49 30  \TRAP\/._SB_PCI0
  ad80: 4c 50 43 5f 45 43 5f 5f 42 50 54 53 68 a0 3c 92  LPC_EC__BPTSh.<.
  ad90: 93 68 0a 05 70 0a 01 5c 2f 05 5f 53 42 5f 50 43  .h..p..\/._SB_PC
  ada0: 49 30 4c 50 43 5f 45 43 5f 5f 48 43 4d 55 5c 2f  I0LPC_EC__HCMU\/
  adb0: 03 5f 53 42 5f 47 44 43 4b 47 50 54 53 68 a0 0b  ._SB_GDCKGPTSh..
  adc0: 5c 57 39 38 46 5c 43 42 52 49 5c 2f 06 5f 53 42  \W98F\CBRI\/._SB
  add0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45  _PCI0LPC_EC__HKE
  ade0: 59 57 47 50 53 68 08 57 41 4b 49 12 06 02 0a 00  YWGPSh.WAKI.....
  adf0: 0a 00 14 42 49 5c 5f 57 41 4b 01 a0 10 91 93 68  ...BI\_WAK.....h
  ae00: 0a 00 92 95 68 0a 05 a4 57 41 4b 49 70 0a 00 5c  ....h...WAKIp..\
  ae10: 53 50 53 5f 70 0a 00 5c 2f 05 5f 53 42 5f 50 43  SPS_p..\/._SB_PC
  ae20: 49 30 4c 50 43 5f 45 43 5f 5f 48 43 4d 55 70 0a  I0LPC_EC__HCMUp.
  ae30: 80 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  ae40: 45 43 5f 5f 48 46 53 50 5c 2f 05 5f 53 42 5f 50  EC__HFSP\/._SB_P
  ae50: 43 49 30 4c 50 43 5f 45 43 5f 5f 45 56 4e 54 0a  CI0LPC_EC__EVNT.
  ae60: 01 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  ae70: 45 43 5f 5f 48 4b 45 59 4d 48 4b 45 0a 01 5c 2f  EC__HKEYMHKE..\/
  ae80: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  ae90: 5f 46 4e 53 54 a0 22 93 68 0a 01 70 5c 2f 05 5f  _FNST.".h..p\/._
  aea0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  aeb0: 46 4e 49 5c 46 4e 49 44 a0 41 13 93 68 0a 03 54  FNI\FNID.A..h..T
  aec0: 48 52 4d 0a 00 a0 45 04 5c 57 58 50 46 70 0a 00  HRM...E.\WXPFp..
  aed0: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43  \/._SB_PCI0LPC_C
  aee0: 34 43 33 a0 27 5c 4f 53 43 34 86 5c 2e 5f 50 52  4C3.'\OSC4.\._PR
  aef0: 5f 43 50 55 30 0a 81 a0 13 5c 4d 50 45 4e 86 5c  _CPU0....\MPEN.\
  af00: 2e 5f 50 52 5f 43 50 55 31 0a 81 a1 44 07 a0 41  ._PR_CPU1...D..A
  af10: 07 5c 57 4e 54 46 a0 32 5c 2f 06 5f 53 42 5f 50  .\WNTF.2\/._SB_P
  af20: 43 49 30 4c 50 43 5f 45 43 5f 5f 41 43 5f 5f 5f  CI0LPC_EC__AC___
  af30: 50 53 52 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49  PSRp..\/._SB_PCI
  af40: 30 4c 50 43 5f 43 34 43 33 a1 36 a0 1c 5c 43 57  0LPC_C4C3.6..\CW
  af50: 41 53 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30  ASp..\/._SB_PCI0
  af60: 4c 50 43 5f 43 34 43 33 a1 17 70 0a 01 5c 2f 04  LPC_C4C3..p..\/.
  af70: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43 34 43 33  _SB_PCI0LPC_C4C3
  af80: a0 3a 92 93 5c 41 43 53 54 5c 2f 06 5f 53 42 5f  .:..\ACST\/._SB_
  af90: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 41 43 5f 5f  PCI0LPC_EC__AC__
  afa0: 5f 50 53 52 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  _PSR\/._SB_PCI0L
  afb0: 50 43 5f 45 43 5f 5f 41 54 4d 43 a0 2e 90 7b 5c  PC_EC__ATMC...{\
  afc0: 43 46 47 44 0c 00 00 00 01 00 90 5c 57 58 50 46  CFGD.......\WXPF
  afd0: 92 94 5c 57 53 50 56 0a 01 a0 10 7b 5c 43 46 47  ..\WSPV....{\CFG
  afe0: 44 0a f0 00 50 50 4d 53 0a 00 a0 40 13 93 68 0a  D...PPMS...@..h.
  aff0: 04 a0 0b 44 54 53 45 54 48 52 4d 0a 02 a0 13 5c  ...DTSETHRM....\
  b000: 57 39 38 46 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a  W98F.\._SB_SLPB.
  b010: 02 a0 1f 5c 57 4d 45 46 5c 2f 05 5f 53 42 5f 50  ...\WMEF\/._SB_P
  b020: 43 49 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a  CI0LPC_EC__BEEP.
  b030: 05 a0 21 92 5c 57 39 38 46 70 0a 00 5c 2f 05 5f  ..!.\W98Fp..\/._
  b040: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48  SB_PCI0LPC_EC__H
  b050: 53 50 41 a0 2e 5c 57 58 50 46 a0 27 5c 4f 53 43  SPA..\WXPF.'\OSC
  b060: 34 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 81 a0 13  4.\._PR_CPU0....
  b070: 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43 50 55 31  \MPEN.\._PR_CPU1
  b080: 0a 81 a1 44 04 a0 41 04 5c 57 4e 54 46 a0 39 91  ...D..A.\WNTF.9.
  b090: 92 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  b0a0: 45 43 5f 5f 41 43 5f 5f 5f 50 53 52 5c 43 57 41  EC__AC___PSR\CWA
  b0b0: 53 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  Sp..\/._SB_PCI0L
  b0c0: 50 43 5f 43 34 43 33 a0 0d 5c 53 50 45 4e 5c 53  PC_C4C3..\SPEN\S
  b0d0: 54 45 50 0a 08 5c 2f 05 5f 53 42 5f 50 43 49 30  TEP..\/._SB_PCI0
  b0e0: 4c 50 43 5f 45 43 5f 5f 41 54 4d 43 a0 2e 90 7b  LPC_EC__ATMC...{
  b0f0: 5c 43 46 47 44 0c 00 00 00 01 00 90 5c 57 58 50  \CFGD.......\WXP
  b100: 46 92 94 5c 57 53 50 56 0a 01 a0 10 7b 5c 43 46  F..\WSPV....{\CF
  b110: 47 44 0a f0 00 50 50 4d 53 0a 00 a0 4f 07 7f 5c  GD...PPMS...O..\
  b120: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32 50 44  /._SB_PCI0EXP2PD
  b130: 53 5f 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50  S_\/._SB_PCI0EXP
  b140: 32 58 43 50 46 00 a0 2a 5c 2f 04 5f 53 42 5f 50  2XCPF..*\/._SB_P
  b150: 43 49 30 45 58 50 32 50 44 53 5f 70 0a 01 5c 2f  CI0EXP2PDS_p..\/
  b160: 04 5f 53 42 5f 50 43 49 30 45 58 50 32 58 43 50  ._SB_PCI0EXP2XCP
  b170: 46 a1 17 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49  F..p..\/._SB_PCI
  b180: 30 45 58 50 32 58 43 50 46 86 5c 2f 03 5f 53 42  0EXP2XCPF.\/._SB
  b190: 5f 50 43 49 30 45 58 50 32 0a 00 5c 2f 03 5f 53  _PCI0EXP2..\/._S
  b1a0: 42 5f 47 44 43 4b 47 57 41 4b 68 5c 2f 05 5f 53  B_GDCKGWAKh\/._S
  b1b0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 57  B_PCI0LPC_EC__BW
  b1c0: 41 4b 68 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  AKh\/._SB_PCI0LP
  b1d0: 43 5f 45 43 5f 5f 48 4b 45 59 57 47 57 4b 68 86  C_EC__HKEYWGWKh.
  b1e0: 5c 2e 5f 54 5a 5f 54 48 4d 30 0a 80 86 5c 2e 5f  \._TZ_THM0...\._
  b1f0: 54 5a 5f 54 48 4d 31 0a 80 5c 56 53 4c 44 5c 2f  TZ_THM1..\VSLD\/
  b200: 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 a0 31 90  ._SB_LID__LID.1.
  b210: 5c 57 39 38 46 92 5c 57 4d 45 46 86 5c 2f 03 5f  \W98F.\WMEF.\/._
  b220: 53 42 5f 50 43 49 30 55 53 42 30 0a 00 86 5c 2f  SB_PCI0USB0...\/
  b230: 03 5f 53 42 5f 50 43 49 30 55 53 42 31 0a 00 a0  ._SB_PCI0USB1...
  b240: 39 95 68 0a 04 a0 33 7b 5c 52 52 42 46 0a 02 00  9.h...3{\RRBF...
  b250: 79 68 0a 08 60 70 7d 0b 13 20 60 00 60 5c 2f 06  yh..`p}.. `.`\/.
  b260: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  b270: 48 4b 45 59 4d 48 4b 51 60 70 00 5c 52 52 42 46  HKEYMHKQ`p.\RRBF
  b280: a4 57 41 4b 49 10 4b 1f 5c 5f 53 49 5f 14 43 1f  .WAKI.K.\_SI_.C.
  b290: 5f 53 53 54 01 a0 3b 93 68 0a 00 5c 2f 05 5f 53  _SST..;.h..\/._S
  b2a0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45  B_PCI0LPC_EC__LE
  b2b0: 44 5f 0a 00 0a 00 5c 2f 05 5f 53 42 5f 50 43 49  D_....\/._SB_PCI
  b2c0: 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 07 0a  0LPC_EC__LED_...
  b2d0: 00 a0 42 06 93 68 0a 01 a0 25 91 5c 53 50 53 5f  ..B..h...%.\SPS_
  b2e0: 5c 57 4e 54 46 5c 2f 05 5f 53 42 5f 50 43 49 30  \WNTF\/._SB_PCI0
  b2f0: 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a 05 5c 2f  LPC_EC__BEEP..\/
  b300: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  b310: 5f 4c 45 44 5f 0a 00 0a 80 5c 2f 05 5f 53 42 5f  _LED_....\/._SB_
  b320: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f  PCI0LPC_EC__LED_
  b330: 0a 07 0a 00 a0 3b 93 68 0a 02 5c 2f 05 5f 53 42  .....;.h..\/._SB
  b340: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44  _PCI0LPC_EC__LED
  b350: 5f 0a 00 0a 80 5c 2f 05 5f 53 42 5f 50 43 49 30  _....\/._SB_PCI0
  b360: 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 07 0a c0  LPC_EC__LED_....
  b370: a0 46 0d 93 68 0a 03 a0 22 94 5c 53 50 53 5f 0a  .F..h...".\SPS_.
  b380: 03 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  b390: 45 43 5f 5f 42 45 45 50 0a 07 a1 4f 04 a0 31 93  EC__BEEP...O..1.
  b3a0: 5c 53 50 53 5f 0a 03 5c 2f 05 5f 53 42 5f 50 43  \SPS_..\/._SB_PC
  b3b0: 49 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a 03  I0LPC_EC__BEEP..
  b3c0: 5c 2f 03 5f 53 42 5f 47 44 43 4b 50 45 4a 33 a1  \/._SB_GDCKPEJ3.
  b3d0: 1a 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  b3e0: 45 43 5f 5f 42 45 45 50 0a 04 a0 24 93 5c 53 50  EC__BEEP...$.\SP
  b3f0: 53 5f 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  S_..\/._SB_PCI0L
  b400: 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 00 0a 00 a1  PC_EC__LED_.....
  b410: 1c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  b420: 45 43 5f 5f 4c 45 44 5f 0a 00 0a 80 5c 2f 05 5f  EC__LED_....\/._
  b430: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c  SB_PCI0LPC_EC__L
  b440: 45 44 5f 0a 07 0a 80 a0 39 93 68 0a 04 5c 2f 05  ED_.....9.h..\/.
  b450: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  b460: 42 45 45 50 0a 03 5c 2f 05 5f 53 42 5f 50 43 49  BEEP..\/._SB_PCI
  b470: 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 07 0a  0LPC_EC__LED_...
  b480: c0 10 43 3c 5c 5f 47 50 45 5b 01 4d 47 50 45 07  ..C<\_GPE[.MGPE.
  b490: 14 4e 0a 5f 4c 31 38 00 70 5c 2f 05 5f 53 42 5f  .N._L18.p\/._SB_
  b4a0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57 41 4b  PCI0LPC_EC__HWAK
  b4b0: 60 70 60 5c 52 52 42 46 5b 22 0a 0a a0 06 7b 60  `p`\RRBF["....{`
  b4c0: 0a 02 00 a0 29 7b 60 0a 04 00 a0 13 5c 57 39 38  ....){`.....\W98
  b4d0: 46 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a 02 a1 0e  F.\._SB_SLPB....
  b4e0: 86 5c 2e 5f 53 42 5f 4c 49 44 5f 0a 02 a0 22 7b  .\._SB_LID_..."{
  b4f0: 60 0a 08 00 5c 2f 03 5f 53 42 5f 47 44 43 4b 47  `...\/._SB_GDCKG
  b500: 47 50 45 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a 02  GPE.\._SB_SLPB..
  b510: a0 13 7b 60 0a 10 00 86 5c 2e 5f 53 42 5f 53 4c  ..{`....\._SB_SL
  b520: 50 42 0a 02 a0 06 7b 60 0a 40 00 a0 13 7b 60 0a  PB....{`.@...{`.
  b530: 80 00 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a 02 14  ...\._SB_SLPB...
  b540: 4b 0f 5f 4c 30 39 00 a0 3c 5c 2f 04 5f 53 42 5f  K._L09..<\/._SB_
  b550: 50 43 49 30 45 58 50 30 50 53 50 30 70 0a 01 5c  PCI0EXP0PSP0p..\
  b560: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 30 50 53  /._SB_PCI0EXP0PS
  b570: 50 30 86 5c 2f 03 5f 53 42 5f 50 43 49 30 45 58  P0.\/._SB_PCI0EX
  b580: 50 30 0a 02 a0 3c 5c 2f 04 5f 53 42 5f 50 43 49  P0...<\/._SB_PCI
  b590: 30 45 58 50 31 50 53 50 31 70 0a 01 5c 2f 04 5f  0EXP1PSP1p..\/._
  b5a0: 53 42 5f 50 43 49 30 45 58 50 31 50 53 50 31 86  SB_PCI0EXP1PSP1.
  b5b0: 5c 2f 03 5f 53 42 5f 50 43 49 30 45 58 50 31 0a  \/._SB_PCI0EXP1.
  b5c0: 02 a0 3c 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58  ..<\/._SB_PCI0EX
  b5d0: 50 32 50 53 50 32 70 0a 01 5c 2f 04 5f 53 42 5f  P2PSP2p..\/._SB_
  b5e0: 50 43 49 30 45 58 50 32 50 53 50 32 86 5c 2f 03  PCI0EXP2PSP2.\/.
  b5f0: 5f 53 42 5f 50 43 49 30 45 58 50 32 0a 02 a0 3c  _SB_PCI0EXP2...<
  b600: 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 33 50  \/._SB_PCI0EXP3P
  b610: 53 50 33 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49  SP3p..\/._SB_PCI
  b620: 30 45 58 50 33 50 53 50 33 86 5c 2f 03 5f 53 42  0EXP3PSP3.\/._SB
  b630: 5f 50 43 49 30 45 58 50 33 0a 02 14 44 17 5f 4c  _PCI0EXP3...D._L
  b640: 30 31 00 a0 40 0f 5c 2f 04 5f 53 42 5f 50 43 49  01..@.\/._SB_PCI
  b650: 30 45 58 50 32 48 50 43 53 70 0a 01 5c 2f 04 5f  0EXP2HPCSp..\/._
  b660: 53 42 5f 50 43 49 30 45 58 50 32 48 50 43 53 a0  SB_PCI0EXP2HPCS.
  b670: 2a 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32  *\/._SB_PCI0EXP2
  b680: 41 42 50 5f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43  ABP_p..\/._SB_PC
  b690: 49 30 45 58 50 32 41 42 50 5f a0 49 09 5c 2f 04  I0EXP2ABP_.I.\/.
  b6a0: 5f 53 42 5f 50 43 49 30 45 58 50 32 50 44 43 5f  _SB_PCI0EXP2PDC_
  b6b0: 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58  p..\/._SB_PCI0EX
  b6c0: 50 32 50 44 43 5f 70 0a 00 5c 2f 04 5f 53 42 5f  P2PDC_p..\/._SB_
  b6d0: 50 43 49 30 45 58 50 32 58 43 50 46 86 5c 2f 03  PCI0EXP2XCPF.\/.
  b6e0: 5f 53 42 5f 50 43 49 30 45 58 50 32 0a 00 a0 45  _SB_PCI0EXP2...E
  b6f0: 04 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32  .\/._SB_PCI0EXP2
  b700: 50 44 53 5f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43  PDS_p..\/._SB_PC
  b710: 49 30 45 58 50 32 58 43 50 46 5b 22 0a 64 86 5c  I0EXP2XCPF[".d.\
  b720: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32 45 58  /._SB_PCI0EXP2EX
  b730: 55 50 0a 01 5b 23 4d 47 50 45 ff ff a0 4d 06 5c  UP..[#MGPE...M.\
  b740: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 30 48 50  /._SB_PCI0EXP0HP
  b750: 43 53 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30  CSp..\/._SB_PCI0
  b760: 45 58 50 30 48 50 43 53 a0 41 04 5c 2f 04 5f 53  EXP0HPCS.A.\/._S
  b770: 42 5f 50 43 49 30 45 58 50 30 50 44 43 5f 5b 22  B_PCI0EXP0PDC_["
  b780: 0a c8 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30  ..p..\/._SB_PCI0
  b790: 45 58 50 30 50 44 43 5f 86 5c 2f 03 5f 53 42 5f  EXP0PDC_.\/._SB_
  b7a0: 50 43 49 30 45 58 50 30 0a 00 5b 27 4d 47 50 45  PCI0EXP0..['MGPE
  b7b0: 14 44 09 5f 4c 30 32 00 70 0a 00 5c 2f 04 5f 53  .D._L02.p..\/._S
  b7c0: 42 5f 50 43 49 30 4c 50 43 5f 53 57 47 45 a0 41  B_PCI0LPC_SWGE.A
  b7d0: 04 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  b7e0: 45 43 5f 5f 48 4b 45 59 44 48 4b 43 a0 23 44 54  EC__HKEYDHKC.#DT
  b7f0: 30 32 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43  02\/._SB_PCI0LPC
  b800: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 22 60  _EC__HKEYMHKQ."`
  b810: 86 5c 2e 5f 54 5a 5f 54 48 4d 31 0a 80 a0 27 5c  .\._TZ_THM1...'\
  b820: 4f 53 50 58 86 5c 2e 5f 50 52 5f 43 50 55 30 0a  OSPX.\._PR_CPU0.
  b830: 80 a0 13 5c 4d 50 45 4e 86 5c 2e 5f 50 52 5f 43  ...\MPEN.\._PR_C
  b840: 50 55 31 0a 80 10 40 28 5c 2f 05 5f 53 42 5f 50  PU1...@(\/._SB_P
  b850: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 14  CI0LPC_EC__HKEY.
  b860: 48 0c 4d 48 51 54 01 a0 4d 0b 90 5c 57 4e 54 46  H.MHQT..M..\WNTF
  b870: 5c 54 41 54 43 a0 0e 93 68 0a 00 70 5c 54 41 54  \TATC...h..p\TAT
  b880: 43 60 a4 60 a1 40 0a a0 4b 04 93 68 0a 01 70 5c  C`.`.@..K..h..p\
  b890: 54 44 46 41 60 72 60 79 5c 54 44 54 41 0a 04 00  TDFA`r`y\TDTA...
  b8a0: 60 72 60 79 5c 54 44 46 44 0a 08 00 60 72 60 79  `r`y\TDFD...`r`y
  b8b0: 5c 54 44 54 44 0a 0c 00 60 72 60 79 5c 54 4e 46  \TDTD...`r`y\TNF
  b8c0: 54 0a 10 00 60 72 60 79 5c 54 4e 54 54 0a 14 00  T...`r`y\TNTT...
  b8d0: 60 a4 60 a1 41 05 a0 32 93 68 0a 02 70 5c 54 43  `.`.A..2.h..p\TC
  b8e0: 46 41 60 72 60 79 5c 54 43 54 41 0a 04 00 60 72  FA`r`y\TCTA...`r
  b8f0: 60 79 5c 54 43 46 44 0a 08 00 60 72 60 79 5c 54  `y\TCFD...`r`y\T
  b900: 43 54 44 0a 0c 00 60 a4 60 a1 1b a0 05 93 68 0a  CTD...`.`.....h.
  b910: 03 a1 13 a0 0e 93 68 0a 04 70 5c 54 41 54 57 60  ......h..p\TATW`
  b920: a4 60 a1 02 a3 a4 0a 00 14 4f 07 4d 48 41 54 01  .`.......O.MHAT.
  b930: a0 44 07 90 5c 57 4e 54 46 5c 54 41 54 43 70 7b  .D..\WNTF\TATCp{
  b940: 68 0a ff 00 60 a0 0a 92 41 54 4d 56 60 a4 0a 00  h...`...ATMV`...
  b950: 70 7b 7a 68 0a 08 00 0a ff 00 60 a0 0a 92 41 54  p{zh......`...AT
  b960: 4d 56 60 a4 0a 00 70 7b 68 0a 0f 00 5c 54 43 46  MV`...p{h...\TCF
  b970: 41 70 7b 7a 68 0a 04 00 0a 0f 00 5c 54 43 54 41  Ap{zh......\TCTA
  b980: 70 7b 7a 68 0a 08 00 0a 0f 00 5c 54 43 46 44 70  p{zh......\TCFDp
  b990: 7b 7a 68 0a 0c 00 0a 0f 00 5c 54 43 54 44 41 54  {zh......\TCTDAT
  b9a0: 4d 43 a4 0a 01 a4 0a 00 14 40 0d 4d 48 47 54 01  MC.......@.MHGT.
  b9b0: a0 45 0c 90 5c 57 4e 54 46 5c 54 41 54 43 70 79  .E..\WNTF\TATCpy
  b9c0: 5c 54 53 46 54 0a 10 00 60 72 60 79 5c 54 53 54  \TSFT...`r`y\TST
  b9d0: 54 0a 14 00 60 70 7b 68 0a ff 00 61 a0 0b 92 41  T...`p{h...a...A
  b9e0: 54 4d 56 61 a4 0b ff ff 70 7b 68 0a 0f 00 61 a0  TMVa....p{h...a.
  b9f0: 0d 93 61 0a 00 72 60 5c 54 49 46 30 60 a1 26 a0  ..a..r`\TIF0`.&.
  ba00: 0d 93 61 0a 01 72 60 5c 54 49 46 31 60 a1 16 a0  ..a..r`\TIF1`...
  ba10: 0d 93 61 0a 02 72 60 5c 54 49 46 32 60 a1 06 72  ..a..r`\TIF2`..r
  ba20: 60 0a ff 60 70 7b 7a 68 0a 04 00 0a 0f 00 61 a0  `..`p{zh......a.
  ba30: 11 93 61 0a 00 72 60 79 5c 54 49 54 30 0a 08 00  ..a..r`y\TIT0...
  ba40: 60 a1 32 a0 11 93 61 0a 01 72 60 79 5c 54 49 54  `.2...a..r`y\TIT
  ba50: 31 0a 08 00 60 a1 1e a0 11 93 61 0a 02 72 60 79  1...`.....a..r`y
  ba60: 5c 54 49 54 32 0a 08 00 60 a1 0a 72 60 79 0a ff  \TIT2...`..r`y..
  ba70: 0a 08 00 60 a4 60 a4 0a 00 14 4c 04 41 54 4d 56  ...`.`....L.ATMV
  ba80: 01 70 7b 68 0a 0f 00 61 70 5c 54 4e 46 54 60 a0  .p{h...ap\TNFT`.
  ba90: 08 92 95 61 60 a4 0a 00 70 7b 7a 68 0a 04 00 0a  ...a`...p{zh....
  baa0: 0f 00 62 70 5c 54 4e 54 54 60 a0 08 92 95 62 60  ..bp\TNTT`....b`
  bab0: a4 0a 00 a0 0f 5c 54 41 54 4c a0 08 7f 61 62 00  .....\TATL...ab.
  bac0: a4 0a 00 a4 0a 01 10 46 10 5c 2f 04 5f 53 42 5f  .......F.\/._SB_
  bad0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 14 40 0f 41  PCI0LPC_EC__.@.A
  bae0: 54 4d 43 00 a0 48 0e 90 5c 57 4e 54 46 5c 54 41  TMC..H..\WNTF\TA
  baf0: 54 43 a0 45 06 48 50 41 43 70 5c 54 43 46 41 60  TC.E.HPACp\TCFA`
  bb00: 70 5c 54 43 54 41 61 70 7d 79 61 0a 04 00 60 00  p\TCTAap}ya...`.
  bb10: 41 54 4d 58 a0 1f 93 5c 54 43 54 41 0a 00 70 5c  ATMX...\TCTA..p\
  bb20: 54 43 52 30 5c 54 43 52 54 70 5c 54 50 53 30 5c  TCR0\TCRTp\TPS0\
  bb30: 54 50 53 56 a1 23 a0 1f 93 5c 54 43 54 41 0a 01  TPSV.#...\TCTA..
  bb40: 70 5c 54 43 52 31 5c 54 43 52 54 70 5c 54 50 53  p\TCR1\TCRTp\TPS
  bb50: 31 5c 54 50 53 56 a1 01 a1 41 06 70 5c 54 43 46  1\TPSV...A.p\TCF
  bb60: 44 60 70 5c 54 43 54 44 61 70 7d 79 61 0a 04 00  D`p\TCTDap}ya...
  bb70: 60 00 41 54 4d 58 a0 1f 93 5c 54 43 54 44 0a 00  `.ATMX...\TCTD..
  bb80: 70 5c 54 43 52 30 5c 54 43 52 54 70 5c 54 50 53  p\TCR0\TCRTp\TPS
  bb90: 30 5c 54 50 53 56 a1 23 a0 1f 93 5c 54 43 54 44  0\TPSV.#...\TCTD
  bba0: 0a 01 70 5c 54 43 52 31 5c 54 43 52 54 70 5c 54  ..p\TCR1\TCRTp\T
  bbb0: 50 53 31 5c 54 50 53 56 a1 01 86 5c 2e 5f 54 5a  PS1\TPSV...\._TZ
  bbc0: 5f 54 48 4d 30 0a 81 54 48 52 4d 0a 01 10 43 1f  _THM0..THRM...C.
  bbd0: 5c 5f 54 5a 5f 5b 85 4c 0c 54 48 4d 30 14 0d 5f  \_TZ_[.L.THM0.._
  bbe0: 43 52 54 00 a4 43 32 4b 5f 0a 7f 14 47 0b 5f 54  CRT..C2K_...G._T
  bbf0: 4d 50 00 a0 42 05 5c 48 38 44 52 70 5c 2f 05 5f  MP..B.\H8DRp\/._
  bc00: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 54  SB_PCI0LPC_EC__T
  bc10: 4d 50 30 60 70 5c 2f 05 5f 53 42 5f 50 43 49 30  MP0`p\/._SB_PCI0
  bc20: 4c 50 43 5f 45 43 5f 5f 48 54 31 32 61 70 5c 2f  LPC_EC__HT12ap\/
  bc30: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f  ._SB_PCI0LPC_EC_
  bc40: 5f 48 54 31 33 62 a1 24 70 5c 52 42 45 43 0a 78  _HT13b.$p\RBEC.x
  bc50: 60 70 7b 5c 52 42 45 43 0a 20 0a 40 00 61 70 7b  `p{\RBEC. .@.ap{
  bc60: 5c 52 42 45 43 0a 20 0a 80 00 62 a0 09 62 a4 43  \RBEC. ...b..b.C
  bc70: 32 4b 5f 0a 80 a0 27 92 5c 2f 06 5f 53 42 5f 50  2K_...'.\/._SB_P
  bc80: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 44  CI0LPC_EC__HKEYD
  bc90: 48 4b 43 a0 09 61 a4 43 32 4b 5f 0a 80 a4 43 32  HKC..a.C2K_...C2
  bca0: 4b 5f 60 5b 85 40 0f 54 48 4d 31 14 33 5f 50 53  K_`[.@.THM1.3_PS
  bcb0: 4c 00 a0 1e 5c 4d 50 45 4e a4 12 16 02 5c 2e 5f  L...\MPEN....\._
  bcc0: 50 52 5f 43 50 55 30 5c 2e 5f 50 52 5f 43 50 55  PR_CPU0\._PR_CPU
  bcd0: 31 a4 12 0c 01 5c 2e 5f 50 52 5f 43 50 55 30 14  1....\._PR_CPU0.
  bce0: 0c 5f 43 52 54 00 a4 5c 54 43 52 54 14 0c 5f 50  ._CRT..\TCRT.._P
  bcf0: 53 56 00 a4 5c 54 50 53 56 14 0c 5f 54 43 31 00  SV..\TPSV.._TC1.
  bd00: a4 5c 54 54 43 31 14 0c 5f 54 43 32 00 a4 5c 54  .\TTC1.._TC2..\T
  bd10: 54 43 32 14 0c 5f 54 53 50 00 a4 5c 54 54 53 50  TC2.._TSP..\TTSP
  bd20: 14 44 07 5f 54 4d 50 00 a0 4a 05 5c 44 54 53 45  .D._TMP..J.\DTSE
  bd30: 54 48 52 4d 0a 02 a0 11 92 95 44 54 53 30 44 54  THRM......DTS0DT
  bd40: 53 31 70 44 54 53 30 60 70 44 54 53 31 60 a0 2e  S1pDTS0`pDTS1`..
  bd50: 92 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  .\/._SB_PCI0LPC_
  bd60: 45 43 5f 5f 48 4b 45 59 44 48 4b 43 a0 10 44 54  EC__HKEYDHKC..DT
  bd70: 30 32 72 5c 54 43 52 54 0a 01 60 a4 60 a4 43 32  02r\TCRT..`.`.C2
  bd80: 4b 5f 60 a1 11 a4 5c 2f 03 5f 54 5a 5f 54 48 4d  K_`...\/._TZ_THM
  bd90: 30 5f 54 4d 50 14 2b 43 32 4b 5f 01 72 77 68 0a  0_TMP.+C2K_.rwh.
  bda0: 0a 00 0b ac 0a 60 a0 0c 92 94 60 0b ac 0a 70 0b  .....`....`...p.
  bdb0: b8 0b 60 a0 0b 94 60 0b ac 0f 70 0b b8 0b 60 a4  ..`...`...p...`.
  bdc0: 60 10 4f 13 5c 2f 04 5f 53 42 5f 50 43 49 30 4c  `.O.\/._SB_PCI0L
  bdd0: 50 43 5f 45 43 5f 5f 14 49 12 5f 51 34 30 00 86  PC_EC__.I._Q40..
  bde0: 5c 2e 5f 54 5a 5f 54 48 4d 30 0a 80 a0 38 5c 48  \._TZ_THM0...8\H
  bdf0: 38 44 52 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c  8DRp\/._SB_PCI0L
  be00: 50 43 5f 45 43 5f 5f 48 54 31 31 60 70 5c 2f 05  PC_EC__HT11`p\/.
  be10: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f  _SB_PCI0LPC_EC__
  be20: 48 54 31 32 61 a1 1b 70 7b 5c 52 42 45 43 0a 20  HT12a..p{\RBEC. 
  be30: 0a 20 00 60 70 7b 5c 52 42 45 43 0a 20 0a 40 00  . .`p{\RBEC. .@.
  be40: 61 a0 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50  a.=\/._SB_PCI0LP
  be50: 43 5f 45 43 5f 5f 48 4b 45 59 44 48 4b 43 a0 20  C_EC__HKEYDHKC. 
  be60: 61 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f  a\/._SB_PCI0LPC_
  be70: 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 22 60 a0  EC__HKEYMHKQ."`.
  be80: 06 56 49 47 44 a3 a1 06 5c 56 54 48 52 a0 43 07  .VIGD...\VTHR.C.
  be90: 5c 53 50 45 4e a0 27 5c 4f 53 50 58 86 5c 2e 5f  \SPEN.'\OSPX.\._
  bea0: 50 52 5f 43 50 55 30 0a 80 a0 13 5c 4d 50 45 4e  PR_CPU0....\MPEN
  beb0: 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a1 43 04  .\._PR_CPU1...C.
  bec0: a0 37 91 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50  .7.\/._SB_PCI0LP
  bed0: 43 5f 45 43 5f 5f 48 54 30 30 5c 2f 05 5f 53 42  C_EC__HT00\/._SB
  bee0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 54 31  _PCI0LPC_EC__HT1
  bef0: 30 5c 53 54 45 50 0a 09 a1 08 5c 53 54 45 50 0a  0\STEP....\STEP.
  bf00: 0a 08 47 50 49 43 0a 00 14 0d 5f 50 49 43 01 70  ..GPIC...._PIC.p
  bf10: 68 5c 47 50 49 43 5b 80 4d 4e 56 53 00 0c 00 40  h\GPIC[.MNVS...@
  bf20: 6f 7f 0b 00 10 5b 81 49 25 4d 4e 56 53 03 00 80  o....[.I%MNVS...
  bf30: 80 07 47 41 50 41 20 47 41 50 4c 20 44 43 4b 49  ..GAPA GAPL DCKI
  bf40: 20 44 43 4b 53 20 56 43 44 4c 01 56 43 44 43 01   DCKS VCDL.VCDC.
  bf50: 56 43 44 54 01 56 43 44 44 01 56 49 47 44 01 56  VCDT.VCDD.VIGD.V
  bf60: 43 53 53 01 56 43 44 42 01 56 43 49 4e 01 00 08  CSS.VCDB.VCIN...
  bf70: 56 4c 49 44 04 56 56 50 4f 04 00 08 43 44 46 4c  VLID.VVPO...CDFL
  bf80: 08 43 44 41 48 08 50 4d 4f 44 02 50 44 49 52 01  .CDAH.PMOD.PDIR.
  bf90: 50 44 4d 41 01 00 04 4c 46 44 43 01 00 07 43 32  PDMA...LFDC...C2
  bfa0: 4e 41 01 43 33 4e 41 01 43 34 4e 41 01 00 05 53  NA.C3NA.C4NA...S
  bfb0: 50 45 4e 01 00 01 00 01 00 01 4d 50 45 4e 01 00  PEN.......MPEN..
  bfc0: 03 4f 53 50 58 01 4f 53 43 34 01 4f 53 53 53 01  .OSPX.OSC4.OSSS.
  bfd0: 00 05 55 4f 50 54 08 42 54 49 44 20 4c 57 53 54  ..UOPT.BTID LWST
  bfe0: 08 4c 50 53 54 08 54 43 52 54 10 54 50 53 56 10  .LPST.TCRT.TPSV.
  bff0: 54 54 43 31 10 54 54 43 32 10 54 54 53 50 10 53  TTC1.TTC2.TTSP.S
  c000: 52 41 48 08 53 52 48 45 08 53 52 45 30 08 53 52  RAH.SRHE.SRE0.SR
  c010: 45 31 08 53 52 45 32 08 53 52 45 33 08 53 52 45  E1.SRE2.SRE3.SRE
  c020: 34 08 53 52 45 35 08 53 52 55 30 08 53 52 55 31  4.SRE5.SRU0.SRU1
  c030: 08 53 52 55 32 08 53 52 55 33 08 53 52 55 37 08  .SRU2.SRU3.SRU7.
  c040: 53 52 50 42 08 53 52 4c 50 08 53 52 53 41 08 53  SRPB.SRLP.SRSA.S
  c050: 52 53 4d 08 43 57 41 43 01 43 57 41 53 01 00 06  RSM.CWAC.CWAS...
  c060: 43 57 41 50 10 43 57 41 54 10 44 42 47 43 01 00  CWAP.CWAT.DBGC..
  c070: 07 46 53 31 4c 10 46 53 31 4d 10 46 53 31 48 10  .FS1L.FS1M.FS1H.
  c080: 46 53 32 4c 10 46 53 32 4d 10 46 53 32 48 10 46  FS2L.FS2M.FS2H.F
  c090: 53 33 4c 10 46 53 33 4d 10 46 53 33 48 10 54 41  S3L.FS3M.FS3H.TA
  c0a0: 54 43 01 00 06 54 41 54 4c 01 54 41 54 57 08 54  TC...TATL.TATW.T
  c0b0: 4e 46 54 04 54 4e 54 54 04 54 44 46 41 04 54 44  NFT.TNTT.TDFA.TD
  c0c0: 54 41 04 54 44 46 44 04 54 44 54 44 04 54 43 46  TA.TDFD.TDTD.TCF
  c0d0: 41 04 54 43 54 41 04 54 43 46 44 04 54 43 54 44  A.TCTA.TCFD.TCTD
  c0e0: 04 54 53 46 54 04 54 53 54 54 04 54 49 54 30 08  .TSFT.TSTT.TIT0.
  c0f0: 54 43 52 30 10 54 50 53 30 10 54 49 54 31 08 54  TCR0.TPS0.TIT1.T
  c100: 43 52 31 10 54 50 53 31 10 54 49 54 32 08 54 43  CR1.TPS1.TIT2.TC
  c110: 52 32 10 54 50 53 32 10 54 49 46 30 08 54 49 46  R2.TPS2.TIF0.TIF
  c120: 31 08 54 49 46 32 08 00 20 54 43 5a 31 08 54 43  1.TIF2.. TCZ1.TC
  c130: 5a 32 08 54 43 5a 33 08 42 54 48 49 01 00 07 48  Z2.TCZ3.BTHI...H
  c140: 44 49 52 01 48 44 45 48 01 00 06 54 50 4d 50 01  DIR.HDEH...TPMP.
  c150: 00 07 42 49 44 45 08 00 01 44 54 53 45 01 00 06  ..BIDE...DTSE...
  c160: 44 54 53 30 08 44 54 53 31 08 44 54 30 30 01 44  DTS0.DTS1.DT00.D
  c170: 54 30 31 01 44 54 30 32 01 44 54 30 33 01 00 04  T01.DT02.DT03...
  c180: 5b 81 13 4d 4e 56 53 01 00 80 00 07 44 44 43 31  [..MNVS.....DDC1
  c190: 40 40 00 40 40 5b 81 10 4d 4e 56 53 01 00 80 00  @@.@@[..MNVS....
  c1a0: 07 44 44 43 32 40 80 5b 80 53 4d 49 30 01 0a b2  .DDC2@.[.SMI0...
  c1b0: 0a 01 5b 81 0b 53 4d 49 30 01 41 50 4d 43 08 5b  ..[..SMI0.APMC.[
  c1c0: 81 28 4d 4e 56 53 00 00 80 e0 07 43 4d 44 5f 08  .(MNVS.....CMD_.
  c1d0: 45 52 52 5f 20 50 41 52 30 20 50 41 52 31 20 50  ERR_ PAR0 PAR1 P
  c1e0: 41 52 32 20 50 41 52 33 20 5b 01 4d 53 4d 49 07  AR2 PAR3 [.MSMI.
  c1f0: 14 46 05 53 4d 49 5f 05 5b 23 4d 53 4d 49 ff ff  .F.SMI_.[#MSMI..
  c200: 70 68 43 4d 44 5f 70 69 50 41 52 30 70 6a 50 41  phCMD_piPAR0pjPA
  c210: 52 31 70 6b 50 41 52 32 70 6c 50 41 52 33 70 0a  R1pkPAR2plPAR3p.
  c220: f5 41 50 4d 43 a2 13 93 45 52 52 5f 0a 01 5b 22  .APMC...ERR_..["
  c230: 0a 64 70 0a f5 41 50 4d 43 70 50 41 52 30 60 5b  .dp..APMCpPAR0`[
  c240: 27 4d 53 4d 49 a4 60 14 14 52 50 43 49 01 a4 53  'MSMI.`..RPCI..S
  c250: 4d 49 5f 0a 00 0a 00 68 0a 00 0a 00 14 12 57 50  MI_....h......WP
  c260: 43 49 02 53 4d 49 5f 0a 00 0a 01 68 69 0a 00 14  CI.SMI_....hi...
  c270: 11 4d 50 43 49 03 53 4d 49 5f 0a 00 0a 02 68 69  .MPCI.SMI_....hi
  c280: 6a 14 14 52 42 45 43 01 a4 53 4d 49 5f 0a 00 0a  j..RBEC..SMI_...
  c290: 03 68 0a 00 0a 00 14 12 57 42 45 43 02 53 4d 49  .h......WBEC.SMI
  c2a0: 5f 0a 00 0a 04 68 69 0a 00 14 11 4d 42 45 43 03  _....hi....MBEC.
  c2b0: 53 4d 49 5f 0a 00 0a 05 68 69 6a 14 14 52 49 53  SMI_....hij..RIS
  c2c0: 41 01 a4 53 4d 49 5f 0a 00 0a 06 68 0a 00 0a 00  A..SMI_....h....
  c2d0: 14 12 57 49 53 41 02 53 4d 49 5f 0a 00 0a 07 68  ..WISA.SMI_....h
  c2e0: 69 0a 00 14 11 4d 49 53 41 03 53 4d 49 5f 0a 00  i....MISA.SMI_..
  c2f0: 0a 08 68 69 6a 14 14 56 45 58 50 00 53 4d 49 5f  ..hij..VEXP.SMI_
  c300: 0a 01 0a 00 0a 00 0a 00 0a 00 14 13 56 55 50 53  ............VUPS
  c310: 01 53 4d 49 5f 0a 01 0a 01 68 0a 00 0a 00 14 12  .SMI_....h......
  c320: 56 53 44 53 02 53 4d 49 5f 0a 01 0a 02 68 69 0a  VSDS.SMI_....hi.
  c330: 00 14 14 56 44 44 43 00 53 4d 49 5f 0a 01 0a 03  ...VDDC.SMI_....
  c340: 0a 00 0a 00 0a 00 14 13 56 56 50 44 01 53 4d 49  ........VVPD.SMI
  c350: 5f 0a 01 0a 04 68 0a 00 0a 00 14 13 56 4e 52 53  _....h......VNRS
  c360: 01 53 4d 49 5f 0a 01 0a 05 68 0a 00 0a 00 14 15  .SMI_....h......
  c370: 47 4c 50 57 00 a4 53 4d 49 5f 0a 01 0a 06 0a 00  GLPW..SMI_......
  c380: 0a 00 0a 00 14 13 56 53 4c 44 01 53 4d 49 5f 0a  ......VSLD.SMI_.
  c390: 01 0a 07 68 0a 00 0a 00 14 14 56 45 56 54 01 a4  ...h......VEVT..
  c3a0: 53 4d 49 5f 0a 01 0a 08 68 0a 00 0a 00 14 15 56  SMI_....h......V
  c3b0: 54 48 52 00 a4 53 4d 49 5f 0a 01 0a 09 0a 00 0a  THR..SMI_.......
  c3c0: 00 0a 00 14 14 55 43 4d 53 01 a4 53 4d 49 5f 0a  .....UCMS..SMI_.
  c3d0: 02 68 0a 00 0a 00 0a 00 14 13 42 48 44 50 02 a4  .h........BHDP..
  c3e0: 53 4d 49 5f 0a 03 0a 00 68 69 0a 00 14 14 44 48  SMI_....hi....DH
  c3f0: 44 50 01 a4 53 4d 49 5f 0a 03 0a 01 68 0a 00 0a  DP..SMI_....h...
  c400: 00 14 13 53 54 45 50 01 53 4d 49 5f 0a 04 68 0a  ...STEP.SMI_..h.
  c410: 00 0a 00 0a 00 14 14 54 52 41 50 00 53 4d 49 5f  .......TRAP.SMI_
  c420: 0a 05 0a 00 0a 00 0a 00 0a 00 14 14 43 42 52 49  ............CBRI
  c430: 00 53 4d 49 5f 0a 05 0a 01 0a 00 0a 00 0a 00 14  .SMI_...........
  c440: 22 44 53 50 44 01 a0 18 92 94 68 0a 01 72 68 0a  "DSPD.....h..rh.
  c450: 02 68 53 4d 49 5f 0a 05 68 0a 00 0a 00 0a 00 a1  .hSMI_..h.......
  c460: 02 a3 14 14 42 4c 54 48 01 a4 53 4d 49 5f 0a 06  ....BLTH..SMI_..
  c470: 68 0a 00 0a 00 0a 00 14 14 46 49 53 50 00 53 4d  h........FISP.SM
  c480: 49 5f 0a 07 0a 00 0a 00 0a 00 0a 00 14 13 41 54  I_............AT
  c490: 43 43 01 53 4d 49 5f 0a 08 68 0a 00 0a 00 0a 00  CC.SMI_..h......
  c4a0: 14 14 57 47 53 56 01 a4 53 4d 49 5f 0a 09 68 0a  ..WGSV..SMI_..h.
  c4b0: 00 0a 00 0a 00 14 14 54 48 52 4d 01 a4 53 4d 49  .......THRM..SMI
  c4c0: 5f 0a 0a 68 0a 00 0a 00 0a 00 14 14 50 50 4d 53  _..h........PPMS
  c4d0: 01 a4 53 4d 49 5f 0a 0b 68 0a 00 0a 00 0a 00 14  ..SMI_..h.......
  c4e0: 33 44 50 49 4f 02 a0 06 92 68 a4 0a 00 a0 08 94  3DPIO....h......
  c4f0: 68 0a f0 a4 0a 00 a0 10 94 68 0a b4 a0 05 69 a4  h........h....i.
  c500: 0a 02 a1 04 a4 0a 01 a0 08 94 68 0a 78 a4 0a 03  ..........h.x...
  c510: a4 0a 04 14 3d 44 55 44 4d 02 a0 06 92 69 a4 0a  ....=DUDM....i..
  c520: ff a0 08 94 68 0a 5a a4 0a 00 a0 08 94 68 0a 3c  ....h.Z......h.<
  c530: a4 0a 01 a0 08 94 68 0a 2d a4 0a 02 a0 08 94 68  ......h.-......h
  c540: 0a 1e a4 0a 03 a0 08 94 68 0a 14 a4 0a 04 a4 0a  ........h.......
  c550: 05 14 28 44 4d 44 4d 02 a0 05 69 a4 0a 00 a0 06  ..(DMDM...i.....
  c560: 92 68 a4 0a 00 a0 08 94 68 0a 96 a4 0a 01 a0 08  .h......h.......
  c570: 94 68 0a 78 a4 0a 02 a4 0a 03 14 41 05 55 55 44  .h.x.......A.UUD
  c580: 4d 02 a0 0a 92 7b 68 0a 04 00 a4 0a 00 a0 09 7b  M....{h........{
  c590: 69 0a 20 00 a4 0a 14 a0 09 7b 69 0a 10 00 a4 0a  i. ......{i.....
  c5a0: 1e a0 09 7b 69 0a 08 00 a4 0a 2d a0 09 7b 69 0a  ...{i.....-..{i.
  c5b0: 04 00 a4 0a 3c a0 09 7b 69 0a 02 00 a4 0a 5a a0  ....<..{i.....Z.
  c5c0: 09 7b 69 0a 01 00 a4 0a 78 a4 0a 00 14 48 04 55  .{i.....x....H.U
  c5d0: 4d 44 4d 04 a0 0a 92 7b 68 0a 02 00 a4 0a 00 a0  MDM....{h.......
  c5e0: 08 7b 69 0a 04 00 a4 6b a0 14 7b 69 0a 02 00 a0  .{i....k..{i....
  c5f0: 09 92 94 6b 0a 78 a4 0a b4 a1 03 a4 6b a0 14 7b  ...k.x......k..{
  c600: 6a 0a 04 00 a0 09 92 94 6b 0a b4 a4 0a f0 a1 03  j.......k.......
  c610: a4 6b a4 0a 00 14 4b 04 55 50 49 4f 04 a0 16 92  .k....K.UPIO....
  c620: 7b 68 0a 02 00 a0 08 93 6a 0a 02 a4 0a f0 a1 05  {h......j.......
  c630: a4 0b 84 03 a0 08 7b 69 0a 02 00 a4 6b a0 14 7b  ......{i....k..{
  c640: 69 0a 01 00 a0 09 92 94 6b 0a 78 a4 0a b4 a1 03  i.......k.x.....
  c650: a4 6b a0 08 93 6a 0a 02 a4 0a f0 a1 05 a4 0b 84  .k...j..........
  c660: 03 14 2d 46 44 4d 41 02 a0 0c 92 93 69 0a ff a4  ..-FDMA.....i...
  c670: 7d 69 0a 40 00 a0 10 92 95 68 0a 03 a4 7d 74 68  }i.@.....h...}th
  c680: 0a 02 00 0a 20 00 a0 05 68 a4 0a 12 a4 0a 00 14  .... ...h.......
  c690: 1f 46 50 49 4f 01 a0 0c 92 95 68 0a 03 a4 7d 68  .FPIO.....h...}h
  c6a0: 0a 08 00 a0 08 93 68 0a 01 a4 0a 01 a4 0a 00 14  ......h.........
  c6b0: 4a 05 53 43 4d 50 02 70 87 68 60 a0 08 92 93 60  J.SCMP.p.h`....`
  c6c0: 87 69 a4 01 75 60 08 53 54 52 31 11 02 60 08 53  .i..u`.STR1..`.S
  c6d0: 54 52 32 11 02 60 70 68 53 54 52 31 70 69 53 54  TR2..`phSTR1piST
  c6e0: 52 32 70 00 61 a2 22 95 61 60 70 83 88 53 54 52  R2p.a.".a`p..STR
  c6f0: 31 61 00 62 70 83 88 53 54 52 32 61 00 63 a0 07  1a.bp..STR2a.c..
  c700: 92 93 62 63 a4 01 75 61 a4 00 08 53 50 53 5f 0a  ..bc..ua...SPS_.
  c710: 00 08 4f 53 49 46 0a 00 08 57 39 38 46 0a 00 08  ..OSIF...W98F...
  c720: 57 4e 54 46 0a 00 08 57 4d 45 46 0a 00 08 57 58  WNTF...WMEF...WX
  c730: 50 46 0a 00 08 57 53 50 56 0a 00 08 4c 4e 55 58  PF...WSPV...LNUX
  c740: 0a 00 08 48 38 44 52 0a 00 08 4d 45 4d 58 0a 00  ...H8DR...MEMX..
  c750: 08 41 43 53 54 0a 00 08 46 4e 49 44 0a 00 08 52  .ACST...FNID...R
  c760: 52 42 46 0a 00                                   RBF..

FACS @ 0x7f6f4000
  0000: 46 41 43 53 40 00 00 00 22 15 00 00 00 00 00 00  FACS@...".......
  0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................

FACP @ 0x7f6e6400
  0000: 46 41 43 50 f4 00 00 00 03 a5 4c 45 4e 4f 56 4f  FACP......LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 00 40 6f 7f e7 65 6e 7f 00 02 09 00  .....@o..en.....
  0030: b2 00 00 00 f0 f1 00 f3 00 10 00 00 00 00 00 00  ................
  0040: 04 10 00 00 00 00 00 00 20 10 00 00 08 10 00 00  ........ .......
  0050: 28 10 00 00 00 00 00 00 04 02 01 04 08 00 00 f4  (...............
  0060: 01 00 55 00 00 00 00 00 01 03 0d 00 32 02 00 00  ..U.........2...
  0070: ad 82 00 00 01 08 00 00 f9 0c 00 00 00 00 00 00  ................
  0080: 06 00 00 00 00 40 6f 7f 00 00 00 00 e7 65 6e 7f  .....@o......en.
  0090: 00 00 00 00 01 20 00 00 00 10 00 00 00 00 00 00  ..... ..........
  00a0: 00 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00  ................
  00b0: 04 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  00c0: 00 00 00 00 01 08 00 00 20 10 00 00 00 00 00 00  ........ .......
  00d0: 01 20 00 00 08 10 00 00 00 00 00 00 01 20 00 00  . ........... ..
  00e0: 28 10 00 00 00 00 00 00 01 20 00 00 2c 10 00 00  (........ ..,...
  00f0: 00 00 00 00                                      ....

SSDT @ 0x7f6e65b4
  0000: 53 53 44 54 33 00 00 00 01 fe 4c 45 4e 4f 56 4f  SSDT3.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4d 53 46 54  TP-79    ...MSFT
  0020: 0e 00 00 01 10 0e 5c 00 14 0a 4b 4f 55 32 00 5b  ......\...KOU2.[
  0030: 21 0a 64                                         !.d

ECDT @ 0x7f6f2d4c
  0000: 45 43 44 54 52 00 00 00 01 66 4c 45 4e 4f 56 4f  ECDTR....fLENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 01 08 00 00 66 00 00 00 00 00 00 00  ........f.......
  0030: 01 08 00 00 62 00 00 00 00 00 00 00 00 00 00 00  ....b...........
  0040: 1c 5c 5f 53 42 2e 50 43 49 30 2e 4c 50 43 2e 45  .\_SB.PCI0.LPC.E
  0050: 43 00                                            C.

TCPA @ 0x7f6f2d9e
  0000: 54 43 50 41 32 00 00 00 02 c0 4c 45 4e 4f 56 4f  TCPA2.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
  0030: 00 00                                            ..

APIC @ 0x7f6f2dd0
  0000: 41 50 49 43 68 00 00 00 01 7d 4c 45 4e 4f 56 4f  APICh....}LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00  ................
  0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 01 00  ................
  0040: 00 00 c0 fe 00 00 00 00 02 0a 00 00 02 00 00 00  ................
  0050: 00 00 02 0a 00 09 09 00 00 00 0d 00 04 06 00 05  ................
  0060: 00 01 04 06 01 05 00 01                          ........

MCFG @ 0x7f6f2e38
  0000: 4d 43 46 47 3e 00 00 00 01 91 4c 45 4e 4f 56 4f  MCFG>.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f0  ................
  0030: 00 00 00 00 00 00 00 3f 00 00 00 00 00 00        .......?......

HPET @ 0x7f6f2e76
  0000: 48 50 45 54 38 00 00 00 01 bb 4c 45 4e 4f 56 4f  HPET8.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 01 a2 86 80 00 00 00 00 00 00 d0 fe  ................
  0030: 00 00 00 00 00 80 00 00                          ........

BOOT @ 0x7f6f2fd8
  0000: 42 4f 4f 54 28 00 00 00 01 b9 4c 45 4e 4f 56 4f  BOOT(.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 20 4c 54 50  TP-79    ... LTP
  0020: 01 00 00 00 35 00 00 00                          ....5...

SSDT @ 0x7f6e58da
  0000: 53 53 44 54 07 05 00 00 01 d4 4c 45 4e 4f 56 4f  SSDT......LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 49 4e 54 4c  TP-79    ...INTL
  0020: 13 05 05 20 10 45 08 5c 00 08 53 53 44 54 12 43  ... .E.\..SSDT.C
  0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 60 6e  ...CPU0IST ...`n
  0040: 7f 0c ed 01 00 00 0d 43 50 55 31 49 53 54 20 00  .......CPU1IST .
  0050: 0c 8b 62 6e 7f 0c 94 00 00 00 0d 43 50 55 30 43  ..bn.......CPU0C
  0060: 53 54 20 00 0c e1 5d 6e 7f 0c 38 02 00 00 0d 43  ST ...]n..8....C
  0070: 50 55 31 43 53 54 20 00 0c 19 60 6e 7f 0c 85 00  PU1CST ...`n....
  0080: 00 00 08 43 46 47 44 0c f1 49 1b 01 08 5c 50 44  ...CFGD..I...\PD
  0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00  C0......\PDC1...
  00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 48 21 5c 2e 5f  ...\SDTL...H!\._
  00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48  PR_CPU0.HI0_...H
  00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a  C0_...H._PDC..h.
  00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68  .REVS.h..SIZEp.h
  00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a  `pt`...a[.h.@wa.
  00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00  ..TEMP.STS0.....
  0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53  ...sSTS0TEMPb_OS
  0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8  C......w@.).G...
  0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 44  pXq9SREVSSIZEb.D
  0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b  ._OSC..k..STS0.k
  0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68  ..CAP0.h..IID0.h
  0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68  ..IID1.h..IID2.h
  0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16  ..IID3.UID0.....
  0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a  .w@.).G...pXq9S.
  0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a  UID0..EID0.UID0.
  0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32  .EID1.UID0..EID2
  01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 36 92 90 90  .UID0..EID3.6...
  01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49  .IID0EID0.IID1EI
  01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44  D1..IID2EID2.IID
  01d0: 33 45 49 44 33 70 0a 06 88 53 54 53 30 0a 00 00  3EID3p...STS0...
  01e0: a4 6b a0 13 92 93 69 0a 01 70 0a 0a 88 53 54 53  .k....i..p...STS
  01f0: 30 0a 00 00 a4 6b 7d 7b 50 44 43 30 0c ff ff ff  0....k}{PDC0....
  0200: 7f 00 43 41 50 30 50 44 43 30 a0 4c 05 7b 43 46  ..CAP0PDC0.L.{CF
  0210: 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 47 44 0c  GD....A...{CFGD.
  0220: 00 00 00 01 00 93 7b 50 44 43 30 0a 09 00 0a 09  ......{PDC0.....
  0230: 92 7b 53 44 54 4c 0a 01 00 7d 53 44 54 4c 0a 01  .{SDTL...}SDTL..
  0240: 53 44 54 4c 5b 80 49 53 54 30 00 83 88 53 53 44  SDTL[.IST0...SSD
  0250: 54 0a 01 00 83 88 53 53 44 54 0a 02 00 5b 20 49  T.....SSDT...[ I
  0260: 53 54 30 48 49 30 5f a0 49 05 7b 43 46 47 44 0a  ST0HI0_.I.{CFGD.
  0270: f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c 00 00 00  ...N...{CFGD....
  0280: 01 00 7b 50 44 43 30 0a 18 00 92 7b 53 44 54 4c  ..{PDC0....{SDTL
  0290: 0a 02 00 7d 53 44 54 4c 0a 02 53 44 54 4c 5b 80  ...}SDTL..SDTL[.
  02a0: 43 53 54 30 00 83 88 53 53 44 54 0a 07 00 83 88  CST0...SSDT.....
  02b0: 53 53 44 54 0a 08 00 5b 20 43 53 54 30 48 43 30  SSDT...[ CST0HC0
  02c0: 5f a4 6b 10 43 24 5c 2e 5f 50 52 5f 43 50 55 31  _.k.C$\._PR_CPU1
  02d0: 08 48 49 31 5f 0a 00 08 48 43 31 5f 0a 00 14 48  .HI1_...HC1_...H
  02e0: 06 5f 50 44 43 01 8a 68 0a 00 52 45 56 53 8a 68  ._PDC..h..REVS.h
  02f0: 0a 04 53 49 5a 45 70 87 68 60 70 74 60 0a 08 00  ..SIZEp.h`pt`...
  0300: 61 5b 13 68 0a 40 77 61 0a 08 00 54 45 4d 50 08  a[.h.@wa...TEMP.
  0310: 53 54 53 31 11 07 0a 04 00 00 00 00 73 53 54 53  STS1........sSTS
  0320: 31 54 45 4d 50 62 5f 4f 53 43 11 13 0a 10 16 a6  1TEMPb_OSC......
  0330: 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 52 45  w@.).G...pXq9SRE
  0340: 56 53 53 49 5a 45 62 14 44 19 5f 4f 53 43 04 8a  VSSIZEb.D._OSC..
  0350: 6b 0a 00 53 54 53 31 8a 6b 0a 04 43 41 50 31 8a  k..STS1.k..CAP1.
  0360: 68 0a 00 49 49 44 30 8a 68 0a 04 49 49 44 31 8a  h..IID0.h..IID1.
  0370: 68 0a 08 49 49 44 32 8a 68 0a 0c 49 49 44 33 08  h..IID2.h..IID3.
  0380: 55 49 44 31 11 13 0a 10 16 a6 77 40 0c 29 be 47  UID1......w@.).G
  0390: 9e bd d8 70 58 71 39 53 8a 55 49 44 31 0a 00 45  ...pXq9S.UID1..E
  03a0: 49 44 30 8a 55 49 44 31 0a 04 45 49 44 31 8a 55  ID0.UID1..EID1.U
  03b0: 49 44 31 0a 08 45 49 44 32 8a 55 49 44 31 0a 0c  ID1..EID2.UID1..
  03c0: 45 49 44 33 a0 36 92 90 90 93 49 49 44 30 45 49  EID3.6....IID0EI
  03d0: 44 30 93 49 49 44 31 45 49 44 31 90 93 49 49 44  D0.IID1EID1..IID
  03e0: 32 45 49 44 32 93 49 49 44 33 45 49 44 33 70 0a  2EID2.IID3EID3p.
  03f0: 06 88 53 54 53 31 0a 00 00 a4 6b a0 13 92 93 69  ..STS1....k....i
  0400: 0a 01 70 0a 0a 88 53 54 53 31 0a 00 00 a4 6b 7d  ..p...STS1....k}
  0410: 7b 50 44 43 31 0c ff ff ff 7f 00 43 41 50 31 50  {PDC1......CAP1P
  0420: 44 43 31 a0 4c 05 7b 43 46 47 44 0a 01 00 a0 41  DC1.L.{CFGD....A
  0430: 05 90 90 7b 43 46 47 44 0c 00 00 00 01 00 93 7b  ...{CFGD.......{
  0440: 50 44 43 31 0a 09 00 0a 09 92 7b 53 44 54 4c 0a  PDC1......{SDTL.
  0450: 10 00 7d 53 44 54 4c 0a 10 53 44 54 4c 5b 80 49  ..}SDTL..SDTL[.I
  0460: 53 54 31 00 83 88 53 53 44 54 0a 04 00 83 88 53  ST1...SSDT.....S
  0470: 53 44 54 0a 05 00 5b 20 49 53 54 31 48 49 31 5f  SDT...[ IST1HI1_
  0480: a0 49 05 7b 43 46 47 44 0a f0 00 a0 4e 04 90 90  .I.{CFGD....N...
  0490: 7b 43 46 47 44 0c 00 00 00 01 00 7b 50 44 43 31  {CFGD......{PDC1
  04a0: 0a 18 00 92 7b 53 44 54 4c 0a 20 00 7d 53 44 54  ....{SDTL. .}SDT
  04b0: 4c 0a 20 53 44 54 4c 5b 80 43 53 54 31 00 83 88  L. SDTL[.CST1...
  04c0: 53 53 44 54 0a 0a 00 83 88 53 53 44 54 0a 0b 00  SSDT.....SSDT...
  04d0: 5b 20 43 53 54 31 48 43 31 5f a4 6b 14 2a 5f 49  [ CST1HC1_.k.*_I
  04e0: 4e 49 00 a0 0c 5c 44 54 53 45 54 48 52 4d 0a 00  NI...\DTSETHRM..
  04f0: a0 16 90 5c 57 58 50 46 92 94 5c 57 53 50 56 0a  ...\WXPF..\WSPV.
  0500: 01 50 50 4d 53 0a 00                             .PPMS..

SSDT @ 0x7f6e5702
  0000: 53 53 44 54 d8 01 00 00 01 1a 4c 45 4e 4f 56 4f  SSDT......LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 49 4e 54 4c  TP-79    ...INTL
  0020: 13 05 05 20 10 43 1b 5c 2f 03 5f 53 42 5f 50 43  ... .C.\/._SB_PC
  0030: 49 30 53 41 54 41 5b 82 40 1a 50 52 54 30 08 44  I0SATA[.@.PRT0.D
  0040: 52 45 30 0a 00 08 44 49 50 30 0a 00 08 48 44 54  RE0...DIP0...HDT
  0050: 46 11 11 0a 0e 02 00 00 00 00 a0 ef 00 00 00 00  F...............
  0060: 00 a0 f5 8c 48 44 54 46 0a 0d 48 46 4c 43 08 45  ....HDTF..HFLC.E
  0070: 52 54 46 11 18 0a 15 02 00 00 00 00 a0 ef 00 00  RTF.............
  0080: 00 00 00 a0 f5 5f 00 00 00 00 a0 ef 8c 45 52 54  ....._.......ERT
  0090: 46 0a 0d 45 46 4c 43 08 48 50 54 46 11 18 0a 15  F..EFLC.HPTF....
  00a0: 02 00 00 00 00 a0 ef 00 00 00 00 00 a0 f5 10 03  ................
  00b0: 00 00 00 a0 ef 8c 48 50 54 46 0a 0d 50 46 4c 43  ......HPTF..PFLC
  00c0: 08 48 58 54 46 11 1f 0a 1c 02 00 00 00 00 a0 ef  .HXTF...........
  00d0: 00 00 00 00 00 a0 f5 5f 00 00 00 00 a0 ef 10 03  ......._........
  00e0: 00 00 00 a0 ef 8c 48 58 54 46 0a 0d 58 46 4c 43  ......HXTF..XFLC
  00f0: 08 5f 41 44 52 0b ff ff 14 4c 08 5f 53 44 44 01  ._ADR....L._SDD.
  0100: 70 0a 00 44 52 45 30 70 0a 00 44 49 50 30 a0 46  p..DRE0p..DIP0.F
  0110: 07 93 87 68 0b 00 02 8b 68 0a 9c 4d 30 37 38 8b  ...h....h..M078.
  0120: 68 0a ac 4d 30 38 36 8b 68 0a ee 4d 31 31 39 8b  h..M086.h..M119.
  0130: 68 0b 28 01 4d 31 34 38 a0 1f 93 7b 4d 31 34 38  h.(.M148...{M148
  0140: 0b 00 c0 00 0b 00 40 a0 10 7b 4d 31 34 38 0a 04  ......@..{M148..
  0150: 00 70 0a 01 44 52 45 30 a0 1b 7b 4d 30 38 36 0b  .p..DRE0..{M086.
  0160: 00 80 00 a0 10 7b 4d 31 31 39 0a 01 00 70 0a 01  .....{M119...p..
  0170: 44 52 45 30 a0 10 7b 4d 30 37 38 0a 08 00 70 0a  DRE0..{M078...p.
  0180: 01 44 49 50 30 14 42 05 5f 47 54 46 00 a0 22 5c  .DIP0.B._GTF.."\
  0190: 4f 53 53 53 70 0a e1 58 46 4c 43 70 0a e1 45 46  OSSSp..XFLCp..EF
  01a0: 4c 43 70 0a e1 48 46 4c 43 70 0a e1 50 46 4c 43  LCp..HFLCp..PFLC
  01b0: a0 17 44 52 45 30 a0 0a 44 49 50 30 a4 48 58 54  ..DRE0..DIP0.HXT
  01c0: 46 a1 06 a4 45 52 54 46 a0 0a 44 49 50 30 a4 48  F...ERTF..DIP0.H
  01d0: 50 54 46 a4 48 44 54 46                          PTF.HDTF

XSDT @ 0x7f6e631f
  0000: 58 53 44 54 74 00 00 00 01 f2 4c 45 4e 4f 56 4f  XSDTt.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 20 4c 54 50  TP-79    ... LTP
  0020: 00 00 00 00 00 64 6e 7f 00 00 00 00 b4 65 6e 7f  .....dn......en.
  0030: 00 00 00 00 4c 2d 6f 7f 00 00 00 00 9e 2d 6f 7f  ....L-o......-o.
  0040: 00 00 00 00 d0 2d 6f 7f 00 00 00 00 38 2e 6f 7f  .....-o.....8.o.
  0050: 00 00 00 00 76 2e 6f 7f 00 00 00 00 d8 2f 6f 7f  ....v.o....../o.
  0060: 00 00 00 00 da 58 6e 7f 00 00 00 00 02 57 6e 7f  .....Xn......Wn.
  0070: 00 00 00 00                                      ....

FACP @ 0x7f6e6500
  0000: 46 41 43 50 81 00 00 00 02 9f 4c 45 4e 4f 56 4f  FACP......LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4c 4e 56 4f  TP-79    ...LNVO
  0020: 01 00 00 00 00 40 6f 7f e7 65 6e 7f 00 02 09 00  .....@o..en.....
  0030: b2 00 00 00 f0 f1 00 f3 00 10 00 00 00 00 00 00  ................
  0040: 04 10 00 00 00 00 00 00 20 10 00 00 08 10 00 00  ........ .......
  0050: 28 10 00 00 00 00 00 00 04 02 01 04 08 00 00 85  (...............
  0060: 01 00 23 00 00 00 00 00 01 03 0d 00 32 02 00 00  ..#.........2...
  0070: ad 82 00 00 01 08 00 00 f9 0c 00 00 00 00 00 00  ................
  0080: 06                                               .

SSDT @ 0x7f6e6581
  0000: 53 53 44 54 33 00 00 00 01 ff 4c 45 4e 4f 56 4f  SSDT3.....LENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 4d 53 46 54  TP-79    ...MSFT
  0020: 0e 00 00 01 10 0e 5c 00 14 0a 4b 4f 55 31 00 5b  ......\...KOU1.[
  0030: 21 0a 64                                         !.d

RSDT @ 0x7f6e56b6
  0000: 52 53 44 54 4c 00 00 00 01 52 4c 45 4e 4f 56 4f  RSDTL....RLENOVO
  0010: 54 50 2d 37 39 20 20 20 20 10 00 00 20 4c 54 50  TP-79    ... LTP
  0020: 00 00 00 00 00 65 6e 7f 81 65 6e 7f 4c 2d 6f 7f  .....en..en.L-o.
  0030: 9e 2d 6f 7f d0 2d 6f 7f 38 2e 6f 7f 76 2e 6f 7f  .-o..-o.8.o.v.o.
  0040: d8 2f 6f 7f da 58 6e 7f 02 57 6e 7f              ./o..Xn..Wn.

RSD PTR @ 0xf68a0
  0000: 52 53 44 20 50 54 52 20 13 4c 45 4e 4f 56 4f 02  RSD PTR .LENOVO.
  0010: b6 56 6e 7f 24 00 00 00 1f 63 6e 7f 00 00 00 00  .Vn.$....cn.....
  0020: 6d 00 00 00                                      m...


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-20  9:13           ` Thomas Renninger
  2009-04-20 10:45             ` Ingo Molnar
@ 2009-04-20 22:18             ` Henrique de Moraes Holschuh
  1 sibling, 0 replies; 34+ messages in thread
From: Henrique de Moraes Holschuh @ 2009-04-20 22:18 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Len Brown, Matthew Garrett, Darrick J. Wong, linux-kernel,
	Ingo Molnar, cpufreq, linux-acpi

On Mon, 20 Apr 2009, Thomas Renninger wrote:
> On Monday 20 April 2009 07:13:51 Len Brown wrote:
> > FYI,
> > Thanks to Ebay, I now have a T60:-)
> Hmm, Lenovo sold a lot different machines as T60.

There are only two types as far as the firmware is concerned: widescreen and
non-widescreen.

However, the older BIOS (non-widescreen) had a major version bump, so
machines with outdated firmware can have quite a different BIOS.

> I found an acpidump of a T60 here without any _PPC function
> at all.
> 
> > and so i put the DSDT here:
> > http://bugzilla.kernel.org/show_bug.cgi?id=13139
> > 
> > I'll poke at this in more detail soon...
> Ingo, can you place yours somewhere too, please.
> This one should be taken into account for _PPC code changes
> as it seem to implement some corner case.

It is probably worth upgrading the T60 after you got all the relevant
information (dmidecode, full acpidump), and check again with the latest
firmware.

Here are the links with instructions:
http://www.thinkwiki.org/wiki/BIOS_Upgrade

and a table of links for the firmware itself (get the CD versions to flash
without Windows):
http://www.thinkwiki.org/wiki/BIOS_Upgrade_Downloads#T_Series

Also, if you guys do collect that info (dmidecode, full acpidump), I'd
appreciate if you could send them my way in private.  They often prove
useful for thinkpad-acpi work...

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-16 22:45       ` Matthew Garrett
  2009-04-20  5:13         ` Len Brown
@ 2009-04-28 19:33         ` Darrick J. Wong
  2009-04-28 19:53           ` Matthew Garrett
  1 sibling, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-28 19:33 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Thu, Apr 16, 2009 at 11:45:07PM +0100, Matthew Garrett wrote:

> That's not really an option. It works with Windows.

Who verified that?  Does anyone know what strategy Windows uses to avoid this
T60 problem?  

> Please figure out how to make it work on everything rather than us just
> repeatedly toggling between different sets of broken machines or being forced
> to have a static table of machines.

I've thought about this for a while and still don't know how to proceed with
this suggestion.  Right now we have:

1. Linux, which right now does not read _PPC at boot time regardless of the
ignore_ppc setting, leaving the kernel's copy set to 0 regardless of what the
BIOS wants the kernel to do.  The kernel will pick up the correct value of _PPC
if the BIOS sends a "re-evaluate _PPC" event.

Obviously, if ignore_ppc=1 then we should ignore _PPC, but I'm talking about
_PPC not being read when ignore_ppc=0 or ignore_ppc isn't set at all.

2. A whole lot of machines that set _PPC to 0 all the time; this scenario
works because _PPC and the cpufreq max_freq controls just happen to match.

3. A smaller collection of machines that leave _PPC at 0 except for special
circumstances that warrant freq/voltage restrictions (power overage,
thermal/power throttling via p-state, etc.)

This is a problem for the following sequence:

  1. BIOS decides to set _PPC to any non-zero value.
  2. The kernel boots with ignore_ppc=0, doesn't check _PPC, and runs with
     all p-states enabled.

      <here is where we're running with the wrong _PPC and potentially
       using more power/putting out more heat than the firmware wants>

  3. BIOS changes _PPC to something else and sends a Notify event.
  4. Kernel now runs with the correct p-state restrictions.

4. Broken T60s where the EC (which is read in the _PPC method) freaks out and
returns 2 all the time.  If you set ignore_ppc=1 then you get the full range of
speeds even if the BIOS doesn't want to allow it.  Clearly the firmware needs
some sort of fix, which means that we could Lenovo, which may or may not
succeed because T60s were discontinued 18 months ago.

I can think of a few ways to proceed with the kernel:

1. No changes at all.  If ignore_ppc = 0 and _PPC != 0 when the kernel boots,
the kernel ignores the BIOS.  That seems broken to me.

2. Add my revert patch, which leaves the ignore_ppc toggle in place for T60
owners.  This doesn't satisfy the "no toggling" rule, but at least there's
still an override for when the automatic method doesn't work.

3. Add the revert patch and put in a DMI check to turn on ignore_ppc for all
T60s.  This doesn't satisfy the "static table" constraint though at least it
requires less manual intervention.

I'd rather have the kernel work for the vast majority of machines that do not
freak out, and special case the ones that do.  But I'm not clever enough to
figure out a solution that fixes the runs-with-wrong-_PPC problem, avoids
reading _PPC on machines that freak out, and doesn't involve blacklists or a
toggle.  Any suggestions?

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-28 19:33         ` Darrick J. Wong
@ 2009-04-28 19:53           ` Matthew Garrett
  2009-04-28 20:24             ` Darrick J. Wong
  2009-04-29 21:39             ` Darrick J. Wong
  0 siblings, 2 replies; 34+ messages in thread
From: Matthew Garrett @ 2009-04-28 19:53 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Tue, Apr 28, 2009 at 12:33:04PM -0700, Darrick J. Wong wrote:
> On Thu, Apr 16, 2009 at 11:45:07PM +0100, Matthew Garrett wrote:
> 
> > That's not really an option. It works with Windows.
> 
> Who verified that?  Does anyone know what strategy Windows uses to avoid this
> T60 problem?  

The best guess was that Windows only evaluates _PPC when it receives a 
notification.

> > Please figure out how to make it work on everything rather than us just
> > repeatedly toggling between different sets of broken machines or being forced
> > to have a static table of machines.
> 
> I've thought about this for a while and still don't know how to proceed with
> this suggestion.  Right now we have:
> 
> 1. Linux, which right now does not read _PPC at boot time regardless of the
> ignore_ppc setting, leaving the kernel's copy set to 0 regardless of what the
> BIOS wants the kernel to do.  The kernel will pick up the correct value of _PPC
> if the BIOS sends a "re-evaluate _PPC" event.
> 
> Obviously, if ignore_ppc=1 then we should ignore _PPC, but I'm talking about
> _PPC not being read when ignore_ppc=0 or ignore_ppc isn't set at all.

Right. So far Linux is working as intended.

> 3. A smaller collection of machines that leave _PPC at 0 except for special
> circumstances that warrant freq/voltage restrictions (power overage,
> thermal/power throttling via p-state, etc.)
> 
> This is a problem for the following sequence:
> 
>   1. BIOS decides to set _PPC to any non-zero value.
>   2. The kernel boots with ignore_ppc=0, doesn't check _PPC, and runs with
>      all p-states enabled.
> 
>       <here is where we're running with the wrong _PPC and potentially
>        using more power/putting out more heat than the firmware wants>
> 
>   3. BIOS changes _PPC to something else and sends a Notify event.
>   4. Kernel now runs with the correct p-state restrictions.

Yes. How many machines have this behaviour, and how does Windows react 
to them?

> 4. Broken T60s where the EC (which is read in the _PPC method) freaks out and
> returns 2 all the time.  If you set ignore_ppc=1 then you get the full range of
> speeds even if the BIOS doesn't want to allow it.  Clearly the firmware needs
> some sort of fix, which means that we could Lenovo, which may or may not
> succeed because T60s were discontinued 18 months ago.

No, the T60 returns an incorrect _PPC value at boot time - once the 
firmware provides a notification (which is irritatingly frequent, given 
that the T60 seems to be a somewhat compromised as far as thermal design 
goes and Lenovo use P-state limiting as a thermal control method), it 
gives correct responses. This is what leads to the suspicion that 
Windows only evaluates _PPC in response to notifications.

> 1. No changes at all.  If ignore_ppc = 0 and _PPC != 0 when the kernel boots,
> the kernel ignores the BIOS.  That seems broken to me.

ignore_ppc will only be 0 at boot time if the user has explicitly set it 
to be, but you're right that Ingo's patch means that it won't be 
evaluated at boot time even if the user has passed ignore_ppc=0.

> I'd rather have the kernel work for the vast majority of machines that do not
> freak out, and special case the ones that do.  But I'm not clever enough to
> figure out a solution that fixes the runs-with-wrong-_PPC problem, avoids
> reading _PPC on machines that freak out, and doesn't involve blacklists or a
> toggle.  Any suggestions?

How many machines are we actually talking about here? There's a large 
number of T60s out there. It would be helpful to validate how Windows 
behaves, either by testing a machine that expects _PPC to be evaluated 
at boot time or by running something under kvm.

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-28 19:53           ` Matthew Garrett
@ 2009-04-28 20:24             ` Darrick J. Wong
  2009-04-29 21:39             ` Darrick J. Wong
  1 sibling, 0 replies; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-28 20:24 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Tue, Apr 28, 2009 at 08:53:48PM +0100, Matthew Garrett wrote:
> On Tue, Apr 28, 2009 at 12:33:04PM -0700, Darrick J. Wong wrote:
> > On Thu, Apr 16, 2009 at 11:45:07PM +0100, Matthew Garrett wrote:
> > 
> > > That's not really an option. It works with Windows.
> > 
> > Who verified that?  Does anyone know what strategy Windows uses to avoid this
> > T60 problem?  
> 
> The best guess was that Windows only evaluates _PPC when it receives a 
> notification.

I have asked the Windows side of the UEFI development team here about what
they've observed about Windows' behavior regarding reading _PPC at boot and
will post their answers when I receive them.

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-20 10:45             ` Ingo Molnar
@ 2009-04-29 13:19               ` Thomas Renninger
  2009-04-29 14:48                 ` Ingo Molnar
  2009-04-29 21:43                 ` Darrick J. Wong
  0 siblings, 2 replies; 34+ messages in thread
From: Thomas Renninger @ 2009-04-29 13:19 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Len Brown, Matthew Garrett, Darrick J. Wong, linux-kernel,
	cpufreq, linux-acpi, Matthew Garrett

On Monday 20 April 2009 12:45:29 Ingo Molnar wrote:
> 
> * Thomas Renninger <trenn@suse.de> wrote:
> 
> > On Monday 20 April 2009 07:13:51 Len Brown wrote:
> > > FYI,
> > > Thanks to Ebay, I now have a T60:-)
> > Hmm, Lenovo sold a lot different machines as T60.
> > I found an acpidump of a T60 here without any _PPC function
> > at all.
> > 
> > > and so i put the DSDT here:
> > > http://bugzilla.kernel.org/show_bug.cgi?id=13139
> > > 
> > > I'll poke at this in more detail soon...
> > Ingo, can you place yours somewhere too, please.
> > This one should be taken into account for _PPC code changes
> > as it seem to implement some corner case.
> 
> Sure, find it attached below.
> 
> 	Ingo
> 
> DSDT @ 0x7f6e65e7
>   0000: 44 53 44 54 65 c7 00 00 01 49 4c 45 4e 4f 56 4f  
...
Ingo, did you do a BIOS update in between?
The DSDT and SSDTs you added do not contain a _PPC function.
These ACPI tables definitely do not suffer from an initial _PPC
evaluation.

    Thomas

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-29 13:19               ` Thomas Renninger
@ 2009-04-29 14:48                 ` Ingo Molnar
  2009-04-29 21:43                 ` Darrick J. Wong
  1 sibling, 0 replies; 34+ messages in thread
From: Ingo Molnar @ 2009-04-29 14:48 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Len Brown, Matthew Garrett, Darrick J. Wong, linux-kernel,
	cpufreq, linux-acpi


* Thomas Renninger <trenn@suse.de> wrote:

> On Monday 20 April 2009 12:45:29 Ingo Molnar wrote:
> > 
> > * Thomas Renninger <trenn@suse.de> wrote:
> > 
> > > On Monday 20 April 2009 07:13:51 Len Brown wrote:
> > > > FYI,
> > > > Thanks to Ebay, I now have a T60:-)
> > > Hmm, Lenovo sold a lot different machines as T60.
> > > I found an acpidump of a T60 here without any _PPC function
> > > at all.
> > > 
> > > > and so i put the DSDT here:
> > > > http://bugzilla.kernel.org/show_bug.cgi?id=13139
> > > > 
> > > > I'll poke at this in more detail soon...
> > > Ingo, can you place yours somewhere too, please.
> > > This one should be taken into account for _PPC code changes
> > > as it seem to implement some corner case.
> > 
> > Sure, find it attached below.
> > 
> > 	Ingo
> > 
> > DSDT @ 0x7f6e65e7
> >   0000: 44 53 44 54 65 c7 00 00 01 49 4c 45 4e 4f 56 4f  
> ...
> Ingo, did you do a BIOS update in between?
> The DSDT and SSDTs you added do not contain a _PPC function.
> These ACPI tables definitely do not suffer from an initial _PPC
> evaluation.

no, i didnt update anything. I only touch the BIOS if i absolutely 
have to. Was the original analysis wrong then?

	Ingo

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-28 19:53           ` Matthew Garrett
  2009-04-28 20:24             ` Darrick J. Wong
@ 2009-04-29 21:39             ` Darrick J. Wong
  2009-04-29 22:00               ` Matthew Garrett
  1 sibling, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-29 21:39 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Tue, Apr 28, 2009 at 08:53:48PM +0100, Matthew Garrett wrote:
> On Tue, Apr 28, 2009 at 12:33:04PM -0700, Darrick J. Wong wrote:
> > On Thu, Apr 16, 2009 at 11:45:07PM +0100, Matthew Garrett wrote:
> > 
> > > That's not really an option. It works with Windows.
> > 
> > Who verified that?  Does anyone know what strategy Windows uses to avoid this
> > T60 problem?  
> 
> The best guess was that Windows only evaluates _PPC when it receives a 
> notification.

Here's the answer from the Windows side of the house:

Windows (both WS03 and WS08) will evaluate the _PPC method during boot 
once the intelppm.sys processor driver loads.  The processor driver will 
"evaluate" the _PPC method:

IntelPPM.sys: 0: Entering AcpiEval_PPC
IntelPPM.sys: 0: Entering AcpiEvaluateMethod
=0x0
AMLI: EvalObject(\_PR.C000._PPC)=Integer(:Value=0x0[0])

The Windows intelppm.sys driver can return non-zero for the _PPC method 
(in this example, _PPC returns non-zero based on what's stored in \_PTSE 
and \_TSTE named objects that were updated during POST.  The capture is 
during Windows boot when evaluating the ACPI P-State objects for each 
ProcessorId object):

....
IntelPPM.sys: Processor Performance States (0x85DF7DF0)
IntelPPM.sys:   Size:              0x210
IntelPPM.sys:   Revision:          0x1
IntelPPM.sys:   Type:              0xfe
IntelPPM.sys:   Count:             0xf
IntelPPM.sys:   MaxFrequency:      2394 mhz
IntelPPM.sys:   PState Handler:    0x88fb7006
IntelPPM.sys:   PState Context:    0x85d74298
IntelPPM.sys:   PState Cap:        0x3          <= PTSE (test: hardcoded 
PTSE to return something other than P[0])
IntelPPM.sys:   TState Handler:    0x88fb7048
IntelPPM.sys:   TState Context:    0x85d742c0
IntelPPM.sys:   TState Cap:        0x4          <= TSTE (test: hardcoded 
TSTE to return something other than T[0])
IntelPPM.sys:   Feedback Handler:  0x88fb7084
IntelPPM.sys:   Target Processors: 0xff
IntelPPM.sys:
IntelPPM.sys:   State   Speed           Power           Latency Control 
Status
IntelPPM.sys:   -----   -----           -----           ------- ------- 
------
IntelPPM.sys:   0:      2394 mhz        106000 mW       10 us   0x12 0x12 
// P[0]
IntelPPM.sys:   1:      2261 mhz        90000 mW        10 us   0x11 0x11
IntelPPM.sys:   2:      2128 mhz        74000 mW        10 us   0x10 0x10
IntelPPM.sys:   3:      1995 mhz        58000 mW        10 us   0xf 0xf // 
PTSE
IntelPPM.sys:   4:      1862 mhz        42000 mW        10 us   0xe 0xe 
IntelPPM.sys:   5:      1729 mhz        26000 mW        10 us   0xd 0xd
IntelPPM.sys:   6:      1596 mhz        10000 mW        10 us   0xc 0xc
IntelPPM.sys:   7:      1596 mhz        10000 mW        0 us    0x2 0x2
IntelPPM.sys:   8:      1404 mhz         8750 mW        0 us    0x1e 0x1e 
// T[0]
IntelPPM.sys:   9:      1197 mhz         7500 mW        0 us    0x1c 0x1c
IntelPPM.sys:   10:     1005 mhz         6250 mW        0 us    0x1a 0x1a
IntelPPM.sys:   11:      798 mhz         5000 mW        0 us    0x18 0x18
IntelPPM.sys:   12:      606 mhz         3750 mW        0 us    0x16 0x16 
// TSTE
IntelPPM.sys:   13:      399 mhz         2500 mW        0 us    0x14 0x14
IntelPPM.sys:   14:      207 mhz         1250 mW        0 us    0x12 0x12
IntelPPM.sys:
....


0: kd> !amli dns /s \TSTE

ACPI Name Space: \TSTE (ffffffff854e484c)
Integer(TSTE:Value=0x0000000000000004[4])

0: kd> !amli dns /s \PSTE

ACPI Name Space: \PSTE (ffffffff854e4898)
Integer(PSTE:Value=0x0000000000000003[3])

Note the two above dbg traces are from different systems.

(end reply)

I don't know about XP's copy of intelppm.sys, but this would seem to confirm
that WS03 and WS08 check _PPC at boot time.

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-29 13:19               ` Thomas Renninger
  2009-04-29 14:48                 ` Ingo Molnar
@ 2009-04-29 21:43                 ` Darrick J. Wong
  2009-04-30  9:07                   ` Thomas Renninger
  1 sibling, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-04-29 21:43 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Ingo Molnar, Len Brown, Matthew Garrett, linux-kernel, cpufreq,
	linux-acpi

On Wed, Apr 29, 2009 at 03:19:28PM +0200, Thomas Renninger wrote:

> Ingo, did you do a BIOS update in between?
> The DSDT and SSDTs you added do not contain a _PPC function.
> These ACPI tables definitely do not suffer from an initial _PPC
> evaluation.

P-state tables are probably loaded from separate SSDT tables "CPU0IST" and
"CPU1IST".  You can download 'em with something like this:

# dmesg | grep IST
ACPI: SSDT BFD30566, 01FB (r1  PmRef    CPU0IST   3000 INTL 20030224)
           ^addr     ^length

# acpidump --addr 0xBFD30566 --length 0x1FB > cpu0ist
# iasl -d cpu0ist

Then paste cpu0ist.dsl somewhere.

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-29 21:39             ` Darrick J. Wong
@ 2009-04-29 22:00               ` Matthew Garrett
  2009-04-30  7:25                 ` Ingo Molnar
  0 siblings, 1 reply; 34+ messages in thread
From: Matthew Garrett @ 2009-04-29 22:00 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Thomas Renninger, linux-kernel, Ingo Molnar, cpufreq, linux-acpi

On Wed, Apr 29, 2009 at 02:39:31PM -0700, Darrick J. Wong wrote:

> I don't know about XP's copy of intelppm.sys, but this would seem to confirm
> that WS03 and WS08 check _PPC at boot time.

Ok, so that makes things interesting. From what we know about the T60 
(and based on Ingo's report), _PPC may evaluate to 2 on bootup. However, 
if this is ignored then later notifications are correct. This implies 
that Windows either ignores the initial evaluation or does something 
that triggers a notification.

The only notifications appear to be sent from event methods, so there's 
nothing obvious there that we can trigger. I'm actually quite confused 
by this now. Ingo, if you re-add that block, does your system stop 
working again?

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-29 22:00               ` Matthew Garrett
@ 2009-04-30  7:25                 ` Ingo Molnar
  2009-04-30  9:54                   ` Matthew Garrett
  0 siblings, 1 reply; 34+ messages in thread
From: Ingo Molnar @ 2009-04-30  7:25 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Darrick J. Wong, Thomas Renninger, linux-kernel, cpufreq, linux-acpi


* Matthew Garrett <mjg59@srcf.ucam.org> wrote:

> On Wed, Apr 29, 2009 at 02:39:31PM -0700, Darrick J. Wong wrote:
> 
> > I don't know about XP's copy of intelppm.sys, but this would seem to confirm
> > that WS03 and WS08 check _PPC at boot time.
> 
> Ok, so that makes things interesting. From what we know about the 
> T60 (and based on Ingo's report), _PPC may evaluate to 2 on 
> bootup. However, if this is ignored then later notifications are 
> correct. This implies that Windows either ignores the initial 
> evaluation or does something that triggers a notification.
> 
> The only notifications appear to be sent from event methods, so 
> there's nothing obvious there that we can trigger. I'm actually 
> quite confused by this now. Ingo, if you re-add that block, does 
> your system stop working again?

That box is working fine now doing ~100 bootup tests per day - so if 
you send me a suitably changelogged patch (revert?) i can apply that 
to tip:out-of-tree for testing and we'll find out quickly whether 
the box stops working.

OTOH, if you rely on me figuring out which patch to revert and what 
to do, it will take an indeterminate amount of time - together with 
all the other items in my 'would be nice to hack on, given a bit of 
free time' queue :)

Thanks,

	Ingo

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-29 21:43                 ` Darrick J. Wong
@ 2009-04-30  9:07                   ` Thomas Renninger
  2009-04-30  9:17                     ` Ingo Molnar
  0 siblings, 1 reply; 34+ messages in thread
From: Thomas Renninger @ 2009-04-30  9:07 UTC (permalink / raw)
  To: djwong, Ingo Molnar
  Cc: Len Brown, Matthew Garrett, linux-kernel, cpufreq, linux-acpi

On Wednesday 29 April 2009 11:43:12 pm Darrick J. Wong wrote:
> On Wed, Apr 29, 2009 at 03:19:28PM +0200, Thomas Renninger wrote:
> > Ingo, did you do a BIOS update in between?
> > The DSDT and SSDTs you added do not contain a _PPC function.
> > These ACPI tables definitely do not suffer from an initial _PPC
> > evaluation.
>
> P-state tables are probably loaded from separate SSDT tables "CPU0IST" and
> "CPU1IST".  You can download 'em with something like this:
>
> # dmesg | grep IST
> ACPI: SSDT BFD30566, 01FB (r1  PmRef    CPU0IST   3000 INTL 20030224)
>            ^addr     ^length
>
> # acpidump --addr 0xBFD30566 --length 0x1FB > cpu0ist
> # iasl -d cpu0ist
>
> Then paste cpu0ist.dsl somewhere.

Oops forgot about the tables loaded at runtime, I take back the definitely :)
Ingo, can you also do:
acpidump --addr 0x7F6E609E --length 0x1ED >cpu0ist
acpidump --addr 0x7F6E628B --length 0x94 >cpu1ist
acpidump --addr 0x7F6E5DE1 --length 0x238 >cpu0cst
acpidump --addr 0x7F6E6019 --length 0x85 >cpu1cst

Then we should finally have all ACPI bits of such an affected system together.
The addresses and table lengths should work for your T60 and can be found in 
the SSDT2:
Name (SSDT, Package (0x0C)
        {
            "CPU0IST ",
            0x7F6E609E,
            0x000001ED,
            "CPU1IST ",
            0x7F6E628B,
            0x00000094,
            "CPU0CST ",
            0x7F6E5DE1,
            0x00000238,
            "CPU1CST ",
            0x7F6E6019,
            0x00000085
        })

Thanks,

     Thomas

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-30  9:07                   ` Thomas Renninger
@ 2009-04-30  9:17                     ` Ingo Molnar
  0 siblings, 0 replies; 34+ messages in thread
From: Ingo Molnar @ 2009-04-30  9:17 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: djwong, Len Brown, Matthew Garrett, linux-kernel, cpufreq, linux-acpi

[-- Attachment #1: Type: text/plain, Size: 1131 bytes --]


* Thomas Renninger <trenn@suse.de> wrote:

> On Wednesday 29 April 2009 11:43:12 pm Darrick J. Wong wrote:
> > On Wed, Apr 29, 2009 at 03:19:28PM +0200, Thomas Renninger wrote:
> > > Ingo, did you do a BIOS update in between?
> > > The DSDT and SSDTs you added do not contain a _PPC function.
> > > These ACPI tables definitely do not suffer from an initial _PPC
> > > evaluation.
> >
> > P-state tables are probably loaded from separate SSDT tables "CPU0IST" and
> > "CPU1IST".  You can download 'em with something like this:
> >
> > # dmesg | grep IST
> > ACPI: SSDT BFD30566, 01FB (r1  PmRef    CPU0IST   3000 INTL 20030224)
> >            ^addr     ^length
> >
> > # acpidump --addr 0xBFD30566 --length 0x1FB > cpu0ist
> > # iasl -d cpu0ist
> >
> > Then paste cpu0ist.dsl somewhere.
> 
> Oops forgot about the tables loaded at runtime, I take back the definitely :)
> Ingo, can you also do:
> acpidump --addr 0x7F6E609E --length 0x1ED >cpu0ist
> acpidump --addr 0x7F6E628B --length 0x94 >cpu1ist
> acpidump --addr 0x7F6E5DE1 --length 0x238 >cpu0cst
> acpidump --addr 0x7F6E6019 --length 0x85 >cpu1cst

sure - attached.

	Ingo

[-- Attachment #2: cpu0ist --]
[-- Type: application/octet-stream, Size: 493 bytes --]

[-- Attachment #3: cpu1ist --]
[-- Type: application/octet-stream, Size: 148 bytes --]

[-- Attachment #4: cpu0cst --]
[-- Type: application/octet-stream, Size: 568 bytes --]

[-- Attachment #5: cpu1cst --]
[-- Type: application/octet-stream, Size: 133 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-30  7:25                 ` Ingo Molnar
@ 2009-04-30  9:54                   ` Matthew Garrett
  2009-04-30 11:10                     ` Ingo Molnar
  0 siblings, 1 reply; 34+ messages in thread
From: Matthew Garrett @ 2009-04-30  9:54 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Darrick J. Wong, Thomas Renninger, linux-kernel, cpufreq, linux-acpi

On Thu, Apr 30, 2009 at 09:25:56AM +0200, Ingo Molnar wrote:

> OTOH, if you rely on me figuring out which patch to revert and what 
> to do, it will take an indeterminate amount of time - together with 
> all the other items in my 'would be nice to hack on, given a bit of 
> free time' queue :)

Here's Darrick's patch:

Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
Renninger's patch last July to eliminate _PPC evaluations when the processor
driver loads, the kernel never actually reads _PPC at all!  This is problematic
if you happen to boot your non-T60 computer in a state where the BIOS _wants_
_PPC to be something other than zero.

So, put the _PPC evaluation back into acpi_processor_get_performance_info if
ignore_ppc isn't 1.

This second version restores the correct function call, which simplifies
the patch.  I apologize for the churn and the poor eyesight.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
---

 drivers/acpi/processor_perflib.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index cafb410..85af717 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -348,7 +348,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
 	if (result)
 		goto update_bios;
 
-	return 0;
+	/* We need to call _PPC once when cpufreq starts */
+	if (ignore_ppc != 1)
+		result = acpi_processor_get_platform_limit(pr);
+
+	return result;
 
 	/*
 	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-30  9:54                   ` Matthew Garrett
@ 2009-04-30 11:10                     ` Ingo Molnar
  2009-04-30 11:13                       ` Matthew Garrett
  0 siblings, 1 reply; 34+ messages in thread
From: Ingo Molnar @ 2009-04-30 11:10 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Darrick J. Wong, Thomas Renninger, linux-kernel, cpufreq, linux-acpi


* Matthew Garrett <mjg59@srcf.ucam.org> wrote:

> On Thu, Apr 30, 2009 at 09:25:56AM +0200, Ingo Molnar wrote:
> 
> > OTOH, if you rely on me figuring out which patch to revert and what 
> > to do, it will take an indeterminate amount of time - together with 
> > all the other items in my 'would be nice to hack on, given a bit of 
> > free time' queue :)
> 
> Here's Darrick's patch:

thanks - i've applied this and started testing it. I suspect 1-2 
days of test-time should be enough to see if it breaks this box in 
any way.

	Ingo

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-30 11:10                     ` Ingo Molnar
@ 2009-04-30 11:13                       ` Matthew Garrett
  2009-05-15 19:12                         ` Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Matthew Garrett @ 2009-04-30 11:13 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Darrick J. Wong, Thomas Renninger, linux-kernel, cpufreq, linux-acpi

On Thu, Apr 30, 2009 at 01:10:42PM +0200, Ingo Molnar wrote:

> thanks - i've applied this and started testing it. I suspect 1-2 
> days of test-time should be enough to see if it breaks this box in 
> any way.

My recollection was that you'd see the machine limited to 1GHz on every 
boot?

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-04-30 11:13                       ` Matthew Garrett
@ 2009-05-15 19:12                         ` Darrick J. Wong
  2009-06-02 23:21                           ` Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-05-15 19:12 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Ingo Molnar, Thomas Renninger, linux-kernel, cpufreq, linux-acpi

On Thu, Apr 30, 2009 at 12:13:38PM +0100, Matthew Garrett wrote:
> On Thu, Apr 30, 2009 at 01:10:42PM +0200, Ingo Molnar wrote:
> 
> > thanks - i've applied this and started testing it. I suspect 1-2 
> > days of test-time should be enough to see if it breaks this box in 
> > any way.
> 
> My recollection was that you'd see the machine limited to 1GHz on every 
> boot?

That seems accurate based on my reading of the old thread.

It's been a couple of weeks; has anyone seen any problems?

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-05-15 19:12                         ` Darrick J. Wong
@ 2009-06-02 23:21                           ` Darrick J. Wong
  2009-06-07 10:05                             ` Ingo Molnar
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-06-02 23:21 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Ingo Molnar, Thomas Renninger, linux-kernel, cpufreq, linux-acpi

On Fri, May 15, 2009 at 12:12:19PM -0700, Darrick J. Wong wrote:
> On Thu, Apr 30, 2009 at 12:13:38PM +0100, Matthew Garrett wrote:
> > On Thu, Apr 30, 2009 at 01:10:42PM +0200, Ingo Molnar wrote:
> > 
> > > thanks - i've applied this and started testing it. I suspect 1-2 
> > > days of test-time should be enough to see if it breaks this box in 
> > > any way.
> > 
> > My recollection was that you'd see the machine limited to 1GHz on every 
> > boot?
> 
> That seems accurate based on my reading of the old thread.
> 
> It's been a couple of weeks; has anyone seen any problems?

Now it's been thirty days since I last heard from anyone.  Has the problem been
fixed by some other means?

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-06-02 23:21                           ` Darrick J. Wong
@ 2009-06-07 10:05                             ` Ingo Molnar
  2009-07-15  0:32                               ` Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Ingo Molnar @ 2009-06-07 10:05 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Matthew Garrett, Thomas Renninger, linux-kernel, cpufreq, linux-acpi


* Darrick J. Wong <djwong@us.ibm.com> wrote:

> On Fri, May 15, 2009 at 12:12:19PM -0700, Darrick J. Wong wrote:
> > On Thu, Apr 30, 2009 at 12:13:38PM +0100, Matthew Garrett wrote:
> > > On Thu, Apr 30, 2009 at 01:10:42PM +0200, Ingo Molnar wrote:
> > > 
> > > > thanks - i've applied this and started testing it. I suspect 1-2 
> > > > days of test-time should be enough to see if it breaks this box in 
> > > > any way.
> > > 
> > > My recollection was that you'd see the machine limited to 1GHz on every 
> > > boot?
> > 
> > That seems accurate based on my reading of the old thread.
> > 
> > It's been a couple of weeks; has anyone seen any problems?
> 
> Now it's been thirty days since I last heard from anyone.  Has the 
> problem been fixed by some other means?

I see no problems on that system here, with the patch below applied. 
So, as i indicated above, feel free to pursue this angle, there's no 
objection from me.

Thanks,

	Ingo

------------->
>From 244b66ac1fbbe25262a9bcc28179e50930290de8 Mon Sep 17 00:00:00 2001
From: Matthew Garrett <mjg59@srcf.ucam.org>
Date: Thu, 30 Apr 2009 10:54:14 +0100
Subject: [PATCH] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0

Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
Renninger's patch last July to eliminate _PPC evaluations when the processor
driver loads, the kernel never actually reads _PPC at all!  This is problematic
if you happen to boot your non-T60 computer in a state where the BIOS _wants_
_PPC to be something other than zero.

So, put the _PPC evaluation back into acpi_processor_get_performance_info if
ignore_ppc isn't 1.

This second version restores the correct function call, which simplifies
the patch.  I apologize for the churn and the poor eyesight.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Cc: "Darrick J. Wong" <djwong@us.ibm.com>
Cc: Thomas Renninger <trenn@suse.de>
LKML-Reference: <20090430095414.GA19462@srcf.ucam.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 drivers/acpi/processor_perflib.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index cafb410..85af717 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -348,7 +348,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
 	if (result)
 		goto update_bios;
 
-	return 0;
+	/* We need to call _PPC once when cpufreq starts */
+	if (ignore_ppc != 1)
+		result = acpi_processor_get_platform_limit(pr);
+
+	return result;
 
 	/*
 	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-06-07 10:05                             ` Ingo Molnar
@ 2009-07-15  0:32                               ` Darrick J. Wong
  2010-02-16 22:07                                 ` Matthew Garrett
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2009-07-15  0:32 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: lenb, davej, Matthew Garrett, Thomas Renninger, linux-kernel,
	cpufreq, linux-acpi

On Sun, Jun 07, 2009 at 12:05:41PM +0200, Ingo Molnar wrote:

> I see no problems on that system here, with the patch below applied. 
> So, as i indicated above, feel free to pursue this angle, there's no 
> objection from me.

Hmm... the patch hasn't gone in to Linus' tree yet, nor has anyone else NAK'd
it.  I assume it's either Len Brown (ACPI) or Dave Jones (cpufreq) who ought to
pick it up?

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2009-07-15  0:32                               ` Darrick J. Wong
@ 2010-02-16 22:07                                 ` Matthew Garrett
  2010-02-16 22:26                                   ` Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Matthew Garrett @ 2010-02-16 22:07 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Ingo Molnar, lenb, davej, Thomas Renninger, linux-kernel,
	cpufreq, linux-acpi

Did this ever get picked up?

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2010-02-16 22:07                                 ` Matthew Garrett
@ 2010-02-16 22:26                                   ` Darrick J. Wong
  2010-02-18  9:02                                     ` Len Brown
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2010-02-16 22:26 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Ingo Molnar, lenb, davej, Thomas Renninger, linux-kernel,
	cpufreq, linux-acpi

On Tue, Feb 16, 2010 at 10:07:07PM +0000, Matthew Garrett wrote:
> Did this ever get picked up?

Nope.  I vaguely recall asking a few times if there were any objections left,
but there weren't any, and I think Len or someone said it looked good back at
LPC last summer.  Does not appear in 2.6.33-rc8 though.

--D

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2010-02-16 22:26                                   ` Darrick J. Wong
@ 2010-02-18  9:02                                     ` Len Brown
  2010-02-18 18:28                                       ` Darrick J. Wong
  0 siblings, 1 reply; 34+ messages in thread
From: Len Brown @ 2010-02-18  9:02 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Matthew Garrett, Ingo Molnar, davej, Thomas Renninger,
	linux-kernel, cpufreq, linux-acpi

> On Tue, Feb 16, 2010 at 10:07:07PM +0000, Matthew Garrett wrote:
> > Did this ever get picked up?
> 
> Nope.  I vaguely recall asking a few times if there were any objections left,
> but there weren't any, and I think Len or someone said it looked good back at
> LPC last summer.  Does not appear in 2.6.33-rc8 though.

does it have a bugzilla entry? (as regressions tend to, thanks to rafael)
I don't see this in my mailbox anymore.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2010-02-18  9:02                                     ` Len Brown
@ 2010-02-18 18:28                                       ` Darrick J. Wong
  2010-02-19  6:12                                         ` Len Brown
  0 siblings, 1 reply; 34+ messages in thread
From: Darrick J. Wong @ 2010-02-18 18:28 UTC (permalink / raw)
  To: Len Brown
  Cc: Matthew Garrett, Ingo Molnar, davej, Thomas Renninger,
	linux-kernel, cpufreq, linux-acpi

On Thu, Feb 18, 2010 at 04:02:39AM -0500, Len Brown wrote:
> > On Tue, Feb 16, 2010 at 10:07:07PM +0000, Matthew Garrett wrote:
> > > Did this ever get picked up?
> > 
> > Nope.  I vaguely recall asking a few times if there were any objections left,
> > but there weren't any, and I think Len or someone said it looked good back at
> > LPC last summer.  Does not appear in 2.6.33-rc8 though.
> 
> does it have a bugzilla entry? (as regressions tend to, thanks to rafael)
> I don't see this in my mailbox anymore.

Nope, no bugzilla entry.  Do I need to create one now?  A patch resend follows.

--D

---
Earlier, Ingo Molnar posted a patch to make it so that the kernel would avoid
reading _PPC on his broken T60.  Unfortunately, it seems that with Thomas
Renninger's patch last July to eliminate _PPC evaluations when the processor
driver loads, the kernel never actually reads _PPC at all!  This is problematic
if you happen to boot your non-T60 computer in a state where the BIOS _wants_
_PPC to be something other than zero.

So, put the _PPC evaluation back into acpi_processor_get_performance_info if
ignore_ppc isn't 1.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
---

 drivers/acpi/processor_perflib.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c
index 2cabadc..a959f6a 100644
--- a/drivers/acpi/processor_perflib.c
+++ b/drivers/acpi/processor_perflib.c
@@ -413,7 +413,11 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)
 	if (result)
 		goto update_bios;
 
-	return 0;
+	/* We need to call _PPC once when cpufreq starts */
+	if (ignore_ppc != 1)
+		result = acpi_processor_get_platform_limit(pr);
+
+	return result;
 
 	/*
 	 * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [PATCH v2] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0
  2010-02-18 18:28                                       ` Darrick J. Wong
@ 2010-02-19  6:12                                         ` Len Brown
  0 siblings, 0 replies; 34+ messages in thread
From: Len Brown @ 2010-02-19  6:12 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Matthew Garrett, Ingo Molnar, davej, Thomas Renninger,
	linux-kernel, cpufreq, linux-acpi

applied to acpi-test

thanks,
Len Brown, Intel Open Source Technology Center


^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2010-02-19  6:12 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-15 22:53 [PATCH] acpi: Fix regression where _PPC is not read at boot even when ignore_ppc=0 Darrick J. Wong
2009-04-16  0:27 ` [PATCH v2] " Darrick J. Wong
2009-04-16 10:01   ` Thomas Renninger
2009-04-16 10:32     ` Ingo Molnar
2009-04-16 17:42     ` Darrick J. Wong
2009-04-16 18:49       ` Thomas Renninger
2009-04-16 22:45       ` Matthew Garrett
2009-04-20  5:13         ` Len Brown
2009-04-20  9:13           ` Thomas Renninger
2009-04-20 10:45             ` Ingo Molnar
2009-04-29 13:19               ` Thomas Renninger
2009-04-29 14:48                 ` Ingo Molnar
2009-04-29 21:43                 ` Darrick J. Wong
2009-04-30  9:07                   ` Thomas Renninger
2009-04-30  9:17                     ` Ingo Molnar
2009-04-20 22:18             ` Henrique de Moraes Holschuh
2009-04-28 19:33         ` Darrick J. Wong
2009-04-28 19:53           ` Matthew Garrett
2009-04-28 20:24             ` Darrick J. Wong
2009-04-29 21:39             ` Darrick J. Wong
2009-04-29 22:00               ` Matthew Garrett
2009-04-30  7:25                 ` Ingo Molnar
2009-04-30  9:54                   ` Matthew Garrett
2009-04-30 11:10                     ` Ingo Molnar
2009-04-30 11:13                       ` Matthew Garrett
2009-05-15 19:12                         ` Darrick J. Wong
2009-06-02 23:21                           ` Darrick J. Wong
2009-06-07 10:05                             ` Ingo Molnar
2009-07-15  0:32                               ` Darrick J. Wong
2010-02-16 22:07                                 ` Matthew Garrett
2010-02-16 22:26                                   ` Darrick J. Wong
2010-02-18  9:02                                     ` Len Brown
2010-02-18 18:28                                       ` Darrick J. Wong
2010-02-19  6:12                                         ` Len Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).