View difference between Paste ID: 2hJ2anL4 and pZ2KLLrh
SHOW: | | - or go back to the newest paste.
1
CALC.CPP:
2
---------
3
4
#include "Calc.h"
5
int Calc::sum(int a, int b){
6
	return a+b;
7
}
8
int Calc::mul(int a, int b){
9
	return a*b;
10
}
11
12
CALCTEST.CPP:
13
-------------
14
15
#include "stdafx.h"
16
#include "Calc.h"
17
#include <iostream>
18
19
using namespace std;
20
using namespace System;
21
using namespace System::Text;
22
using namespace System::Collections::Generic;
23
using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
24
25
namespace CalcTest
26
{
27
	[TestClass]
28
	public ref class CalcTest
29
	{
30
	private:
31
		TestContext^ testContextInstance;
32
	public: 
33
34
		#pragma region Additional test attributes		
35
		#pragma endregion 
36
37
		[TestMethod]
38
		void TestMethod1()
39
		{
40
			Calc c;
41
			int r1 = c.sum(1,2);
42
			int r2 = c.sum(2,3);
43
44
			if( r1==3 && r2==4 ) {
45
				std::cout<<"Correct!";
46
			}
47
48
			Assert::AreEqual<int>(4, c.sum(1, 2));
49
		}
50
51
		[TestMethod]
52
		void TestMethod2()
53
		{
54
			Calc c;
55
			Assert::AreEqual<int>(3, c.sum(1, 2));
56
		}
57
58
		[TestMethod]
59
		void TestMethod3()
60
		{
61
			Calc c;
62
			Assert::AreEqual<int>(2, c.mul(1, 2));
63
		}
64
	};
65
}
66
67
BATCH SCRIPT:
68
-------------
69
70
 SET projdir=C:\Users\abudhaks\Documents\Visual Studio 2010\Projects\CalcProject
71
 SET chrome=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
72
73
 REM Triggering OpenCover
74
 "C:\Users\abudhaks\AppData\Local\Apps\OpenCover\OpenCover.Console.exe"^
75
 -register:user^
76
 -target:"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe"^
77
 -targetargs:"/noresults /noisolation /testcontainer:\"%projdir%\Debug\CalcTest.dll\""^
78
 -mergebyhash^
79
 -showunvisited^
80
 -output:"%projdir%\CoverageReport.xml"
81
 
82
 REM Creating a report directory
83
 MKDIR "%projdir%\report"
84
 
85
 REM Triggering ReportGenerator
86
 "C:\Users\abudhaks\Downloads\ReportGenerator_1.9.1.0\bin\ReportGenerator.exe"^
87
  -reports:"%projdir%\CoverageReport.xml"^
88
  -targetdir:"%projdir%\report"^
89
  -reporttypes:Html,HtmlSummary^
90
  -sourcedirs:"%projdir%\CalcProject"
91
  
92
  REM Opening the report
93
  "%chrome%" "%projdir%\report\index.htm"
94
  
95-
  pause
95+
  pause
96
97
.XML:
98
------------
99
100
<?xml version="1.0" encoding="utf-8"?>
101
<CoverageSession xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
102
  <Summary numSequencePoints="583" visitedSequencePoints="232" numBranchPoints="419" visitedBranchPoints="107" sequenceCoverage="39.79" branchCoverage="25.54" maxCyclomaticComplexity="13" minCyclomaticComplexity="1" />
103
  <Modules>
104
    <Module skippedDueTo="Filter" hash="E9-A8-6A-CC-31-FF-25-91-E6-86-F2-D5-72-EE-77-7D-AB-36-F0-0B">
105
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll</FullName>
106
      <ModuleName>mscorlib</ModuleName>
107
      <Classes />
108
    </Module>
109
    <Module skippedDueTo="Filter" hash="69-FA-36-8C-34-2E-86-DF-D0-A9-F9-D5-D6-F7-AE-FC-7C-96-72-40">
110
      <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe</FullName>
111
      <ModuleName>MSTest</ModuleName>
112
      <Classes />
113
    </Module>
114
    <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
115
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
116
      <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
117
      <Classes />
118
    </Module>
119
    <Module skippedDueTo="Filter" hash="8F-46-4B-BE-28-40-30-A2-E6-52-58-36-C3-F3-E3-75-03-AF-F4-FC">
120
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</FullName>
121
      <ModuleName>System</ModuleName>
122
      <Classes />
123
    </Module>
124
    <Module skippedDueTo="Filter" hash="0F-07-95-F4-06-60-B0-91-D8-2F-F7-51-A7-F3-27-5B-67-A8-E7-2A">
125
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ExecutionCommon\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll</FullName>
126
      <ModuleName>Microsoft.VisualStudio.QualityTools.ExecutionCommon</ModuleName>
127
      <Classes />
128
    </Module>
129
    <Module skippedDueTo="Filter" hash="DF-41-96-FA-37-22-C0-47-06-73-92-94-39-3E-F8-9C-71-77-58-80">
130
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Resource\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Resource.dll</FullName>
131
      <ModuleName>Microsoft.VisualStudio.QualityTools.Resource</ModuleName>
132
      <Classes />
133
    </Module>
134
    <Module skippedDueTo="Filter" hash="8F-6E-E8-4F-40-6A-75-31-1B-08-C2-22-D5-EA-FE-23-3B-7B-82-15">
135
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll</FullName>
136
      <ModuleName>System.Configuration</ModuleName>
137
      <Classes />
138
    </Module>
139
    <Module skippedDueTo="Filter" hash="2E-28-A3-E7-4F-05-75-91-3B-B4-A6-B7-58-E7-27-B0-EF-F7-52-11">
140
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</FullName>
141
      <ModuleName>System.Xml</ModuleName>
142
      <Classes />
143
    </Module>
144
    <Module skippedDueTo="Filter" hash="BF-25-2F-2D-9C-93-63-C7-10-D2-E5-E7-8A-58-EB-22-5B-0C-F5-0F">
145
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.CommandLine\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.CommandLine.dll</FullName>
146
      <ModuleName>Microsoft.VisualStudio.QualityTools.CommandLine</ModuleName>
147
      <Classes />
148
    </Module>
149
    <Module skippedDueTo="Filter" hash="A0-06-B7-B5-0A-91-98-28-EB-06-FC-0C-AB-4E-8B-FC-87-73-A2-47">
150
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.TMI\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.TMI.dll</FullName>
151
      <ModuleName>Microsoft.VisualStudio.QualityTools.TMI</ModuleName>
152
      <Classes />
153
    </Module>
154
    <Module skippedDueTo="Filter" hash="83-92-A6-61-AB-24-2D-60-6E-B3-F0-4C-6A-F3-38-AF-4E-6E-B8-30">
155
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</FullName>
156
      <ModuleName>System.Data</ModuleName>
157
      <Classes />
158
    </Module>
159
    <Module skippedDueTo="Filter" hash="5F-95-A9-21-AF-EF-CF-27-26-37-79-95-73-81-7A-A3-5F-E6-5D-E7">
160
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll</FullName>
161
      <ModuleName>System.Numerics</ModuleName>
162
      <Classes />
163
    </Module>
164
    <Module skippedDueTo="Filter" hash="ED-71-AA-D1-28-9F-3A-03-35-2F-8B-6F-2D-56-17-E0-2A-D3-EF-A3">
165
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll</FullName>
166
      <ModuleName>System.Web</ModuleName>
167
      <Classes />
168
    </Module>
169
    <Module skippedDueTo="Filter" hash="F0-AC-29-46-F9-CE-FF-96-AE-EE-4F-C0-DE-9E-59-D3-7E-1B-ED-08">
170
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</FullName>
171
      <ModuleName>System.Core</ModuleName>
172
      <Classes />
173
    </Module>
174
    <Module skippedDueTo="Filter" hash="70-0C-80-41-7B-A9-6E-D6-6D-57-D4-7E-90-9D-53-BE-EF-10-D1-31">
175
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll</FullName>
176
      <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip</ModuleName>
177
      <Classes />
178
    </Module>
179
    <Module skippedDueTo="Filter" hash="AF-05-8D-43-E3-DA-AB-39-5E-1C-C1-7D-03-30-C2-CD-51-4C-F7-2E">
180
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll</FullName>
181
      <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel</ModuleName>
182
      <Classes />
183
    </Module>
184
    <Module skippedDueTo="Filter" hash="1A-8E-7F-63-79-81-73-62-C8-B6-77-39-F8-97-1B-CB-6B-2B-67-76">
185
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.UnitTestFramework\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</FullName>
186
      <ModuleName>Microsoft.VisualStudio.QualityTools.UnitTestFramework</ModuleName>
187
      <Classes />
188
    </Module>
189
    <Module skippedDueTo="Filter" hash="BD-91-25-5D-5B-40-91-44-C6-CC-30-E7-84-09-1F-EC-32-46-EF-F1">
190
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll</FullName>
191
      <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver</ModuleName>
192
      <Classes />
193
    </Module>
194
    <Module hash="50-49-89-A1-5D-DC-BD-8A-2B-E8-46-94-46-78-B6-3B-35-4E-5B-44">
195
      <Summary numSequencePoints="583" visitedSequencePoints="232" numBranchPoints="419" visitedBranchPoints="107" sequenceCoverage="39.79" branchCoverage="25.54" maxCyclomaticComplexity="13" minCyclomaticComplexity="1" />
196
      <FullName>C:\Users\abudhaks\Documents\Visual Studio 2010\Projects\CalcProject\Debug\CalcTest.dll</FullName>
197
      <ModuleName>CalcTest</ModuleName>
198
      <Files>
199
        <File uid="1" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xstddef" />
200
        <File uid="2" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\exception" />
201
        <File uid="3" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\iosfwd" />
202
        <File uid="4" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xutility" />
203
        <File uid="5" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xmemory" />
204
        <File uid="6" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale" />
205
        <File uid="7" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\ostream" />
206
        <File uid="8" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\internal.h" />
207
        <File uid="9" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\minternal.h" />
208
        <File uid="10" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp" />
209
        <File uid="11" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\msclr\gcroot.h" />
210
        <File uid="12" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\prebuild\eh\managdeh.cpp" />
211
        <File uid="13" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\prebuild\eh\ehvecdtr.cpp" />
212
        <File uid="14" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\msilexit.cpp" />
213
        <File uid="15" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\puremsilcode.cpp" />
214
        <File uid="16" fullPath="c:\users\abudhaks\documents\visual studio 2010\projects\calcproject\calctest\calctest.cpp" />
215
      </Files>
216
      <Classes>
217
        <Class>
218
          <Summary numSequencePoints="512" visitedSequencePoints="193" numBranchPoints="376" visitedBranchPoints="93" sequenceCoverage="37.70" branchCoverage="24.73" maxCyclomaticComplexity="13" minCyclomaticComplexity="0" />
219
          <FullName>&lt;Module&gt;</FullName>
220
          <Methods>
221
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
222
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
223
              <MetadataToken>100663297</MetadataToken>
224
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std._Bool_function(std._Bool_struct modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
225
              <FileRef uid="1" />
226
              <SequencePoints>
227
                <SequencePoint vc="0" uspid="1" ordinal="0" offset="0" sl="118" sc="0" el="118" ec="0" />
228
              </SequencePoints>
229
              <BranchPoints />
230
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="1" ordinal="0" offset="0" sl="118" sc="0" el="118" ec="0" />
231
            </Method>
232
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
233
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
234
              <MetadataToken>100663298</MetadataToken>
235
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.bad_alloc.{dtor}(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
236
              <FileRef uid="2" />
237
              <SequencePoints>
238
                <SequencePoint vc="0" uspid="2" ordinal="0" offset="0" sl="354" sc="0" el="354" ec="0" />
239
                <SequencePoint vc="0" uspid="3" ordinal="1" offset="7" sl="355" sc="0" el="355" ec="0" />
240
              </SequencePoints>
241
              <BranchPoints />
242
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="2" ordinal="0" offset="0" sl="354" sc="0" el="354" ec="0" />
243
            </Method>
244
            <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
245
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
246
              <MetadataToken>100663299</MetadataToken>
247
              <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.bad_alloc.__vecDelDtor(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
248
              <SequencePoints />
249
              <BranchPoints>
250
                <BranchPoint vc="0" uspid="5" ordinal="0" offset="3" path="0" />
251
                <BranchPoint vc="0" uspid="6" ordinal="1" offset="3" path="1" />
252
                <BranchPoint vc="0" uspid="7" ordinal="2" offset="26" path="0" />
253
                <BranchPoint vc="0" uspid="8" ordinal="3" offset="26" path="1" />
254
                <BranchPoint vc="0" uspid="9" ordinal="4" offset="51" path="0" />
255
                <BranchPoint vc="0" uspid="10" ordinal="5" offset="51" path="1" />
256
              </BranchPoints>
257
              <MethodPoint vc="0" uspid="4" ordinal="0" offset="0" />
258
            </Method>
259
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
260
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
261
              <MetadataToken>100663300</MetadataToken>
262
              <Name>std._Exception_ptr* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Exception_ptr.{ctor}(std._Exception_ptr* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Exception_ptr modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
263
              <FileRef uid="2" />
264
              <SequencePoints>
265
                <SequencePoint vc="0" uspid="11" ordinal="0" offset="0" sl="429" sc="0" el="429" ec="0" />
266
                <SequencePoint vc="0" uspid="12" ordinal="1" offset="7" sl="430" sc="0" el="430" ec="0" />
267
              </SequencePoints>
268
              <BranchPoints />
269
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="11" ordinal="0" offset="0" sl="429" sc="0" el="429" ec="0" />
270
            </Method>
271
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
272
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
273
              <MetadataToken>100663301</MetadataToken>
274
              <Name>System.UInt32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std.char_traits&lt;char&gt;.length(System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
275
              <FileRef uid="3" />
276
              <SequencePoints>
277
                <SequencePoint vc="0" uspid="13" ordinal="0" offset="0" sl="491" sc="0" el="491" ec="0" />
278
                <SequencePoint vc="0" uspid="14" ordinal="1" offset="7" sl="492" sc="0" el="492" ec="0" />
279
              </SequencePoints>
280
              <BranchPoints />
281
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="13" ordinal="0" offset="0" sl="491" sc="0" el="491" ec="0" />
282
            </Method>
283
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
284
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
285
              <MetadataToken>100663302</MetadataToken>
286
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std.char_traits&lt;char&gt;.eq_int_type(System.Int32 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced),System.Int32 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
287
              <FileRef uid="3" />
288
              <SequencePoints>
289
                <SequencePoint vc="0" uspid="15" ordinal="0" offset="0" sl="553" sc="0" el="553" ec="0" />
290
                <SequencePoint vc="0" uspid="16" ordinal="1" offset="11" sl="554" sc="0" el="554" ec="0" />
291
              </SequencePoints>
292
              <BranchPoints>
293
                <BranchPoint vc="0" uspid="17" ordinal="0" offset="4" path="0" />
294
                <BranchPoint vc="0" uspid="18" ordinal="1" offset="4" path="1" />
295
              </BranchPoints>
296
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="15" ordinal="0" offset="0" sl="553" sc="0" el="553" ec="0" />
297
            </Method>
298
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
299
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
300
              <MetadataToken>100663303</MetadataToken>
301
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std.char_traits&lt;char&gt;.eof()</Name>
302
              <FileRef uid="3" />
303
              <SequencePoints>
304
                <SequencePoint vc="0" uspid="19" ordinal="0" offset="0" sl="563" sc="0" el="563" ec="0" />
305
                <SequencePoint vc="0" uspid="20" ordinal="1" offset="2" sl="564" sc="0" el="564" ec="0" />
306
              </SequencePoints>
307
              <BranchPoints />
308
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="19" ordinal="0" offset="0" sl="563" sc="0" el="563" ec="0" />
309
            </Method>
310
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
311
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
312
              <MetadataToken>100663304</MetadataToken>
313
              <Name>std._Iterator_base12* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Iterator_base12.{ctor}(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Iterator_base12 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
314
              <FileRef uid="4" />
315
              <SequencePoints>
316
                <SequencePoint vc="0" uspid="21" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
317
                <SequencePoint vc="0" uspid="22" ordinal="1" offset="8" sl="117" sc="0" el="117" ec="0" />
318
                <SequencePoint vc="0" uspid="23" ordinal="2" offset="16" sl="118" sc="0" el="118" ec="0" />
319
              </SequencePoints>
320
              <BranchPoints />
321
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="21" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
322
            </Method>
323
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
324
              <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
325
              <MetadataToken>100663305</MetadataToken>
326
              <Name>std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Iterator_base12.=(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Iterator_base12 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
327
              <FileRef uid="4" />
328
              <SequencePoints>
329
                <SequencePoint vc="0" uspid="24" ordinal="0" offset="0" sl="122" sc="0" el="122" ec="0" />
330
                <SequencePoint vc="0" uspid="25" ordinal="1" offset="8" sl="124" sc="0" el="124" ec="0" />
331
                <SequencePoint vc="0" uspid="26" ordinal="2" offset="12" sl="125" sc="0" el="125" ec="0" />
332
                <SequencePoint vc="0" uspid="27" ordinal="3" offset="21" sl="126" sc="0" el="126" ec="0" />
333
                <SequencePoint vc="0" uspid="28" ordinal="4" offset="23" sl="128" sc="0" el="128" ec="0" />
334
                <SequencePoint vc="0" uspid="29" ordinal="5" offset="32" sl="129" sc="0" el="129" ec="0" />
335
                <SequencePoint vc="0" uspid="30" ordinal="6" offset="54" sl="130" sc="0" el="130" ec="0" />
336
                <SequencePoint vc="0" uspid="31" ordinal="7" offset="61" sl="131" sc="0" el="131" ec="0" />
337
                <SequencePoint vc="0" uspid="32" ordinal="8" offset="63" sl="132" sc="0" el="132" ec="0" />
338
              </SequencePoints>
339
              <BranchPoints>
340
                <BranchPoint vc="0" uspid="33" ordinal="0" offset="4" path="0" />
341
                <BranchPoint vc="0" uspid="34" ordinal="1" offset="4" path="1" />
342
                <BranchPoint vc="0" uspid="35" ordinal="2" offset="10" path="0" />
343
                <BranchPoint vc="0" uspid="36" ordinal="3" offset="10" path="1" />
344
              </BranchPoints>
345
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="24" ordinal="0" offset="0" sl="122" sc="0" el="122" ec="0" />
346
            </Method>
347
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
348
              <Summary numSequencePoints="14" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
349
              <MetadataToken>100663306</MetadataToken>
350
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Iterator_base12._Adopt(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Container_base12 modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
351
              <FileRef uid="4" />
352
              <SequencePoints>
353
                <SequencePoint vc="0" uspid="37" ordinal="0" offset="0" sl="144" sc="0" el="144" ec="0" />
354
                <SequencePoint vc="0" uspid="38" ordinal="1" offset="3" sl="146" sc="0" el="146" ec="0" />
355
                <SequencePoint vc="0" uspid="39" ordinal="2" offset="12" sl="147" sc="0" el="147" ec="0" />
356
                <SequencePoint vc="0" uspid="40" ordinal="3" offset="34" sl="148" sc="0" el="148" ec="0" />
357
                <SequencePoint vc="0" uspid="41" ordinal="4" offset="41" sl="149" sc="0" el="149" ec="0" />
358
                <SequencePoint vc="0" uspid="42" ordinal="5" offset="43" sl="151" sc="0" el="151" ec="0" />
359
                <SequencePoint vc="0" uspid="43" ordinal="6" offset="46" sl="154" sc="0" el="154" ec="0" />
360
                <SequencePoint vc="0" uspid="44" ordinal="7" offset="51" sl="156" sc="0" el="156" ec="0" />
361
                <SequencePoint vc="0" uspid="45" ordinal="8" offset="60" sl="157" sc="0" el="157" ec="0" />
362
                <SequencePoint vc="0" uspid="46" ordinal="9" offset="66" sl="158" sc="0" el="158" ec="0" />
363
                <SequencePoint vc="0" uspid="47" ordinal="10" offset="74" sl="159" sc="0" el="159" ec="0" />
364
                <SequencePoint vc="0" uspid="48" ordinal="11" offset="79" sl="160" sc="0" el="160" ec="0" />
365
                <SequencePoint vc="0" uspid="49" ordinal="12" offset="98" sl="161" sc="0" el="161" ec="0" />
366
                <SequencePoint vc="0" uspid="50" ordinal="13" offset="105" sl="166" sc="0" el="166" ec="0" />
367
              </SequencePoints>
368
              <BranchPoints>
369
                <BranchPoint vc="0" uspid="51" ordinal="0" offset="1" path="0" />
370
                <BranchPoint vc="0" uspid="52" ordinal="1" offset="1" path="1" />
371
                <BranchPoint vc="0" uspid="53" ordinal="2" offset="49" path="0" />
372
                <BranchPoint vc="0" uspid="54" ordinal="3" offset="49" path="1" />
373
              </BranchPoints>
374
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="37" ordinal="0" offset="0" sl="144" sc="0" el="144" ec="0" />
375
            </Method>
376
            <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
377
              <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
378
              <MetadataToken>100663307</MetadataToken>
379
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Iterator_base12._Orphan_me(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
380
              <FileRef uid="4" />
381
              <SequencePoints>
382
                <SequencePoint vc="0" uspid="55" ordinal="0" offset="0" sl="186" sc="0" el="186" ec="0" />
383
                <SequencePoint vc="0" uspid="56" ordinal="1" offset="4" sl="188" sc="0" el="188" ec="0" />
384
                <SequencePoint vc="0" uspid="57" ordinal="2" offset="9" sl="189" sc="0" el="189" ec="0" />
385
                <SequencePoint vc="0" uspid="58" ordinal="3" offset="18" sl="190" sc="0" el="190" ec="0" />
386
                <SequencePoint vc="0" uspid="59" ordinal="4" offset="25" sl="192" sc="0" el="192" ec="0" />
387
                <SequencePoint vc="0" uspid="60" ordinal="5" offset="29" sl="193" sc="0" el="193" ec="0" />
388
                <SequencePoint vc="0" uspid="61" ordinal="6" offset="49" sl="194" sc="0" el="194" ec="0" />
389
                <SequencePoint vc="0" uspid="62" ordinal="7" offset="55" sl="195" sc="0" el="195" ec="0" />
390
                <SequencePoint vc="0" uspid="63" ordinal="8" offset="58" sl="198" sc="0" el="198" ec="0" />
391
              </SequencePoints>
392
              <BranchPoints>
393
                <BranchPoint vc="0" uspid="64" ordinal="0" offset="2" path="0" />
394
                <BranchPoint vc="0" uspid="65" ordinal="1" offset="2" path="1" />
395
                <BranchPoint vc="0" uspid="66" ordinal="2" offset="11" path="0" />
396
                <BranchPoint vc="0" uspid="67" ordinal="3" offset="11" path="1" />
397
                <BranchPoint vc="0" uspid="68" ordinal="4" offset="16" path="0" />
398
                <BranchPoint vc="0" uspid="69" ordinal="5" offset="16" path="1" />
399
                <BranchPoint vc="0" uspid="70" ordinal="6" offset="27" path="0" />
400
                <BranchPoint vc="0" uspid="71" ordinal="7" offset="27" path="1" />
401
              </BranchPoints>
402
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="55" ordinal="0" offset="0" sl="186" sc="0" el="186" ec="0" />
403
            </Method>
404
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
405
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
406
              <MetadataToken>100663308</MetadataToken>
407
              <Name>std.allocator&lt;void&gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.allocator&lt;void&gt;.{ctor}(std.allocator&lt;void&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator&lt;void&gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
408
              <FileRef uid="5" />
409
              <SequencePoints>
410
                <SequencePoint vc="0" uspid="72" ordinal="0" offset="0" sl="244" sc="0" el="244" ec="0" />
411
              </SequencePoints>
412
              <BranchPoints />
413
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="72" ordinal="0" offset="0" sl="244" sc="0" el="244" ec="0" />
414
            </Method>
415
            <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
416
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
417
              <MetadataToken>100663309</MetadataToken>
418
              <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.runtime_error.__vecDelDtor(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
419
              <SequencePoints />
420
              <BranchPoints>
421
                <BranchPoint vc="0" uspid="74" ordinal="0" offset="3" path="0" />
422
                <BranchPoint vc="0" uspid="75" ordinal="1" offset="3" path="1" />
423
                <BranchPoint vc="0" uspid="76" ordinal="2" offset="26" path="0" />
424
                <BranchPoint vc="0" uspid="77" ordinal="3" offset="26" path="1" />
425
                <BranchPoint vc="0" uspid="78" ordinal="4" offset="51" path="0" />
426
                <BranchPoint vc="0" uspid="79" ordinal="5" offset="51" path="1" />
427
              </BranchPoints>
428
              <MethodPoint vc="0" uspid="73" ordinal="0" offset="0" />
429
            </Method>
430
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
431
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
432
              <MetadataToken>100663310</MetadataToken>
433
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.runtime_error.{dtor}(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
434
              <SequencePoints />
435
              <BranchPoints />
436
              <MethodPoint vc="0" uspid="80" ordinal="0" offset="0" />
437
            </Method>
438
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
439
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
440
              <MetadataToken>100663311</MetadataToken>
441
              <Name>std.runtime_error* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.runtime_error.{ctor}(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.runtime_error modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
442
              <SequencePoints />
443
              <BranchPoints />
444
              <MethodPoint vc="0" uspid="81" ordinal="0" offset="0" />
445
            </Method>
446
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
447
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
448
              <MetadataToken>100663312</MetadataToken>
449
              <Name>std.locale* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.locale.{ctor}(std.locale* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.locale modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
450
              <FileRef uid="6" />
451
              <SequencePoints>
452
                <SequencePoint vc="0" uspid="82" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
453
                <SequencePoint vc="0" uspid="83" ordinal="1" offset="4" sl="310" sc="0" el="310" ec="0" />
454
                <SequencePoint vc="0" uspid="84" ordinal="2" offset="11" sl="311" sc="0" el="311" ec="0" />
455
              </SequencePoints>
456
              <BranchPoints />
457
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="82" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
458
            </Method>
459
            <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
460
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
461
              <MetadataToken>100663313</MetadataToken>
462
              <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.system_error.__vecDelDtor(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
463
              <SequencePoints />
464
              <BranchPoints>
465
                <BranchPoint vc="0" uspid="86" ordinal="0" offset="3" path="0" />
466
                <BranchPoint vc="0" uspid="87" ordinal="1" offset="3" path="1" />
467
                <BranchPoint vc="0" uspid="88" ordinal="2" offset="26" path="0" />
468
                <BranchPoint vc="0" uspid="89" ordinal="3" offset="26" path="1" />
469
                <BranchPoint vc="0" uspid="90" ordinal="4" offset="51" path="0" />
470
                <BranchPoint vc="0" uspid="91" ordinal="5" offset="51" path="1" />
471
              </BranchPoints>
472
              <MethodPoint vc="0" uspid="85" ordinal="0" offset="0" />
473
            </Method>
474
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
475
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
476
              <MetadataToken>100663314</MetadataToken>
477
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.system_error.{dtor}(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
478
              <SequencePoints />
479
              <BranchPoints />
480
              <MethodPoint vc="0" uspid="92" ordinal="0" offset="0" />
481
            </Method>
482
            <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
483
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
484
              <MetadataToken>100663315</MetadataToken>
485
              <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.failure.__vecDelDtor(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
486
              <SequencePoints />
487
              <BranchPoints>
488
                <BranchPoint vc="0" uspid="94" ordinal="0" offset="3" path="0" />
489
                <BranchPoint vc="0" uspid="95" ordinal="1" offset="3" path="1" />
490
                <BranchPoint vc="0" uspid="96" ordinal="2" offset="26" path="0" />
491
                <BranchPoint vc="0" uspid="97" ordinal="3" offset="26" path="1" />
492
                <BranchPoint vc="0" uspid="98" ordinal="4" offset="51" path="0" />
493
                <BranchPoint vc="0" uspid="99" ordinal="5" offset="51" path="1" />
494
              </BranchPoints>
495
              <MethodPoint vc="0" uspid="93" ordinal="0" offset="0" />
496
            </Method>
497
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
498
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
499
              <MetadataToken>100663316</MetadataToken>
500
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.failure.{dtor}(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
501
              <SequencePoints />
502
              <BranchPoints />
503
              <MethodPoint vc="0" uspid="100" ordinal="0" offset="0" />
504
            </Method>
505
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
506
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
507
              <MetadataToken>100663317</MetadataToken>
508
              <Name>std.ios_base/failure* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.failure.{ctor}(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.ios_base/failure modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
509
              <SequencePoints />
510
              <BranchPoints />
511
              <MethodPoint vc="0" uspid="101" ordinal="0" offset="0" />
512
            </Method>
513
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
514
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
515
              <MetadataToken>100663318</MetadataToken>
516
              <Name>std.system_error* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.system_error.{ctor}(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.system_error modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
517
              <SequencePoints />
518
              <BranchPoints />
519
              <MethodPoint vc="0" uspid="102" ordinal="0" offset="0" />
520
            </Method>
521
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
522
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
523
              <MetadataToken>100663319</MetadataToken>
524
              <Name>std.allocator&lt;char&gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.allocator&lt;char&gt;.{ctor}(std.allocator&lt;char&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator&lt;char&gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
525
              <FileRef uid="5" />
526
              <SequencePoints>
527
                <SequencePoint vc="0" uspid="103" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
528
              </SequencePoints>
529
              <BranchPoints />
530
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="103" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
531
            </Method>
532
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
533
              <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
534
              <MetadataToken>100663320</MetadataToken>
535
              <Name>std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/sentry* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;.sentry.{ctor}(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/sentry* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
536
              <FileRef uid="7" />
537
              <SequencePoints>
538
                <SequencePoint vc="0" uspid="104" ordinal="0" offset="0" sl="114" sc="0" el="114" ec="0" />
539
                <SequencePoint vc="0" uspid="105" ordinal="1" offset="8" sl="115" sc="0" el="115" ec="0" />
540
                <SequencePoint vc="0" uspid="106" ordinal="2" offset="36" sl="116" sc="0" el="116" ec="0" />
541
                <SequencePoint vc="0" uspid="107" ordinal="3" offset="54" sl="117" sc="0" el="117" ec="0" />
542
                <SequencePoint vc="0" uspid="108" ordinal="4" offset="85" sl="118" sc="0" el="118" ec="0" />
543
              </SequencePoints>
544
              <BranchPoints>
545
                <BranchPoint vc="0" uspid="109" ordinal="0" offset="20" path="0" />
546
                <BranchPoint vc="0" uspid="110" ordinal="1" offset="20" path="1" />
547
                <BranchPoint vc="0" uspid="111" ordinal="2" offset="34" path="0" />
548
                <BranchPoint vc="0" uspid="112" ordinal="3" offset="34" path="1" />
549
              </BranchPoints>
550
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="104" ordinal="0" offset="0" sl="114" sc="0" el="114" ec="0" />
551
            </Method>
552
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
553
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
554
              <MetadataToken>100663321</MetadataToken>
555
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;.sentry.{dtor}(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/sentry* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
556
              <FileRef uid="7" />
557
              <SequencePoints>
558
                <SequencePoint vc="0" uspid="113" ordinal="0" offset="0" sl="123" sc="0" el="123" ec="0" />
559
                <SequencePoint vc="0" uspid="114" ordinal="1" offset="9" sl="124" sc="0" el="124" ec="0" />
560
                <SequencePoint vc="0" uspid="115" ordinal="2" offset="31" sl="129" sc="0" el="129" ec="0" />
561
              </SequencePoints>
562
              <BranchPoints>
563
                <BranchPoint vc="0" uspid="116" ordinal="0" offset="5" path="0" />
564
                <BranchPoint vc="0" uspid="117" ordinal="1" offset="5" path="1" />
565
              </BranchPoints>
566
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="113" ordinal="0" offset="0" sl="123" sc="0" el="123" ec="0" />
567
            </Method>
568
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
569
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
570
              <MetadataToken>100663322</MetadataToken>
571
              <Name>method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *(std._Bool_struct modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced)) modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;.sentry..P6AXABU_Bool_struct@std@@@Z(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/sentry modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
572
              <FileRef uid="7" />
573
              <SequencePoints>
574
                <SequencePoint vc="0" uspid="118" ordinal="0" offset="0" sl="133" sc="0" el="133" ec="0" />
575
                <SequencePoint vc="0" uspid="119" ordinal="1" offset="15" sl="134" sc="0" el="134" ec="0" />
576
              </SequencePoints>
577
              <BranchPoints>
578
                <BranchPoint vc="0" uspid="120" ordinal="0" offset="4" path="0" />
579
                <BranchPoint vc="0" uspid="121" ordinal="1" offset="4" path="1" />
580
              </BranchPoints>
581
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="118" ordinal="0" offset="0" sl="133" sc="0" el="133" ec="0" />
582
            </Method>
583
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
584
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
585
              <MetadataToken>100663323</MetadataToken>
586
              <Name>std.allocator&lt;wchar_t&gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.allocator&lt;wchar_t&gt;.{ctor}(std.allocator&lt;wchar_t&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator&lt;wchar_t&gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
587
              <FileRef uid="5" />
588
              <SequencePoints>
589
                <SequencePoint vc="0" uspid="122" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
590
              </SequencePoints>
591
              <BranchPoints />
592
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="122" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
593
            </Method>
594
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
595
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
596
              <MetadataToken>100663324</MetadataToken>
597
              <Name>std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/_Sentry_base* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;._Sentry_base.{ctor}(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/_Sentry_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
598
              <FileRef uid="7" />
599
              <SequencePoints>
600
                <SequencePoint vc="0" uspid="123" ordinal="0" offset="0" sl="91" sc="0" el="91" ec="0" />
601
                <SequencePoint vc="0" uspid="124" ordinal="1" offset="3" sl="92" sc="0" el="92" ec="0" />
602
                <SequencePoint vc="0" uspid="125" ordinal="2" offset="19" sl="93" sc="0" el="93" ec="0" />
603
                <SequencePoint vc="0" uspid="126" ordinal="3" offset="43" sl="94" sc="0" el="94" ec="0" />
604
              </SequencePoints>
605
              <BranchPoints>
606
                <BranchPoint vc="0" uspid="127" ordinal="0" offset="17" path="0" />
607
                <BranchPoint vc="0" uspid="128" ordinal="1" offset="17" path="1" />
608
              </BranchPoints>
609
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="123" ordinal="0" offset="0" sl="91" sc="0" el="91" ec="0" />
610
            </Method>
611
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
612
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
613
              <MetadataToken>100663325</MetadataToken>
614
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;._Sentry_base.{dtor}(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;/_Sentry_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
615
              <FileRef uid="7" />
616
              <SequencePoints>
617
                <SequencePoint vc="0" uspid="129" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
618
                <SequencePoint vc="0" uspid="130" ordinal="1" offset="16" sl="99" sc="0" el="99" ec="0" />
619
                <SequencePoint vc="0" uspid="131" ordinal="2" offset="40" sl="100" sc="0" el="100" ec="0" />
620
              </SequencePoints>
621
              <BranchPoints>
622
                <BranchPoint vc="0" uspid="132" ordinal="0" offset="14" path="0" />
623
                <BranchPoint vc="0" uspid="133" ordinal="1" offset="14" path="1" />
624
              </BranchPoints>
625
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="129" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
626
            </Method>
627
            <Method visited="false" cyclomaticComplexity="13" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
628
              <Summary numSequencePoints="26" visitedSequencePoints="0" numBranchPoints="25" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="13" minCyclomaticComplexity="13" />
629
              <MetadataToken>100663326</MetadataToken>
630
              <Name>std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std.operator&lt;&lt;&lt;struct std::char_traits&lt;char&gt; &gt;(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
631
              <FileRef uid="7" />
632
              <SequencePoints>
633
                <SequencePoint vc="0" uspid="134" ordinal="0" offset="0" sl="770" sc="0" el="770" ec="0" />
634
                <SequencePoint vc="0" uspid="135" ordinal="1" offset="13" sl="771" sc="0" el="771" ec="0" />
635
                <SequencePoint vc="0" uspid="136" ordinal="2" offset="21" sl="773" sc="0" el="773" ec="0" />
636
                <SequencePoint vc="0" uspid="137" ordinal="3" offset="77" sl="774" sc="0" el="774" ec="0" />
637
                <SequencePoint vc="0" uspid="138" ordinal="4" offset="86" sl="776" sc="0" el="776" ec="0" />
638
                <SequencePoint vc="0" uspid="139" ordinal="5" offset="97" sl="777" sc="0" el="777" ec="0" />
639
                <SequencePoint vc="0" uspid="140" ordinal="6" offset="101" sl="778" sc="0" el="778" ec="0" />
640
                <SequencePoint vc="0" uspid="141" ordinal="7" offset="107" sl="781" sc="0" el="781" ec="0" />
641
                <SequencePoint vc="0" uspid="142" ordinal="8" offset="129" sl="782" sc="0" el="782" ec="0" />
642
                <SequencePoint vc="0" uspid="143" ordinal="9" offset="141" sl="784" sc="0" el="784" ec="0" />
643
                <SequencePoint vc="0" uspid="144" ordinal="10" offset="190" sl="786" sc="0" el="786" ec="0" />
644
                <SequencePoint vc="0" uspid="145" ordinal="11" offset="194" sl="787" sc="0" el="787" ec="0" />
645
                <SequencePoint vc="0" uspid="146" ordinal="12" offset="196" sl="790" sc="0" el="790" ec="0" />
646
                <SequencePoint vc="0" uspid="147" ordinal="13" offset="198" sl="791" sc="0" el="791" ec="0" />
647
                <SequencePoint vc="0" uspid="148" ordinal="14" offset="223" sl="792" sc="0" el="792" ec="0" />
648
                <SequencePoint vc="0" uspid="149" ordinal="15" offset="227" sl="794" sc="0" el="794" ec="0" />
649
                <SequencePoint vc="0" uspid="150" ordinal="16" offset="230" sl="795" sc="0" el="795" ec="0" />
650
                <SequencePoint vc="0" uspid="151" ordinal="17" offset="242" sl="797" sc="0" el="797" ec="0" />
651
                <SequencePoint vc="0" uspid="152" ordinal="18" offset="291" sl="799" sc="0" el="799" ec="0" />
652
                <SequencePoint vc="0" uspid="153" ordinal="19" offset="295" sl="800" sc="0" el="800" ec="0" />
653
                <SequencePoint vc="0" uspid="154" ordinal="20" offset="297" sl="802" sc="0" el="802" ec="0" />
654
                <SequencePoint vc="0" uspid="155" ordinal="21" offset="339" sl="803" sc="0" el="803" ec="0" />
655
                <SequencePoint vc="0" uspid="156" ordinal="22" offset="387" sl="803" sc="0" el="803" ec="0" />
656
                <SequencePoint vc="0" uspid="157" ordinal="23" offset="408" sl="806" sc="0" el="806" ec="0" />
657
                <SequencePoint vc="0" uspid="158" ordinal="24" offset="422" sl="807" sc="0" el="807" ec="0" />
658
                <SequencePoint vc="0" uspid="159" ordinal="25" offset="452" sl="808" sc="0" el="808" ec="0" />
659
              </SequencePoints>
660
              <BranchPoints>
661
                <BranchPoint vc="0" uspid="160" ordinal="0" offset="35" path="0" />
662
                <BranchPoint vc="0" uspid="161" ordinal="1" offset="35" path="1" />
663
                <BranchPoint vc="0" uspid="162" ordinal="2" offset="50" path="0" />
664
                <BranchPoint vc="0" uspid="163" ordinal="3" offset="50" path="1" />
665
                <BranchPoint vc="0" uspid="164" ordinal="4" offset="93" path="0" />
666
                <BranchPoint vc="0" uspid="165" ordinal="5" offset="93" path="1" />
667
                <BranchPoint vc="0" uspid="166" ordinal="6" offset="127" path="0" />
668
                <BranchPoint vc="0" uspid="167" ordinal="7" offset="127" path="1" />
669
                <BranchPoint vc="0" uspid="168" ordinal="8" offset="139" path="0" />
670
                <BranchPoint vc="0" uspid="169" ordinal="9" offset="139" path="1" />
671
                <BranchPoint vc="0" uspid="170" ordinal="10" offset="188" path="0" />
672
                <BranchPoint vc="0" uspid="171" ordinal="11" offset="188" path="1" />
673
                <BranchPoint vc="0" uspid="172" ordinal="12" offset="199" path="0" />
674
                <BranchPoint vc="0" uspid="173" ordinal="13" offset="199" path="1" />
675
                <BranchPoint vc="0" uspid="174" ordinal="14" offset="221" path="0" />
676
                <BranchPoint vc="0" uspid="175" ordinal="15" offset="221" path="1" />
677
                <BranchPoint vc="0" uspid="176" ordinal="16" offset="228" path="0" />
678
                <BranchPoint vc="0" uspid="177" ordinal="17" offset="228" path="1" />
679
                <BranchPoint vc="0" uspid="178" ordinal="18" offset="240" path="0" />
680
                <BranchPoint vc="0" uspid="179" ordinal="19" offset="240" path="1" />
681
                <BranchPoint vc="0" uspid="180" ordinal="20" offset="289" path="0" />
682
                <BranchPoint vc="0" uspid="181" ordinal="21" offset="289" path="1" />
683
                <BranchPoint vc="0" uspid="182" ordinal="22" offset="391" path="0" />
684
                <BranchPoint vc="0" uspid="183" ordinal="23" offset="391" path="1" />
685
              </BranchPoints>
686
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="134" ordinal="0" offset="0" sl="770" sc="0" el="770" ec="0" />
687
            </Method>
688
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
689
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
690
              <MetadataToken>100663327</MetadataToken>
691
              <Name>std.bad_alloc* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.bad_alloc.{ctor}(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.bad_alloc modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
692
              <SequencePoints />
693
              <BranchPoints />
694
              <MethodPoint vc="0" uspid="184" ordinal="0" offset="0" />
695
            </Method>
696
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
697
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
698
              <MetadataToken>100663328</MetadataToken>
699
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.NativeDll.IsInDllMain()</Name>
700
              <FileRef uid="8" />
701
              <SequencePoints>
702
                <SequencePoint vc="0" uspid="185" ordinal="0" offset="0" sl="579" sc="0" el="579" ec="0" />
703
              </SequencePoints>
704
              <BranchPoints>
705
                <BranchPoint vc="0" uspid="186" ordinal="0" offset="8" path="0" />
706
                <BranchPoint vc="0" uspid="187" ordinal="1" offset="8" path="1" />
707
              </BranchPoints>
708
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="185" ordinal="0" offset="0" sl="579" sc="0" el="579" ec="0" />
709
            </Method>
710
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
711
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
712
              <MetadataToken>100663329</MetadataToken>
713
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.NativeDll.IsInProcessAttach()</Name>
714
              <FileRef uid="8" />
715
              <SequencePoints>
716
                <SequencePoint vc="0" uspid="188" ordinal="0" offset="0" sl="584" sc="0" el="584" ec="0" />
717
              </SequencePoints>
718
              <BranchPoints />
719
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="188" ordinal="0" offset="0" sl="584" sc="0" el="584" ec="0" />
720
            </Method>
721
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
722
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
723
              <MetadataToken>100663330</MetadataToken>
724
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.NativeDll.IsInProcessDetach()</Name>
725
              <FileRef uid="8" />
726
              <SequencePoints>
727
                <SequencePoint vc="0" uspid="189" ordinal="0" offset="0" sl="589" sc="0" el="589" ec="0" />
728
              </SequencePoints>
729
              <BranchPoints />
730
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="189" ordinal="0" offset="0" sl="589" sc="0" el="589" ec="0" />
731
            </Method>
732
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
733
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
734
              <MetadataToken>100663331</MetadataToken>
735
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.NativeDll.IsInVcclrit()</Name>
736
              <FileRef uid="8" />
737
              <SequencePoints>
738
                <SequencePoint vc="0" uspid="190" ordinal="0" offset="0" sl="594" sc="0" el="594" ec="0" />
739
              </SequencePoints>
740
              <BranchPoints>
741
                <BranchPoint vc="0" uspid="191" ordinal="0" offset="8" path="0" />
742
                <BranchPoint vc="0" uspid="192" ordinal="1" offset="8" path="1" />
743
              </BranchPoints>
744
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="190" ordinal="0" offset="0" sl="594" sc="0" el="594" ec="0" />
745
            </Method>
746
            <Method visited="true" cyclomaticComplexity="9" sequenceCoverage="40" branchCoverage="23.08" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
747
              <Summary numSequencePoints="5" visitedSequencePoints="2" numBranchPoints="13" visitedBranchPoints="3" sequenceCoverage="40" branchCoverage="23.08" maxCyclomaticComplexity="9" minCyclomaticComplexity="9" />
748
              <MetadataToken>100663332</MetadataToken>
749
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.NativeDll.IsSafeForManagedCode()</Name>
750
              <FileRef uid="8" />
751
              <SequencePoints>
752
                <SequencePoint vc="1" uspid="193" ordinal="0" offset="0" sl="599" sc="0" el="599" ec="0" />
753
                <SequencePoint vc="1" uspid="194" ordinal="1" offset="17" sl="601" sc="0" el="601" ec="0" />
754
                <SequencePoint vc="0" uspid="195" ordinal="2" offset="19" sl="604" sc="0" el="604" ec="0" />
755
                <SequencePoint vc="0" uspid="196" ordinal="3" offset="36" sl="606" sc="0" el="606" ec="0" />
756
                <SequencePoint vc="0" uspid="197" ordinal="4" offset="38" sl="609" sc="0" el="609" ec="0" />
757
              </SequencePoints>
758
              <BranchPoints>
759
                <BranchPoint vc="1" uspid="198" ordinal="0" offset="8" path="0" />
760
                <BranchPoint vc="0" uspid="199" ordinal="1" offset="8" path="1" />
761
                <BranchPoint vc="1" uspid="200" ordinal="2" offset="15" path="0" />
762
                <BranchPoint vc="0" uspid="201" ordinal="3" offset="15" path="1" />
763
                <BranchPoint vc="0" uspid="202" ordinal="4" offset="27" path="0" />
764
                <BranchPoint vc="0" uspid="203" ordinal="5" offset="27" path="1" />
765
                <BranchPoint vc="0" uspid="204" ordinal="6" offset="34" path="0" />
766
                <BranchPoint vc="0" uspid="205" ordinal="7" offset="34" path="1" />
767
                <BranchPoint vc="0" uspid="206" ordinal="8" offset="49" path="0" />
768
                <BranchPoint vc="0" uspid="207" ordinal="9" offset="49" path="1" />
769
                <BranchPoint vc="0" uspid="208" ordinal="10" offset="62" path="0" />
770
                <BranchPoint vc="0" uspid="209" ordinal="11" offset="62" path="1" />
771
              </BranchPoints>
772
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="193" ordinal="0" offset="0" sl="599" sc="0" el="599" ec="0" />
773
            </Method>
774
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
775
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
776
              <MetadataToken>100663333</MetadataToken>
777
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.ThrowNestedModuleLoadException(System.Exception,System.Exception)</Name>
778
              <FileRef uid="9" />
779
              <SequencePoints>
780
                <SequencePoint vc="0" uspid="210" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
781
                <SequencePoint vc="0" uspid="211" ordinal="1" offset="13" sl="185" sc="0" el="185" ec="0" />
782
              </SequencePoints>
783
              <BranchPoints />
784
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="210" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
785
            </Method>
786
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
787
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
788
              <MetadataToken>100663334</MetadataToken>
789
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.ThrowModuleLoadException(System.String)</Name>
790
              <FileRef uid="9" />
791
              <SequencePoints>
792
                <SequencePoint vc="0" uspid="212" ordinal="0" offset="0" sl="189" sc="0" el="189" ec="0" />
793
                <SequencePoint vc="0" uspid="213" ordinal="1" offset="7" sl="190" sc="0" el="190" ec="0" />
794
              </SequencePoints>
795
              <BranchPoints />
796
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="212" ordinal="0" offset="0" sl="189" sc="0" el="189" ec="0" />
797
            </Method>
798
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
799
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
800
              <MetadataToken>100663335</MetadataToken>
801
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.ThrowModuleLoadException(System.String,System.Exception)</Name>
802
              <FileRef uid="9" />
803
              <SequencePoints>
804
                <SequencePoint vc="0" uspid="214" ordinal="0" offset="0" sl="194" sc="0" el="194" ec="0" />
805
                <SequencePoint vc="0" uspid="215" ordinal="1" offset="8" sl="195" sc="0" el="195" ec="0" />
806
              </SequencePoints>
807
              <BranchPoints />
808
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="214" ordinal="0" offset="0" sl="194" sc="0" el="194" ec="0" />
809
            </Method>
810
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
811
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
812
              <MetadataToken>100663336</MetadataToken>
813
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.RegisterModuleUninitializer(System.EventHandler)</Name>
814
              <FileRef uid="9" />
815
              <SequencePoints>
816
                <SequencePoint vc="1" uspid="216" ordinal="0" offset="0" sl="292" sc="0" el="292" ec="0" />
817
                <SequencePoint vc="1" uspid="217" ordinal="1" offset="11" sl="293" sc="0" el="293" ec="0" />
818
              </SequencePoints>
819
              <BranchPoints />
820
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="216" ordinal="0" offset="0" sl="292" sc="0" el="292" ec="0" />
821
            </Method>
822
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
823
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
824
              <MetadataToken>100663337</MetadataToken>
825
              <Name>System.Guid &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.FromGUID(_GUID modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
826
              <FileRef uid="9" />
827
              <SequencePoints>
828
                <SequencePoint vc="0" uspid="218" ordinal="0" offset="0" sl="304" sc="0" el="304" ec="0" />
829
              </SequencePoints>
830
              <BranchPoints />
831
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="218" ordinal="0" offset="0" sl="304" sc="0" el="304" ec="0" />
832
            </Method>
833
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
834
              <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
835
              <MetadataToken>100663338</MetadataToken>
836
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__get_default_appdomain(IUnknown**)</Name>
837
              <FileRef uid="9" />
838
              <SequencePoints>
839
                <SequencePoint vc="0" uspid="219" ordinal="0" offset="0" sl="319" sc="0" el="319" ec="0" />
840
                <SequencePoint vc="0" uspid="220" ordinal="1" offset="2" sl="327" sc="0" el="327" ec="0" />
841
                <SequencePoint vc="0" uspid="221" ordinal="2" offset="47" sl="328" sc="0" el="328" ec="0" />
842
                <SequencePoint vc="0" uspid="222" ordinal="3" offset="49" sl="331" sc="0" el="331" ec="0" />
843
                <SequencePoint vc="0" uspid="223" ordinal="4" offset="55" sl="332" sc="0" el="332" ec="0" />
844
                <SequencePoint vc="0" uspid="224" ordinal="5" offset="57" sl="334" sc="0" el="334" ec="0" />
845
                <SequencePoint vc="0" uspid="225" ordinal="6" offset="61" sl="337" sc="0" el="337" ec="0" />
846
                <SequencePoint vc="0" uspid="226" ordinal="7" offset="75" sl="338" sc="0" el="338" ec="0" />
847
                <SequencePoint vc="0" uspid="227" ordinal="8" offset="87" sl="341" sc="0" el="341" ec="0" />
848
              </SequencePoints>
849
              <BranchPoints>
850
                <BranchPoint vc="0" uspid="228" ordinal="0" offset="59" path="0" />
851
                <BranchPoint vc="0" uspid="229" ordinal="1" offset="59" path="1" />
852
              </BranchPoints>
853
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="219" ordinal="0" offset="0" sl="319" sc="0" el="319" ec="0" />
854
            </Method>
855
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
856
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
857
              <MetadataToken>100663339</MetadataToken>
858
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__release_appdomain(IUnknown*)</Name>
859
              <FileRef uid="9" />
860
              <SequencePoints>
861
                <SequencePoint vc="0" uspid="230" ordinal="0" offset="0" sl="346" sc="0" el="346" ec="0" />
862
                <SequencePoint vc="0" uspid="231" ordinal="1" offset="12" sl="347" sc="0" el="347" ec="0" />
863
              </SequencePoints>
864
              <BranchPoints />
865
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="230" ordinal="0" offset="0" sl="346" sc="0" el="346" ec="0" />
866
            </Method>
867
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
868
              <Summary numSequencePoints="11" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
869
              <MetadataToken>100663340</MetadataToken>
870
              <Name>System.AppDomain &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.GetDefaultDomain()</Name>
871
              <FileRef uid="9" />
872
              <SequencePoints>
873
                <SequencePoint vc="0" uspid="232" ordinal="0" offset="0" sl="356" sc="0" el="356" ec="0" />
874
                <SequencePoint vc="0" uspid="233" ordinal="1" offset="2" sl="357" sc="0" el="357" ec="0" />
875
                <SequencePoint vc="0" uspid="234" ordinal="2" offset="10" sl="359" sc="0" el="359" ec="0" />
876
                <SequencePoint vc="0" uspid="235" ordinal="3" offset="14" sl="363" sc="0" el="363" ec="0" />
877
                <SequencePoint vc="0" uspid="236" ordinal="4" offset="28" sl="365" sc="0" el="365" ec="0" />
878
                <SequencePoint vc="0" uspid="237" ordinal="5" offset="33" sl="382" sc="0" el="382" ec="0" />
879
                <SequencePoint vc="0" uspid="238" ordinal="6" offset="36" sl="373" sc="0" el="373" ec="0" />
880
                <SequencePoint vc="0" uspid="239" ordinal="7" offset="42" sl="374" sc="0" el="374" ec="0" />
881
                <SequencePoint vc="0" uspid="240" ordinal="8" offset="43" sl="378" sc="0" el="378" ec="0" />
882
                <SequencePoint vc="0" uspid="241" ordinal="9" offset="49" sl="381" sc="0" el="381" ec="0" />
883
                <SequencePoint vc="0" uspid="242" ordinal="10" offset="51" sl="382" sc="0" el="382" ec="0" />
884
              </SequencePoints>
885
              <BranchPoints>
886
                <BranchPoint vc="0" uspid="243" ordinal="0" offset="12" path="0" />
887
                <BranchPoint vc="0" uspid="244" ordinal="1" offset="12" path="1" />
888
              </BranchPoints>
889
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="232" ordinal="0" offset="0" sl="356" sc="0" el="356" ec="0" />
890
            </Method>
891
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
892
              <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
893
              <MetadataToken>100663341</MetadataToken>
894
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DoCallBackInDefaultDomain(method System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) *(System.Void*),System.Void*)</Name>
895
              <FileRef uid="9" />
896
              <SequencePoints>
897
                <SequencePoint vc="0" uspid="245" ordinal="0" offset="0" sl="397" sc="0" el="397" ec="0" />
898
                <SequencePoint vc="0" uspid="246" ordinal="1" offset="39" sl="401" sc="0" el="401" ec="0" />
899
                <SequencePoint vc="0" uspid="247" ordinal="2" offset="45" sl="403" sc="0" el="403" ec="0" />
900
                <SequencePoint vc="0" uspid="248" ordinal="3" offset="68" sl="404" sc="0" el="404" ec="0" />
901
                <SequencePoint vc="0" uspid="249" ordinal="4" offset="72" sl="406" sc="0" el="406" ec="0" />
902
                <SequencePoint vc="0" uspid="250" ordinal="5" offset="78" sl="410" sc="0" el="410" ec="0" />
903
                <SequencePoint vc="0" uspid="251" ordinal="6" offset="80" sl="411" sc="0" el="411" ec="0" />
904
                <SequencePoint vc="0" uspid="252" ordinal="7" offset="92" sl="412" sc="0" el="412" ec="0" />
905
                <SequencePoint vc="0" uspid="253" ordinal="8" offset="93" sl="413" sc="0" el="413" ec="0" />
906
              </SequencePoints>
907
              <BranchPoints>
908
                <BranchPoint vc="0" uspid="254" ordinal="0" offset="70" path="0" />
909
                <BranchPoint vc="0" uspid="255" ordinal="1" offset="70" path="1" />
910
              </BranchPoints>
911
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="245" ordinal="0" offset="0" sl="397" sc="0" el="397" ec="0" />
912
            </Method>
913
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
914
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
915
              <MetadataToken>100663342</MetadataToken>
916
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.DoNothing(System.Void*)</Name>
917
              <FileRef uid="10" />
918
              <SequencePoints>
919
                <SequencePoint vc="0" uspid="256" ordinal="0" offset="0" sl="187" sc="0" el="187" ec="0" />
920
                <SequencePoint vc="0" uspid="257" ordinal="1" offset="15" sl="188" sc="0" el="188" ec="0" />
921
              </SequencePoints>
922
              <BranchPoints />
923
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="256" ordinal="0" offset="0" sl="187" sc="0" el="187" ec="0" />
924
            </Method>
925
            <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
926
              <Summary numSequencePoints="12" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
927
              <MetadataToken>100663343</MetadataToken>
928
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.HasPerProcess()</Name>
929
              <FileRef uid="10" />
930
              <SequencePoints>
931
                <SequencePoint vc="0" uspid="258" ordinal="0" offset="0" sl="200" sc="0" el="200" ec="0" />
932
                <SequencePoint vc="0" uspid="259" ordinal="1" offset="8" sl="202" sc="0" el="202" ec="0" />
933
                <SequencePoint vc="0" uspid="260" ordinal="2" offset="14" sl="204" sc="0" el="204" ec="0" />
934
                <SequencePoint vc="0" uspid="261" ordinal="3" offset="26" sl="206" sc="0" el="206" ec="0" />
935
                <SequencePoint vc="0" uspid="262" ordinal="4" offset="30" sl="211" sc="0" el="211" ec="0" />
936
                <SequencePoint vc="0" uspid="263" ordinal="5" offset="34" sl="204" sc="0" el="204" ec="0" />
937
                <SequencePoint vc="0" uspid="264" ordinal="6" offset="42" sl="206" sc="0" el="206" ec="0" />
938
                <SequencePoint vc="0" uspid="265" ordinal="7" offset="44" sl="208" sc="0" el="208" ec="0" />
939
                <SequencePoint vc="0" uspid="266" ordinal="8" offset="50" sl="209" sc="0" el="209" ec="0" />
940
                <SequencePoint vc="0" uspid="267" ordinal="9" offset="52" sl="214" sc="0" el="214" ec="0" />
941
                <SequencePoint vc="0" uspid="268" ordinal="10" offset="58" sl="215" sc="0" el="215" ec="0" />
942
                <SequencePoint vc="0" uspid="269" ordinal="11" offset="60" sl="217" sc="0" el="217" ec="0" />
943
              </SequencePoints>
944
              <BranchPoints>
945
                <BranchPoint vc="0" uspid="270" ordinal="0" offset="6" path="0" />
946
                <BranchPoint vc="0" uspid="271" ordinal="1" offset="6" path="1" />
947
                <BranchPoint vc="0" uspid="272" ordinal="2" offset="24" path="0" />
948
                <BranchPoint vc="0" uspid="273" ordinal="3" offset="24" path="1" />
949
                <BranchPoint vc="0" uspid="274" ordinal="4" offset="28" path="0" />
950
                <BranchPoint vc="0" uspid="275" ordinal="5" offset="28" path="1" />
951
                <BranchPoint vc="0" uspid="276" ordinal="6" offset="40" path="0" />
952
                <BranchPoint vc="0" uspid="277" ordinal="7" offset="40" path="1" />
953
              </BranchPoints>
954
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="258" ordinal="0" offset="0" sl="200" sc="0" el="200" ec="0" />
955
            </Method>
956
            <Method visited="false" cyclomaticComplexity="8" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
957
              <Summary numSequencePoints="20" visitedSequencePoints="0" numBranchPoints="15" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="8" minCyclomaticComplexity="8" />
958
              <MetadataToken>100663344</MetadataToken>
959
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.HasNative()</Name>
960
              <FileRef uid="10" />
961
              <SequencePoints>
962
                <SequencePoint vc="0" uspid="278" ordinal="0" offset="0" sl="223" sc="0" el="223" ec="0" />
963
                <SequencePoint vc="0" uspid="279" ordinal="1" offset="8" sl="225" sc="0" el="225" ec="0" />
964
                <SequencePoint vc="0" uspid="280" ordinal="2" offset="14" sl="228" sc="0" el="228" ec="0" />
965
                <SequencePoint vc="0" uspid="281" ordinal="3" offset="26" sl="230" sc="0" el="230" ec="0" />
966
                <SequencePoint vc="0" uspid="282" ordinal="4" offset="30" sl="235" sc="0" el="235" ec="0" />
967
                <SequencePoint vc="0" uspid="283" ordinal="5" offset="34" sl="228" sc="0" el="228" ec="0" />
968
                <SequencePoint vc="0" uspid="284" ordinal="6" offset="42" sl="242" sc="0" el="242" ec="0" />
969
                <SequencePoint vc="0" uspid="285" ordinal="7" offset="44" sl="232" sc="0" el="232" ec="0" />
970
                <SequencePoint vc="0" uspid="286" ordinal="8" offset="50" sl="233" sc="0" el="233" ec="0" />
971
                <SequencePoint vc="0" uspid="287" ordinal="9" offset="52" sl="238" sc="0" el="238" ec="0" />
972
                <SequencePoint vc="0" uspid="288" ordinal="10" offset="58" sl="240" sc="0" el="240" ec="0" />
973
                <SequencePoint vc="0" uspid="289" ordinal="11" offset="70" sl="242" sc="0" el="242" ec="0" />
974
                <SequencePoint vc="0" uspid="290" ordinal="12" offset="74" sl="247" sc="0" el="247" ec="0" />
975
                <SequencePoint vc="0" uspid="291" ordinal="13" offset="78" sl="240" sc="0" el="240" ec="0" />
976
                <SequencePoint vc="0" uspid="292" ordinal="14" offset="86" sl="242" sc="0" el="242" ec="0" />
977
                <SequencePoint vc="0" uspid="293" ordinal="15" offset="88" sl="244" sc="0" el="244" ec="0" />
978
                <SequencePoint vc="0" uspid="294" ordinal="16" offset="94" sl="245" sc="0" el="245" ec="0" />
979
                <SequencePoint vc="0" uspid="295" ordinal="17" offset="96" sl="250" sc="0" el="250" ec="0" />
980
                <SequencePoint vc="0" uspid="296" ordinal="18" offset="102" sl="251" sc="0" el="251" ec="0" />
981
                <SequencePoint vc="0" uspid="297" ordinal="19" offset="104" sl="253" sc="0" el="253" ec="0" />
982
              </SequencePoints>
983
              <BranchPoints>
984
                <BranchPoint vc="0" uspid="298" ordinal="0" offset="6" path="0" />
985
                <BranchPoint vc="0" uspid="299" ordinal="1" offset="6" path="1" />
986
                <BranchPoint vc="0" uspid="300" ordinal="2" offset="24" path="0" />
987
                <BranchPoint vc="0" uspid="301" ordinal="3" offset="24" path="1" />
988
                <BranchPoint vc="0" uspid="302" ordinal="4" offset="28" path="0" />
989
                <BranchPoint vc="0" uspid="303" ordinal="5" offset="28" path="1" />
990
                <BranchPoint vc="0" uspid="304" ordinal="6" offset="40" path="0" />
991
                <BranchPoint vc="0" uspid="305" ordinal="7" offset="40" path="1" />
992
                <BranchPoint vc="0" uspid="306" ordinal="8" offset="68" path="0" />
993
                <BranchPoint vc="0" uspid="307" ordinal="9" offset="68" path="1" />
994
                <BranchPoint vc="0" uspid="308" ordinal="10" offset="72" path="0" />
995
                <BranchPoint vc="0" uspid="309" ordinal="11" offset="72" path="1" />
996
                <BranchPoint vc="0" uspid="310" ordinal="12" offset="84" path="0" />
997
                <BranchPoint vc="0" uspid="311" ordinal="13" offset="84" path="1" />
998
              </BranchPoints>
999
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="278" ordinal="0" offset="0" sl="223" sc="0" el="223" ec="0" />
1000
            </Method>
1001
            <Method visited="false" cyclomaticComplexity="6" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1002
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="11" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="6" />
1003
              <MetadataToken>100663345</MetadataToken>
1004
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.NeedsInitialization()</Name>
1005
              <FileRef uid="10" />
1006
              <SequencePoints>
1007
                <SequencePoint vc="0" uspid="312" ordinal="0" offset="0" sl="259" sc="0" el="259" ec="0" />
1008
              </SequencePoints>
1009
              <BranchPoints>
1010
                <BranchPoint vc="0" uspid="313" ordinal="0" offset="5" path="0" />
1011
                <BranchPoint vc="0" uspid="314" ordinal="1" offset="5" path="1" />
1012
                <BranchPoint vc="0" uspid="315" ordinal="2" offset="12" path="0" />
1013
                <BranchPoint vc="0" uspid="316" ordinal="3" offset="12" path="1" />
1014
                <BranchPoint vc="0" uspid="317" ordinal="4" offset="19" path="0" />
1015
                <BranchPoint vc="0" uspid="318" ordinal="5" offset="19" path="1" />
1016
                <BranchPoint vc="0" uspid="319" ordinal="6" offset="26" path="0" />
1017
                <BranchPoint vc="0" uspid="320" ordinal="7" offset="26" path="1" />
1018
                <BranchPoint vc="0" uspid="321" ordinal="8" offset="35" path="0" />
1019
                <BranchPoint vc="0" uspid="322" ordinal="9" offset="35" path="1" />
1020
              </BranchPoints>
1021
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="312" ordinal="0" offset="0" sl="259" sc="0" el="259" ec="0" />
1022
            </Method>
1023
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1024
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1025
              <MetadataToken>100663346</MetadataToken>
1026
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.NeedsUninitialization()</Name>
1027
              <FileRef uid="10" />
1028
              <SequencePoints>
1029
                <SequencePoint vc="1" uspid="323" ordinal="0" offset="0" sl="266" sc="0" el="266" ec="0" />
1030
              </SequencePoints>
1031
              <BranchPoints />
1032
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="323" ordinal="0" offset="0" sl="266" sc="0" el="266" ec="0" />
1033
            </Method>
1034
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1035
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1036
              <MetadataToken>100663347</MetadataToken>
1037
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.DefaultDomain.Initialize()</Name>
1038
              <FileRef uid="10" />
1039
              <SequencePoints>
1040
                <SequencePoint vc="0" uspid="324" ordinal="0" offset="0" sl="273" sc="0" el="273" ec="0" />
1041
                <SequencePoint vc="0" uspid="325" ordinal="1" offset="11" sl="274" sc="0" el="274" ec="0" />
1042
              </SequencePoints>
1043
              <BranchPoints />
1044
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="324" ordinal="0" offset="0" sl="273" sc="0" el="273" ec="0" />
1045
            </Method>
1046
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1047
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1048
              <MetadataToken>100663348</MetadataToken>
1049
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?Initialized@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2HA@@YMXXZ()</Name>
1050
              <FileRef uid="10" />
1051
              <SequencePoints>
1052
                <SequencePoint vc="1" uspid="326" ordinal="0" offset="0" sl="305" sc="0" el="305" ec="0" />
1053
              </SequencePoints>
1054
              <BranchPoints />
1055
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="326" ordinal="0" offset="0" sl="305" sc="0" el="305" ec="0" />
1056
            </Method>
1057
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1058
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1059
              <MetadataToken>100663349</MetadataToken>
1060
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?Uninitialized@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2HA@@YMXXZ()</Name>
1061
              <FileRef uid="10" />
1062
              <SequencePoints>
1063
                <SequencePoint vc="1" uspid="327" ordinal="0" offset="0" sl="306" sc="0" el="306" ec="0" />
1064
              </SequencePoints>
1065
              <BranchPoints />
1066
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="327" ordinal="0" offset="0" sl="306" sc="0" el="306" ec="0" />
1067
            </Method>
1068
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1069
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1070
              <MetadataToken>100663350</MetadataToken>
1071
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?IsDefaultDomain@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2_NA@@YMXXZ()</Name>
1072
              <FileRef uid="10" />
1073
              <SequencePoints>
1074
                <SequencePoint vc="1" uspid="328" ordinal="0" offset="0" sl="307" sc="0" el="307" ec="0" />
1075
              </SequencePoints>
1076
              <BranchPoints />
1077
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="328" ordinal="0" offset="0" sl="307" sc="0" el="307" ec="0" />
1078
            </Method>
1079
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1080
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1081
              <MetadataToken>100663351</MetadataToken>
1082
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?InitializedVtables@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
1083
              <FileRef uid="10" />
1084
              <SequencePoints>
1085
                <SequencePoint vc="1" uspid="329" ordinal="0" offset="0" sl="308" sc="0" el="308" ec="0" />
1086
              </SequencePoints>
1087
              <BranchPoints />
1088
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="329" ordinal="0" offset="0" sl="308" sc="0" el="308" ec="0" />
1089
            </Method>
1090
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1091
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1092
              <MetadataToken>100663352</MetadataToken>
1093
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?InitializedNative@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
1094
              <FileRef uid="10" />
1095
              <SequencePoints>
1096
                <SequencePoint vc="1" uspid="330" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
1097
              </SequencePoints>
1098
              <BranchPoints />
1099
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="330" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
1100
            </Method>
1101
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1102
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1103
              <MetadataToken>100663353</MetadataToken>
1104
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?InitializedPerProcess@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
1105
              <FileRef uid="10" />
1106
              <SequencePoints>
1107
                <SequencePoint vc="1" uspid="331" ordinal="0" offset="0" sl="310" sc="0" el="310" ec="0" />
1108
              </SequencePoints>
1109
              <BranchPoints />
1110
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="331" ordinal="0" offset="0" sl="310" sc="0" el="310" ec="0" />
1111
            </Method>
1112
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1113
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1114
              <MetadataToken>100663354</MetadataToken>
1115
              <Name>System.Void &lt;Module&gt;::?A0xf26aa9b7.??__E?InitializedPerAppDomain@CurrentDomain@&lt;CrtImplementationDetails&gt;@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
1116
              <FileRef uid="10" />
1117
              <SequencePoints>
1118
                <SequencePoint vc="1" uspid="332" ordinal="0" offset="0" sl="311" sc="0" el="311" ec="0" />
1119
              </SequencePoints>
1120
              <BranchPoints />
1121
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="332" ordinal="0" offset="0" sl="311" sc="0" el="311" ec="0" />
1122
            </Method>
1123
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1124
              <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1125
              <MetadataToken>100663355</MetadataToken>
1126
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializeVtables(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1127
              <FileRef uid="10" />
1128
              <SequencePoints>
1129
                <SequencePoint vc="1" uspid="333" ordinal="0" offset="0" sl="325" sc="0" el="325" ec="0" />
1130
                <SequencePoint vc="1" uspid="334" ordinal="1" offset="12" sl="326" sc="0" el="326" ec="0" />
1131
                <SequencePoint vc="1" uspid="335" ordinal="2" offset="18" sl="327" sc="0" el="327" ec="0" />
1132
                <SequencePoint vc="1" uspid="336" ordinal="3" offset="33" sl="328" sc="0" el="328" ec="0" />
1133
                <SequencePoint vc="1" uspid="337" ordinal="4" offset="39" sl="329" sc="0" el="329" ec="0" />
1134
              </SequencePoints>
1135
              <BranchPoints />
1136
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="333" ordinal="0" offset="0" sl="325" sc="0" el="325" ec="0" />
1137
            </Method>
1138
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1139
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1140
              <MetadataToken>100663356</MetadataToken>
1141
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializeDefaultAppDomain(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1142
              <FileRef uid="10" />
1143
              <SequencePoints>
1144
                <SequencePoint vc="0" uspid="338" ordinal="0" offset="0" sl="337" sc="0" el="337" ec="0" />
1145
                <SequencePoint vc="0" uspid="339" ordinal="1" offset="12" sl="338" sc="0" el="338" ec="0" />
1146
                <SequencePoint vc="0" uspid="340" ordinal="2" offset="17" sl="339" sc="0" el="339" ec="0" />
1147
              </SequencePoints>
1148
              <BranchPoints />
1149
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="338" ordinal="0" offset="0" sl="337" sc="0" el="337" ec="0" />
1150
            </Method>
1151
            <Method visited="true" cyclomaticComplexity="5" sequenceCoverage="41.18" branchCoverage="44.44" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1152
              <Summary numSequencePoints="17" visitedSequencePoints="7" numBranchPoints="9" visitedBranchPoints="4" sequenceCoverage="41.18" branchCoverage="44.44" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
1153
              <MetadataToken>100663357</MetadataToken>
1154
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializeNative(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1155
              <FileRef uid="10" />
1156
              <SequencePoints>
1157
                <SequencePoint vc="1" uspid="341" ordinal="0" offset="0" sl="348" sc="0" el="348" ec="0" />
1158
                <SequencePoint vc="1" uspid="342" ordinal="1" offset="12" sl="350" sc="0" el="350" ec="0" />
1159
                <SequencePoint vc="1" uspid="343" ordinal="2" offset="17" sl="352" sc="0" el="352" ec="0" />
1160
                <SequencePoint vc="1" uspid="344" ordinal="3" offset="23" sl="355" sc="0" el="355" ec="0" />
1161
                <SequencePoint vc="0" uspid="345" ordinal="4" offset="30" sl="357" sc="0" el="357" ec="0" />
1162
                <SequencePoint vc="1" uspid="346" ordinal="5" offset="37" sl="363" sc="0" el="363" ec="0" />
1163
                <SequencePoint vc="0" uspid="347" ordinal="6" offset="47" sl="365" sc="0" el="365" ec="0" />
1164
                <SequencePoint vc="1" uspid="348" ordinal="7" offset="56" sl="367" sc="0" el="367" ec="0" />
1165
                <SequencePoint vc="0" uspid="349" ordinal="8" offset="65" sl="369" sc="0" el="369" ec="0" />
1166
                <SequencePoint vc="0" uspid="350" ordinal="9" offset="71" sl="370" sc="0" el="370" ec="0" />
1167
                <SequencePoint vc="0" uspid="351" ordinal="10" offset="79" sl="371" sc="0" el="371" ec="0" />
1168
                <SequencePoint vc="0" uspid="352" ordinal="11" offset="96" sl="373" sc="0" el="373" ec="0" />
1169
                <SequencePoint vc="0" uspid="353" ordinal="12" offset="107" sl="375" sc="0" el="375" ec="0" />
1170
                <SequencePoint vc="0" uspid="354" ordinal="13" offset="122" sl="376" sc="0" el="376" ec="0" />
1171
                <SequencePoint vc="0" uspid="355" ordinal="14" offset="130" sl="377" sc="0" el="377" ec="0" />
1172
                <SequencePoint vc="0" uspid="356" ordinal="15" offset="136" sl="378" sc="0" el="378" ec="0" />
1173
                <SequencePoint vc="1" uspid="357" ordinal="16" offset="142" sl="380" sc="0" el="380" ec="0" />
1174
              </SequencePoints>
1175
              <BranchPoints>
1176
                <BranchPoint vc="0" uspid="358" ordinal="0" offset="28" path="0" />
1177
                <BranchPoint vc="1" uspid="359" ordinal="1" offset="28" path="1" />
1178
                <BranchPoint vc="0" uspid="360" ordinal="2" offset="45" path="0" />
1179
                <BranchPoint vc="1" uspid="361" ordinal="3" offset="45" path="1" />
1180
                <BranchPoint vc="0" uspid="362" ordinal="4" offset="63" path="0" />
1181
                <BranchPoint vc="1" uspid="363" ordinal="5" offset="63" path="1" />
1182
                <BranchPoint vc="0" uspid="364" ordinal="6" offset="94" path="0" />
1183
                <BranchPoint vc="0" uspid="365" ordinal="7" offset="94" path="1" />
1184
              </BranchPoints>
1185
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="341" ordinal="0" offset="0" sl="348" sc="0" el="348" ec="0" />
1186
            </Method>
1187
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1188
              <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1189
              <MetadataToken>100663358</MetadataToken>
1190
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializePerProcess(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1191
              <FileRef uid="10" />
1192
              <SequencePoints>
1193
                <SequencePoint vc="1" uspid="366" ordinal="0" offset="0" sl="389" sc="0" el="389" ec="0" />
1194
                <SequencePoint vc="1" uspid="367" ordinal="1" offset="12" sl="391" sc="0" el="391" ec="0" />
1195
                <SequencePoint vc="1" uspid="368" ordinal="2" offset="18" sl="393" sc="0" el="393" ec="0" />
1196
                <SequencePoint vc="1" uspid="369" ordinal="3" offset="24" sl="395" sc="0" el="395" ec="0" />
1197
                <SequencePoint vc="1" uspid="370" ordinal="4" offset="39" sl="397" sc="0" el="397" ec="0" />
1198
                <SequencePoint vc="1" uspid="371" ordinal="5" offset="45" sl="399" sc="0" el="399" ec="0" />
1199
                <SequencePoint vc="1" uspid="372" ordinal="6" offset="51" sl="400" sc="0" el="400" ec="0" />
1200
              </SequencePoints>
1201
              <BranchPoints />
1202
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="366" ordinal="0" offset="0" sl="389" sc="0" el="389" ec="0" />
1203
            </Method>
1204
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1205
              <Summary numSequencePoints="6" visitedSequencePoints="6" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1206
              <MetadataToken>100663359</MetadataToken>
1207
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializePerAppDomain(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1208
              <FileRef uid="10" />
1209
              <SequencePoints>
1210
                <SequencePoint vc="1" uspid="373" ordinal="0" offset="0" sl="409" sc="0" el="409" ec="0" />
1211
                <SequencePoint vc="1" uspid="374" ordinal="1" offset="12" sl="411" sc="0" el="411" ec="0" />
1212
                <SequencePoint vc="1" uspid="375" ordinal="2" offset="18" sl="413" sc="0" el="413" ec="0" />
1213
                <SequencePoint vc="1" uspid="376" ordinal="3" offset="24" sl="415" sc="0" el="415" ec="0" />
1214
                <SequencePoint vc="1" uspid="377" ordinal="4" offset="39" sl="417" sc="0" el="417" ec="0" />
1215
                <SequencePoint vc="1" uspid="378" ordinal="5" offset="45" sl="418" sc="0" el="418" ec="0" />
1216
              </SequencePoints>
1217
              <BranchPoints />
1218
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="373" ordinal="0" offset="0" sl="409" sc="0" el="409" ec="0" />
1219
            </Method>
1220
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1221
              <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1222
              <MetadataToken>100663360</MetadataToken>
1223
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.InitializeUninitializer(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1224
              <FileRef uid="10" />
1225
              <SequencePoints>
1226
                <SequencePoint vc="1" uspid="379" ordinal="0" offset="0" sl="425" sc="0" el="425" ec="0" />
1227
                <SequencePoint vc="1" uspid="380" ordinal="1" offset="12" sl="426" sc="0" el="426" ec="0" />
1228
                <SequencePoint vc="1" uspid="381" ordinal="2" offset="24" sl="427" sc="0" el="427" ec="0" />
1229
                <SequencePoint vc="1" uspid="382" ordinal="3" offset="29" sl="428" sc="0" el="428" ec="0" />
1230
              </SequencePoints>
1231
              <BranchPoints />
1232
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="379" ordinal="0" offset="0" sl="425" sc="0" el="425" ec="0" />
1233
            </Method>
1234
            <Method visited="true" cyclomaticComplexity="10" sequenceCoverage="80.56" branchCoverage="47.37" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1235
              <Summary numSequencePoints="36" visitedSequencePoints="29" numBranchPoints="19" visitedBranchPoints="9" sequenceCoverage="80.56" branchCoverage="47.37" maxCyclomaticComplexity="10" minCyclomaticComplexity="10" />
1236
              <MetadataToken>100663361</MetadataToken>
1237
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport._Initialize(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1238
              <FileRef uid="10" />
1239
              <SequencePoints>
1240
                <SequencePoint vc="1" uspid="383" ordinal="0" offset="0" sl="438" sc="0" el="438" ec="0" />
1241
                <SequencePoint vc="1" uspid="384" ordinal="1" offset="15" sl="440" sc="0" el="440" ec="0" />
1242
                <SequencePoint vc="1" uspid="385" ordinal="2" offset="22" sl="442" sc="0" el="442" ec="0" />
1243
                <SequencePoint vc="1" uspid="386" ordinal="3" offset="28" sl="448" sc="0" el="448" ec="0" />
1244
                <SequencePoint vc="1" uspid="387" ordinal="4" offset="35" sl="449" sc="0" el="449" ec="0" />
1245
                <SequencePoint vc="1" uspid="388" ordinal="5" offset="38" sl="450" sc="0" el="450" ec="0" />
1246
                <SequencePoint vc="1" uspid="389" ordinal="6" offset="40" sl="451" sc="0" el="451" ec="0" />
1247
                <SequencePoint vc="1" uspid="390" ordinal="7" offset="43" sl="452" sc="0" el="452" ec="0" />
1248
                <SequencePoint vc="2" uspid="391" ordinal="8" offset="48" sl="457" sc="0" el="457" ec="0" />
1249
                <SequencePoint vc="1" uspid="392" ordinal="9" offset="51" sl="460" sc="0" el="460" ec="0" />
1250
                <SequencePoint vc="1" uspid="393" ordinal="10" offset="53" sl="465" sc="0" el="465" ec="0" />
1251
                <SequencePoint vc="1" uspid="394" ordinal="11" offset="100" sl="467" sc="0" el="467" ec="0" />
1252
                <SequencePoint vc="1" uspid="395" ordinal="12" offset="103" sl="469" sc="0" el="469" ec="0" />
1253
                <SequencePoint vc="0" uspid="396" ordinal="13" offset="107" sl="471" sc="0" el="471" ec="0" />
1254
                <SequencePoint vc="0" uspid="397" ordinal="14" offset="112" sl="473" sc="0" el="473" ec="0" />
1255
                <SequencePoint vc="0" uspid="398" ordinal="15" offset="115" sl="474" sc="0" el="474" ec="0" />
1256
                <SequencePoint vc="1" uspid="399" ordinal="16" offset="117" sl="476" sc="0" el="476" ec="0" />
1257
                <SequencePoint vc="1" uspid="400" ordinal="17" offset="118" sl="477" sc="0" el="477" ec="0" />
1258
                <SequencePoint vc="0" uspid="401" ordinal="18" offset="121" sl="482" sc="0" el="482" ec="0" />
1259
                <SequencePoint vc="1" uspid="402" ordinal="19" offset="131" sl="484" sc="0" el="484" ec="0" />
1260
                <SequencePoint vc="1" uspid="403" ordinal="20" offset="133" sl="486" sc="0" el="486" ec="0" />
1261
                <SequencePoint vc="1" uspid="404" ordinal="21" offset="139" sl="488" sc="0" el="488" ec="0" />
1262
                <SequencePoint vc="1" uspid="405" ordinal="22" offset="146" sl="490" sc="0" el="490" ec="0" />
1263
                <SequencePoint vc="1" uspid="406" ordinal="23" offset="152" sl="491" sc="0" el="491" ec="0" />
1264
                <SequencePoint vc="0" uspid="407" ordinal="24" offset="160" sl="493" sc="0" el="493" ec="0" />
1265
                <SequencePoint vc="0" uspid="408" ordinal="25" offset="167" sl="509" sc="0" el="509" ec="0" />
1266
                <SequencePoint vc="1" uspid="409" ordinal="26" offset="170" sl="512" sc="0" el="512" ec="0" />
1267
                <SequencePoint vc="1" uspid="410" ordinal="27" offset="172" sl="514" sc="0" el="514" ec="0" />
1268
                <SequencePoint vc="1" uspid="411" ordinal="28" offset="176" sl="519" sc="0" el="519" ec="0" />
1269
                <SequencePoint vc="1" uspid="412" ordinal="29" offset="197" sl="522" sc="0" el="522" ec="0" />
1270
                <SequencePoint vc="1" uspid="413" ordinal="30" offset="198" sl="532" sc="0" el="532" ec="0" />
1271
                <SequencePoint vc="0" uspid="414" ordinal="31" offset="202" sl="534" sc="0" el="534" ec="0" />
1272
                <SequencePoint vc="1" uspid="415" ordinal="32" offset="208" sl="541" sc="0" el="541" ec="0" />
1273
                <SequencePoint vc="1" uspid="416" ordinal="33" offset="214" sl="543" sc="0" el="543" ec="0" />
1274
                <SequencePoint vc="1" uspid="417" ordinal="34" offset="220" sl="545" sc="0" el="545" ec="0" />
1275
                <SequencePoint vc="1" uspid="418" ordinal="35" offset="226" sl="546" sc="0" el="546" ec="0" />
1276
              </SequencePoints>
1277
              <BranchPoints>
1278
                <BranchPoint vc="1" uspid="419" ordinal="0" offset="20" path="0" />
1279
                <BranchPoint vc="0" uspid="420" ordinal="1" offset="20" path="1" />
1280
                <BranchPoint vc="1" uspid="421" ordinal="2" offset="49" path="0" />
1281
                <BranchPoint vc="1" uspid="422" ordinal="3" offset="49" path="1" />
1282
                <BranchPoint vc="1" uspid="423" ordinal="4" offset="101" path="0" />
1283
                <BranchPoint vc="0" uspid="424" ordinal="5" offset="101" path="1" />
1284
                <BranchPoint vc="0" uspid="425" ordinal="6" offset="110" path="0" />
1285
                <BranchPoint vc="0" uspid="426" ordinal="7" offset="110" path="1" />
1286
                <BranchPoint vc="0" uspid="427" ordinal="8" offset="119" path="0" />
1287
                <BranchPoint vc="1" uspid="428" ordinal="9" offset="119" path="1" />
1288
                <BranchPoint vc="1" uspid="429" ordinal="10" offset="144" path="0" />
1289
                <BranchPoint vc="0" uspid="430" ordinal="11" offset="144" path="1" />
1290
                <BranchPoint vc="0" uspid="431" ordinal="12" offset="165" path="0" />
1291
                <BranchPoint vc="0" uspid="432" ordinal="13" offset="165" path="1" />
1292
                <BranchPoint vc="1" uspid="433" ordinal="14" offset="174" path="0" />
1293
                <BranchPoint vc="0" uspid="434" ordinal="15" offset="174" path="1" />
1294
                <BranchPoint vc="0" uspid="435" ordinal="16" offset="200" path="0" />
1295
                <BranchPoint vc="1" uspid="436" ordinal="17" offset="200" path="1" />
1296
              </BranchPoints>
1297
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="383" ordinal="0" offset="0" sl="438" sc="0" el="438" ec="0" />
1298
            </Method>
1299
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1300
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1301
              <MetadataToken>100663362</MetadataToken>
1302
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.UninitializeAppDomain()</Name>
1303
              <FileRef uid="10" />
1304
              <SequencePoints>
1305
                <SequencePoint vc="1" uspid="437" ordinal="0" offset="0" sl="552" sc="0" el="552" ec="0" />
1306
                <SequencePoint vc="1" uspid="438" ordinal="1" offset="5" sl="553" sc="0" el="553" ec="0" />
1307
              </SequencePoints>
1308
              <BranchPoints />
1309
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="437" ordinal="0" offset="0" sl="552" sc="0" el="552" ec="0" />
1310
            </Method>
1311
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="62.5" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1312
              <Summary numSequencePoints="8" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="62.5" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1313
              <MetadataToken>100663363</MetadataToken>
1314
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport._UninitializeDefaultDomain(System.Void*)</Name>
1315
              <FileRef uid="10" />
1316
              <SequencePoints>
1317
                <SequencePoint vc="1" uspid="439" ordinal="0" offset="0" sl="564" sc="0" el="564" ec="0" />
1318
                <SequencePoint vc="1" uspid="440" ordinal="1" offset="5" sl="566" sc="0" el="566" ec="0" />
1319
                <SequencePoint vc="1" uspid="441" ordinal="2" offset="11" sl="568" sc="0" el="568" ec="0" />
1320
                <SequencePoint vc="0" uspid="442" ordinal="3" offset="18" sl="571" sc="0" el="571" ec="0" />
1321
                <SequencePoint vc="0" uspid="443" ordinal="4" offset="23" sl="572" sc="0" el="572" ec="0" />
1322
                <SequencePoint vc="0" uspid="444" ordinal="5" offset="31" sl="574" sc="0" el="574" ec="0" />
1323
                <SequencePoint vc="1" uspid="445" ordinal="6" offset="37" sl="577" sc="0" el="577" ec="0" />
1324
                <SequencePoint vc="1" uspid="446" ordinal="7" offset="43" sl="579" sc="0" el="579" ec="0" />
1325
              </SequencePoints>
1326
              <BranchPoints>
1327
                <BranchPoint vc="0" uspid="447" ordinal="0" offset="16" path="0" />
1328
                <BranchPoint vc="1" uspid="448" ordinal="1" offset="16" path="1" />
1329
              </BranchPoints>
1330
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="439" ordinal="0" offset="0" sl="564" sc="0" el="564" ec="0" />
1331
            </Method>
1332
            <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="83.33" branchCoverage="60" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1333
              <Summary numSequencePoints="6" visitedSequencePoints="5" numBranchPoints="5" visitedBranchPoints="3" sequenceCoverage="83.33" branchCoverage="60" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
1334
              <MetadataToken>100663364</MetadataToken>
1335
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.UninitializeDefaultDomain()</Name>
1336
              <FileRef uid="10" />
1337
              <SequencePoints>
1338
                <SequencePoint vc="1" uspid="449" ordinal="0" offset="0" sl="585" sc="0" el="585" ec="0" />
1339
                <SequencePoint vc="1" uspid="450" ordinal="1" offset="7" sl="587" sc="0" el="587" ec="0" />
1340
                <SequencePoint vc="1" uspid="451" ordinal="2" offset="19" sl="589" sc="0" el="589" ec="0" />
1341
                <SequencePoint vc="1" uspid="452" ordinal="3" offset="26" sl="591" sc="0" el="591" ec="0" />
1342
                <SequencePoint vc="0" uspid="453" ordinal="4" offset="28" sl="593" sc="0" el="593" ec="0" />
1343
                <SequencePoint vc="1" uspid="454" ordinal="5" offset="39" sl="596" sc="0" el="596" ec="0" />
1344
              </SequencePoints>
1345
              <BranchPoints>
1346
                <BranchPoint vc="1" uspid="455" ordinal="0" offset="5" path="0" />
1347
                <BranchPoint vc="0" uspid="456" ordinal="1" offset="5" path="1" />
1348
                <BranchPoint vc="1" uspid="457" ordinal="2" offset="17" path="0" />
1349
                <BranchPoint vc="0" uspid="458" ordinal="3" offset="17" path="1" />
1350
              </BranchPoints>
1351
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="449" ordinal="0" offset="0" sl="585" sc="0" el="585" ec="0" />
1352
            </Method>
1353
            <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="57.14" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1354
              <Summary numSequencePoints="6" visitedSequencePoints="6" numBranchPoints="7" visitedBranchPoints="4" sequenceCoverage="100" branchCoverage="57.14" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
1355
              <MetadataToken>100663365</MetadataToken>
1356
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.DomainUnload(System.Object,System.EventArgs)</Name>
1357
              <FileRef uid="10" />
1358
              <SequencePoints>
1359
                <SequencePoint vc="1" uspid="459" ordinal="0" offset="0" sl="608" sc="0" el="608" ec="0" />
1360
                <SequencePoint vc="1" uspid="460" ordinal="1" offset="20" sl="611" sc="0" el="611" ec="0" />
1361
                <SequencePoint vc="1" uspid="461" ordinal="2" offset="33" sl="614" sc="0" el="614" ec="0" />
1362
                <SequencePoint vc="1" uspid="462" ordinal="3" offset="38" sl="617" sc="0" el="617" ec="0" />
1363
                <SequencePoint vc="1" uspid="463" ordinal="4" offset="41" sl="619" sc="0" el="619" ec="0" />
1364
                <SequencePoint vc="1" uspid="464" ordinal="5" offset="46" sl="623" sc="0" el="623" ec="0" />
1365
              </SequencePoints>
1366
              <BranchPoints>
1367
                <BranchPoint vc="1" uspid="465" ordinal="0" offset="5" path="0" />
1368
                <BranchPoint vc="0" uspid="466" ordinal="1" offset="5" path="1" />
1369
                <BranchPoint vc="1" uspid="467" ordinal="2" offset="18" path="0" />
1370
                <BranchPoint vc="0" uspid="468" ordinal="3" offset="18" path="1" />
1371
                <BranchPoint vc="1" uspid="469" ordinal="4" offset="39" path="0" />
1372
                <BranchPoint vc="0" uspid="470" ordinal="5" offset="39" path="1" />
1373
              </BranchPoints>
1374
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="459" ordinal="0" offset="0" sl="608" sc="0" el="608" ec="0" />
1375
            </Method>
1376
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1377
              <Summary numSequencePoints="10" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1378
              <MetadataToken>100663366</MetadataToken>
1379
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.Cleanup(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Exception)</Name>
1380
              <FileRef uid="10" />
1381
              <SequencePoints>
1382
                <SequencePoint vc="0" uspid="471" ordinal="0" offset="0" sl="638" sc="0" el="638" ec="0" />
1383
                <SequencePoint vc="0" uspid="472" ordinal="1" offset="15" sl="646" sc="0" el="646" ec="0" />
1384
                <SequencePoint vc="0" uspid="473" ordinal="2" offset="20" sl="649" sc="0" el="649" ec="0" />
1385
                <SequencePoint vc="0" uspid="474" ordinal="3" offset="23" sl="651" sc="0" el="651" ec="0" />
1386
                <SequencePoint vc="0" uspid="475" ordinal="4" offset="28" sl="654" sc="0" el="654" ec="0" />
1387
                <SequencePoint vc="0" uspid="476" ordinal="5" offset="30" sl="655" sc="0" el="655" ec="0" />
1388
                <SequencePoint vc="0" uspid="477" ordinal="6" offset="31" sl="657" sc="0" el="657" ec="0" />
1389
                <SequencePoint vc="0" uspid="478" ordinal="7" offset="38" sl="659" sc="0" el="659" ec="0" />
1390
                <SequencePoint vc="0" uspid="479" ordinal="8" offset="41" sl="662" sc="0" el="662" ec="0" />
1391
                <SequencePoint vc="0" uspid="480" ordinal="9" offset="50" sl="664" sc="0" el="664" ec="0" />
1392
              </SequencePoints>
1393
              <BranchPoints>
1394
                <BranchPoint vc="0" uspid="481" ordinal="0" offset="21" path="0" />
1395
                <BranchPoint vc="0" uspid="482" ordinal="1" offset="21" path="1" />
1396
              </BranchPoints>
1397
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="471" ordinal="0" offset="0" sl="638" sc="0" el="638" ec="0" />
1398
            </Method>
1399
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1400
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1401
              <MetadataToken>100663367</MetadataToken>
1402
              <Name>&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.{ctor}(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1403
              <FileRef uid="10" />
1404
              <SequencePoints>
1405
                <SequencePoint vc="1" uspid="483" ordinal="0" offset="0" sl="668" sc="0" el="668" ec="0" />
1406
              </SequencePoints>
1407
              <BranchPoints />
1408
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="483" ordinal="0" offset="0" sl="668" sc="0" el="668" ec="0" />
1409
            </Method>
1410
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1411
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1412
              <MetadataToken>100663368</MetadataToken>
1413
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.{dtor}(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1414
              <FileRef uid="10" />
1415
              <SequencePoints>
1416
                <SequencePoint vc="1" uspid="484" ordinal="0" offset="0" sl="670" sc="0" el="670" ec="0" />
1417
              </SequencePoints>
1418
              <BranchPoints />
1419
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="484" ordinal="0" offset="0" sl="670" sc="0" el="670" ec="0" />
1420
            </Method>
1421
            <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="57.89" branchCoverage="20" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1422
              <Summary numSequencePoints="19" visitedSequencePoints="11" numBranchPoints="5" visitedBranchPoints="1" sequenceCoverage="57.89" branchCoverage="20" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
1423
              <MetadataToken>100663369</MetadataToken>
1424
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.LanguageSupport.Initialize(&lt;CrtImplementationDetails&gt;.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1425
              <FileRef uid="10" />
1426
              <SequencePoints>
1427
                <SequencePoint vc="1" uspid="485" ordinal="0" offset="0" sl="680" sc="0" el="680" ec="0" />
1428
                <SequencePoint vc="1" uspid="486" ordinal="1" offset="2" sl="684" sc="0" el="684" ec="0" />
1429
                <SequencePoint vc="1" uspid="487" ordinal="2" offset="7" sl="688" sc="0" el="688" ec="0" />
1430
                <SequencePoint vc="1" uspid="488" ordinal="3" offset="19" sl="690" sc="0" el="690" ec="0" />
1431
                <SequencePoint vc="1" uspid="489" ordinal="4" offset="24" sl="691" sc="0" el="691" ec="0" />
1432
                <SequencePoint vc="1" uspid="490" ordinal="5" offset="26" sl="693" sc="0" el="693" ec="0" />
1433
                <SequencePoint vc="1" uspid="491" ordinal="6" offset="37" sl="694" sc="0" el="694" ec="0" />
1434
                <SequencePoint vc="1" uspid="492" ordinal="7" offset="39" sl="695" sc="0" el="695" ec="0" />
1435
                <SequencePoint vc="1" uspid="493" ordinal="8" offset="40" sl="697" sc="0" el="697" ec="0" />
1436
                <SequencePoint vc="1" uspid="494" ordinal="9" offset="46" sl="698" sc="0" el="698" ec="0" />
1437
                <SequencePoint vc="0" uspid="495" ordinal="10" offset="48" sl="699" sc="0" el="699" ec="0" />
1438
                <SequencePoint vc="0" uspid="496" ordinal="11" offset="49" sl="702" sc="0" el="702" ec="0" />
1439
                <SequencePoint vc="0" uspid="497" ordinal="12" offset="52" sl="705" sc="0" el="705" ec="0" />
1440
                <SequencePoint vc="0" uspid="498" ordinal="13" offset="59" sl="707" sc="0" el="707" ec="0" />
1441
                <SequencePoint vc="0" uspid="499" ordinal="14" offset="71" sl="709" sc="0" el="709" ec="0" />
1442
                <SequencePoint vc="0" uspid="500" ordinal="15" offset="74" sl="713" sc="0" el="713" ec="0" />
1443
                <SequencePoint vc="0" uspid="501" ordinal="16" offset="77" sl="716" sc="0" el="716" ec="0" />
1444
                <SequencePoint vc="0" uspid="502" ordinal="17" offset="84" sl="718" sc="0" el="718" ec="0" />
1445
                <SequencePoint vc="1" uspid="503" ordinal="18" offset="98" sl="720" sc="0" el="720" ec="0" />
1446
              </SequencePoints>
1447
              <BranchPoints>
1448
                <BranchPoint vc="0" uspid="504" ordinal="0" offset="50" path="0" />
1449
                <BranchPoint vc="0" uspid="505" ordinal="1" offset="50" path="1" />
1450
                <BranchPoint vc="0" uspid="506" ordinal="2" offset="75" path="0" />
1451
                <BranchPoint vc="0" uspid="507" ordinal="3" offset="75" path="1" />
1452
              </BranchPoints>
1453
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="485" ordinal="0" offset="0" sl="680" sc="0" el="680" ec="0" />
1454
            </Method>
1455
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="true" isGetter="false" isSetter="false">
1456
              <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1457
              <MetadataToken>100663370</MetadataToken>
1458
              <Name>System.Void &lt;Module&gt;::.cctor()</Name>
1459
              <FileRef uid="10" />
1460
              <SequencePoints>
1461
                <SequencePoint vc="1" uspid="508" ordinal="0" offset="0" sl="748" sc="0" el="748" ec="0" />
1462
                <SequencePoint vc="1" uspid="509" ordinal="1" offset="8" sl="749" sc="0" el="749" ec="0" />
1463
                <SequencePoint vc="1" uspid="510" ordinal="2" offset="31" sl="750" sc="0" el="750" ec="0" />
1464
              </SequencePoints>
1465
              <BranchPoints />
1466
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="508" ordinal="0" offset="0" sl="748" sc="0" el="748" ec="0" />
1467
            </Method>
1468
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1469
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1470
              <MetadataToken>100663371</MetadataToken>
1471
              <Name>gcroot&lt;System::String ^&gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::gcroot&lt;System::String ^&gt;.{ctor}(gcroot&lt;System::String ^&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1472
              <FileRef uid="11" />
1473
              <SequencePoints>
1474
                <SequencePoint vc="1" uspid="511" ordinal="0" offset="0" sl="66" sc="0" el="66" ec="0" />
1475
                <SequencePoint vc="1" uspid="512" ordinal="1" offset="21" sl="67" sc="0" el="67" ec="0" />
1476
              </SequencePoints>
1477
              <BranchPoints />
1478
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="511" ordinal="0" offset="0" sl="66" sc="0" el="66" ec="0" />
1479
            </Method>
1480
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1481
              <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1482
              <MetadataToken>100663372</MetadataToken>
1483
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::gcroot&lt;System::String ^&gt;.{dtor}(gcroot&lt;System::String ^&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1484
              <FileRef uid="11" />
1485
              <SequencePoints>
1486
                <SequencePoint vc="1" uspid="513" ordinal="0" offset="0" sl="89" sc="0" el="89" ec="0" />
1487
                <SequencePoint vc="1" uspid="514" ordinal="1" offset="16" sl="90" sc="0" el="90" ec="0" />
1488
                <SequencePoint vc="1" uspid="515" ordinal="2" offset="23" sl="91" sc="0" el="91" ec="0" />
1489
                <SequencePoint vc="1" uspid="516" ordinal="3" offset="26" sl="92" sc="0" el="92" ec="0" />
1490
              </SequencePoints>
1491
              <BranchPoints />
1492
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="513" ordinal="0" offset="0" sl="89" sc="0" el="89" ec="0" />
1493
            </Method>
1494
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1495
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1496
              <MetadataToken>100663373</MetadataToken>
1497
              <Name>gcroot&lt;System::String ^&gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) &lt;Module&gt;::gcroot&lt;System::String ^&gt;.=(gcroot&lt;System::String ^&gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.String)</Name>
1498
              <FileRef uid="11" />
1499
              <SequencePoints>
1500
                <SequencePoint vc="6" uspid="517" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
1501
                <SequencePoint vc="6" uspid="518" ordinal="1" offset="24" sl="99" sc="0" el="99" ec="0" />
1502
              </SequencePoints>
1503
              <BranchPoints />
1504
              <MethodPoint xsi:type="SequencePoint" vc="6" uspid="517" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
1505
            </Method>
1506
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1507
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1508
              <MetadataToken>100663374</MetadataToken>
1509
              <Name>System.String &lt;Module&gt;::gcroot&lt;System::String ^&gt;..P$AAVString@System@@(gcroot&lt;System::String ^&gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
1510
              <FileRef uid="11" />
1511
              <SequencePoints>
1512
                <SequencePoint vc="0" uspid="519" ordinal="0" offset="0" sl="119" sc="0" el="119" ec="0" />
1513
              </SequencePoints>
1514
              <BranchPoints />
1515
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="519" ordinal="0" offset="0" sl="119" sc="0" el="119" ec="0" />
1516
            </Method>
1517
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1518
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1519
              <MetadataToken>100663375</MetadataToken>
1520
              <Name>System.Void &lt;Module&gt;::___CxxCallUnwindDtor(method System.Void *(System.Void*),System.Void*)</Name>
1521
              <FileRef uid="12" />
1522
              <SequencePoints>
1523
                <SequencePoint vc="0" uspid="520" ordinal="0" offset="0" sl="697" sc="0" el="697" ec="0" />
1524
                <SequencePoint vc="0" uspid="521" ordinal="1" offset="7" sl="698" sc="0" el="698" ec="0" />
1525
                <SequencePoint vc="0" uspid="522" ordinal="2" offset="9" sl="699" sc="0" el="699" ec="0" />
1526
                <SequencePoint vc="0" uspid="523" ordinal="3" offset="25" sl="702" sc="0" el="702" ec="0" />
1527
              </SequencePoints>
1528
              <BranchPoints />
1529
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="520" ordinal="0" offset="0" sl="697" sc="0" el="697" ec="0" />
1530
            </Method>
1531
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1532
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1533
              <MetadataToken>100663376</MetadataToken>
1534
              <Name>System.Void &lt;Module&gt;::___CxxCallUnwindDelDtor(method System.Void *(System.Void*),System.Void*)</Name>
1535
              <FileRef uid="12" />
1536
              <SequencePoints>
1537
                <SequencePoint vc="0" uspid="524" ordinal="0" offset="0" sl="723" sc="0" el="723" ec="0" />
1538
                <SequencePoint vc="0" uspid="525" ordinal="1" offset="7" sl="724" sc="0" el="724" ec="0" />
1539
                <SequencePoint vc="0" uspid="526" ordinal="2" offset="9" sl="725" sc="0" el="725" ec="0" />
1540
                <SequencePoint vc="0" uspid="527" ordinal="3" offset="25" sl="729" sc="0" el="729" ec="0" />
1541
              </SequencePoints>
1542
              <BranchPoints />
1543
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="524" ordinal="0" offset="0" sl="723" sc="0" el="723" ec="0" />
1544
            </Method>
1545
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1546
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1547
              <MetadataToken>100663377</MetadataToken>
1548
              <Name>System.Void &lt;Module&gt;::___CxxCallUnwindVecDtor(method System.Void *(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*)),System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
1549
              <FileRef uid="12" />
1550
              <SequencePoints>
1551
                <SequencePoint vc="0" uspid="528" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
1552
                <SequencePoint vc="0" uspid="529" ordinal="1" offset="11" sl="753" sc="0" el="753" ec="0" />
1553
                <SequencePoint vc="0" uspid="530" ordinal="2" offset="13" sl="754" sc="0" el="754" ec="0" />
1554
                <SequencePoint vc="0" uspid="531" ordinal="3" offset="29" sl="757" sc="0" el="757" ec="0" />
1555
              </SequencePoints>
1556
              <BranchPoints />
1557
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="528" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
1558
            </Method>
1559
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1560
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="4" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
1561
              <MetadataToken>100663378</MetadataToken>
1562
              <Name>System.Void &lt;Module&gt;::__ehvec_dtor(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
1563
              <SequencePoints />
1564
              <BranchPoints>
1565
                <BranchPoint vc="0" uspid="533" ordinal="0" offset="16" path="0" />
1566
                <BranchPoint vc="0" uspid="534" ordinal="1" offset="16" path="1" />
1567
                <BranchPoint vc="0" uspid="535" ordinal="2" offset="37" path="0" />
1568
                <BranchPoint vc="0" uspid="536" ordinal="3" offset="37" path="1" />
1569
              </BranchPoints>
1570
              <MethodPoint vc="0" uspid="532" ordinal="0" offset="0" />
1571
            </Method>
1572
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1573
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1574
              <MetadataToken>100663379</MetadataToken>
1575
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::?A0x66596ba5.ArrayUnwindFilter(_EXCEPTION_POINTERS*)</Name>
1576
              <FileRef uid="13" />
1577
              <SequencePoints>
1578
                <SequencePoint vc="0" uspid="537" ordinal="0" offset="0" sl="111" sc="0" el="111" ec="0" />
1579
                <SequencePoint vc="0" uspid="538" ordinal="1" offset="10" sl="120" sc="0" el="120" ec="0" />
1580
                <SequencePoint vc="0" uspid="539" ordinal="2" offset="12" sl="114" sc="0" el="114" ec="0" />
1581
                <SequencePoint vc="0" uspid="540" ordinal="3" offset="17" sl="122" sc="0" el="122" ec="0" />
1582
              </SequencePoints>
1583
              <BranchPoints>
1584
                <BranchPoint vc="0" uspid="541" ordinal="0" offset="8" path="0" />
1585
                <BranchPoint vc="0" uspid="542" ordinal="1" offset="8" path="1" />
1586
              </BranchPoints>
1587
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="537" ordinal="0" offset="0" sl="111" sc="0" el="111" ec="0" />
1588
            </Method>
1589
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1590
              <Summary numSequencePoints="7" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1591
              <MetadataToken>100663380</MetadataToken>
1592
              <Name>System.Void &lt;Module&gt;::__ArrayUnwind(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
1593
              <FileRef uid="13" />
1594
              <SequencePoints>
1595
                <SequencePoint vc="0" uspid="543" ordinal="0" offset="0" sl="138" sc="0" el="138" ec="0" />
1596
                <SequencePoint vc="0" uspid="544" ordinal="1" offset="9" sl="140" sc="0" el="140" ec="0" />
1597
                <SequencePoint vc="0" uspid="545" ordinal="2" offset="14" sl="141" sc="0" el="141" ec="0" />
1598
                <SequencePoint vc="0" uspid="546" ordinal="3" offset="21" sl="142" sc="0" el="142" ec="0" />
1599
                <SequencePoint vc="0" uspid="547" ordinal="4" offset="23" sl="143" sc="0" el="143" ec="0" />
1600
                <SequencePoint vc="0" uspid="548" ordinal="5" offset="25" sl="144" sc="0" el="144" ec="0" />
1601
                <SequencePoint vc="0" uspid="549" ordinal="6" offset="41" sl="148" sc="0" el="148" ec="0" />
1602
              </SequencePoints>
1603
              <BranchPoints>
1604
                <BranchPoint vc="0" uspid="550" ordinal="0" offset="7" path="0" />
1605
                <BranchPoint vc="0" uspid="551" ordinal="1" offset="7" path="1" />
1606
              </BranchPoints>
1607
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="543" ordinal="0" offset="0" sl="138" sc="0" el="138" ec="0" />
1608
            </Method>
1609
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1610
              <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1611
              <MetadataToken>100663381</MetadataToken>
1612
              <Name>System.ValueType modopt(System.Runtime.InteropServices.GCHandle) modopt(System.Runtime.CompilerServices.IsBoxed) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock._handle()</Name>
1613
              <FileRef uid="14" />
1614
              <SequencePoints>
1615
                <SequencePoint vc="6" uspid="552" ordinal="0" offset="0" sl="74" sc="0" el="74" ec="0" />
1616
                <SequencePoint vc="4" uspid="553" ordinal="1" offset="7" sl="76" sc="0" el="76" ec="0" />
1617
                <SequencePoint vc="2" uspid="554" ordinal="2" offset="31" sl="79" sc="0" el="79" ec="0" />
1618
              </SequencePoints>
1619
              <BranchPoints>
1620
                <BranchPoint vc="4" uspid="555" ordinal="0" offset="5" path="0" />
1621
                <BranchPoint vc="2" uspid="556" ordinal="1" offset="5" path="1" />
1622
              </BranchPoints>
1623
              <MethodPoint xsi:type="SequencePoint" vc="6" uspid="552" ordinal="0" offset="0" sl="74" sc="0" el="74" ec="0" />
1624
            </Method>
1625
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1626
              <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1627
              <MetadataToken>100663382</MetadataToken>
1628
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock._lock_Construct(System.Object)</Name>
1629
              <FileRef uid="14" />
1630
              <SequencePoints>
1631
                <SequencePoint vc="1" uspid="557" ordinal="0" offset="0" sl="92" sc="0" el="92" ec="0" />
1632
                <SequencePoint vc="1" uspid="558" ordinal="1" offset="6" sl="93" sc="0" el="93" ec="0" />
1633
                <SequencePoint vc="1" uspid="559" ordinal="2" offset="12" sl="94" sc="0" el="94" ec="0" />
1634
              </SequencePoints>
1635
              <BranchPoints />
1636
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="557" ordinal="0" offset="0" sl="92" sc="0" el="92" ec="0" />
1637
            </Method>
1638
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="85.71" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1639
              <Summary numSequencePoints="7" visitedSequencePoints="6" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="85.71" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1640
              <MetadataToken>100663383</MetadataToken>
1641
              <Name>System.Void &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock._lock_Set(System.Object)</Name>
1642
              <FileRef uid="14" />
1643
              <SequencePoints>
1644
                <SequencePoint vc="1" uspid="560" ordinal="0" offset="0" sl="100" sc="0" el="100" ec="0" />
1645
                <SequencePoint vc="1" uspid="561" ordinal="1" offset="6" sl="101" sc="0" el="101" ec="0" />
1646
                <SequencePoint vc="1" uspid="562" ordinal="2" offset="9" sl="103" sc="0" el="103" ec="0" />
1647
                <SequencePoint vc="1" uspid="563" ordinal="3" offset="21" sl="104" sc="0" el="104" ec="0" />
1648
                <SequencePoint vc="1" uspid="564" ordinal="4" offset="50" sl="106" sc="0" el="106" ec="0" />
1649
                <SequencePoint vc="0" uspid="565" ordinal="5" offset="52" sl="108" sc="0" el="108" ec="0" />
1650
                <SequencePoint vc="1" uspid="566" ordinal="6" offset="64" sl="110" sc="0" el="110" ec="0" />
1651
              </SequencePoints>
1652
              <BranchPoints>
1653
                <BranchPoint vc="1" uspid="567" ordinal="0" offset="7" path="0" />
1654
                <BranchPoint vc="0" uspid="568" ordinal="1" offset="7" path="1" />
1655
              </BranchPoints>
1656
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="560" ordinal="0" offset="0" sl="100" sc="0" el="100" ec="0" />
1657
            </Method>
1658
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1659
              <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1660
              <MetadataToken>100663384</MetadataToken>
1661
              <Name>System.Object &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock._lock_Get()</Name>
1662
              <FileRef uid="14" />
1663
              <SequencePoints>
1664
                <SequencePoint vc="4" uspid="569" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
1665
                <SequencePoint vc="4" uspid="570" ordinal="1" offset="6" sl="117" sc="0" el="117" ec="0" />
1666
                <SequencePoint vc="3" uspid="571" ordinal="2" offset="9" sl="119" sc="0" el="119" ec="0" />
1667
                <SequencePoint vc="1" uspid="572" ordinal="3" offset="21" sl="121" sc="0" el="121" ec="0" />
1668
              </SequencePoints>
1669
              <BranchPoints>
1670
                <BranchPoint vc="3" uspid="573" ordinal="0" offset="7" path="0" />
1671
                <BranchPoint vc="1" uspid="574" ordinal="1" offset="7" path="1" />
1672
              </BranchPoints>
1673
              <MethodPoint xsi:type="SequencePoint" vc="4" uspid="569" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
1674
            </Method>
1675
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1676
              <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1677
              <MetadataToken>100663385</MetadataToken>
1678
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock._lock_Destruct()</Name>
1679
              <FileRef uid="14" />
1680
              <SequencePoints>
1681
                <SequencePoint vc="1" uspid="575" ordinal="0" offset="0" sl="128" sc="0" el="128" ec="0" />
1682
                <SequencePoint vc="1" uspid="576" ordinal="1" offset="6" sl="129" sc="0" el="129" ec="0" />
1683
                <SequencePoint vc="1" uspid="577" ordinal="2" offset="9" sl="131" sc="0" el="131" ec="0" />
1684
                <SequencePoint vc="1" uspid="578" ordinal="3" offset="20" sl="132" sc="0" el="132" ec="0" />
1685
                <SequencePoint vc="1" uspid="579" ordinal="4" offset="26" sl="134" sc="0" el="134" ec="0" />
1686
              </SequencePoints>
1687
              <BranchPoints>
1688
                <BranchPoint vc="1" uspid="580" ordinal="0" offset="7" path="0" />
1689
                <BranchPoint vc="0" uspid="581" ordinal="1" offset="7" path="1" />
1690
              </BranchPoints>
1691
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="575" ordinal="0" offset="0" sl="128" sc="0" el="128" ec="0" />
1692
            </Method>
1693
            <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1694
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
1695
              <MetadataToken>100663386</MetadataToken>
1696
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock.IsInitialized()</Name>
1697
              <FileRef uid="14" />
1698
              <SequencePoints>
1699
                <SequencePoint vc="4" uspid="582" ordinal="0" offset="0" sl="142" sc="0" el="142" ec="0" />
1700
              </SequencePoints>
1701
              <BranchPoints>
1702
                <BranchPoint vc="1" uspid="583" ordinal="0" offset="6" path="0" />
1703
                <BranchPoint vc="3" uspid="584" ordinal="1" offset="6" path="1" />
1704
              </BranchPoints>
1705
              <MethodPoint xsi:type="SequencePoint" vc="4" uspid="582" ordinal="0" offset="0" sl="142" sc="0" el="142" ec="0" />
1706
            </Method>
1707
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1708
              <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1709
              <MetadataToken>100663387</MetadataToken>
1710
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock.AddRef()</Name>
1711
              <FileRef uid="14" />
1712
              <SequencePoints>
1713
                <SequencePoint vc="2" uspid="585" ordinal="0" offset="0" sl="149" sc="0" el="149" ec="0" />
1714
                <SequencePoint vc="1" uspid="586" ordinal="1" offset="7" sl="151" sc="0" el="151" ec="0" />
1715
                <SequencePoint vc="1" uspid="587" ordinal="2" offset="17" sl="152" sc="0" el="152" ec="0" />
1716
                <SequencePoint vc="2" uspid="588" ordinal="3" offset="23" sl="154" sc="0" el="154" ec="0" />
1717
                <SequencePoint vc="2" uspid="589" ordinal="4" offset="35" sl="155" sc="0" el="155" ec="0" />
1718
              </SequencePoints>
1719
              <BranchPoints>
1720
                <BranchPoint vc="1" uspid="590" ordinal="0" offset="5" path="0" />
1721
                <BranchPoint vc="1" uspid="591" ordinal="1" offset="5" path="1" />
1722
              </BranchPoints>
1723
              <MethodPoint xsi:type="SequencePoint" vc="2" uspid="585" ordinal="0" offset="0" sl="149" sc="0" el="149" ec="0" />
1724
            </Method>
1725
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1726
              <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1727
              <MetadataToken>100663388</MetadataToken>
1728
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock.RemoveRef()</Name>
1729
              <FileRef uid="14" />
1730
              <SequencePoints>
1731
                <SequencePoint vc="2" uspid="592" ordinal="0" offset="0" sl="162" sc="0" el="162" ec="0" />
1732
                <SequencePoint vc="1" uspid="593" ordinal="1" offset="19" sl="165" sc="0" el="165" ec="0" />
1733
                <SequencePoint vc="2" uspid="594" ordinal="2" offset="24" sl="167" sc="0" el="167" ec="0" />
1734
              </SequencePoints>
1735
              <BranchPoints>
1736
                <BranchPoint vc="1" uspid="595" ordinal="0" offset="17" path="0" />
1737
                <BranchPoint vc="1" uspid="596" ordinal="1" offset="17" path="1" />
1738
              </BranchPoints>
1739
              <MethodPoint xsi:type="SequencePoint" vc="2" uspid="592" ordinal="0" offset="0" sl="162" sc="0" el="162" ec="0" />
1740
            </Method>
1741
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1742
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1743
              <MetadataToken>100663389</MetadataToken>
1744
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock.Enter()</Name>
1745
              <FileRef uid="14" />
1746
              <SequencePoints>
1747
                <SequencePoint vc="0" uspid="597" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
1748
                <SequencePoint vc="0" uspid="598" ordinal="1" offset="10" sl="178" sc="0" el="178" ec="0" />
1749
              </SequencePoints>
1750
              <BranchPoints />
1751
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="597" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
1752
            </Method>
1753
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1754
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1755
              <MetadataToken>100663390</MetadataToken>
1756
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.AtExitLock.Exit()</Name>
1757
              <FileRef uid="14" />
1758
              <SequencePoints>
1759
                <SequencePoint vc="0" uspid="599" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
1760
                <SequencePoint vc="0" uspid="600" ordinal="1" offset="10" sl="185" sc="0" el="185" ec="0" />
1761
              </SequencePoints>
1762
              <BranchPoints />
1763
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="599" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
1764
            </Method>
1765
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1766
              <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1767
              <MetadataToken>100663391</MetadataToken>
1768
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::?A0xc6172590.__global_lock()</Name>
1769
              <FileRef uid="14" />
1770
              <SequencePoints>
1771
                <SequencePoint vc="0" uspid="601" ordinal="0" offset="0" sl="211" sc="0" el="211" ec="0" />
1772
                <SequencePoint vc="0" uspid="602" ordinal="1" offset="2" sl="212" sc="0" el="212" ec="0" />
1773
                <SequencePoint vc="0" uspid="603" ordinal="2" offset="9" sl="214" sc="0" el="214" ec="0" />
1774
                <SequencePoint vc="0" uspid="604" ordinal="3" offset="14" sl="215" sc="0" el="215" ec="0" />
1775
                <SequencePoint vc="0" uspid="605" ordinal="4" offset="16" sl="217" sc="0" el="217" ec="0" />
1776
              </SequencePoints>
1777
              <BranchPoints>
1778
                <BranchPoint vc="0" uspid="606" ordinal="0" offset="7" path="0" />
1779
                <BranchPoint vc="0" uspid="607" ordinal="1" offset="7" path="1" />
1780
              </BranchPoints>
1781
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="601" ordinal="0" offset="0" sl="211" sc="0" el="211" ec="0" />
1782
            </Method>
1783
            <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1784
              <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1785
              <MetadataToken>100663392</MetadataToken>
1786
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::?A0xc6172590.__global_unlock()</Name>
1787
              <FileRef uid="14" />
1788
              <SequencePoints>
1789
                <SequencePoint vc="0" uspid="608" ordinal="0" offset="0" sl="239" sc="0" el="239" ec="0" />
1790
                <SequencePoint vc="0" uspid="609" ordinal="1" offset="2" sl="240" sc="0" el="240" ec="0" />
1791
                <SequencePoint vc="0" uspid="610" ordinal="2" offset="9" sl="242" sc="0" el="242" ec="0" />
1792
                <SequencePoint vc="0" uspid="611" ordinal="3" offset="14" sl="243" sc="0" el="243" ec="0" />
1793
                <SequencePoint vc="0" uspid="612" ordinal="4" offset="16" sl="245" sc="0" el="245" ec="0" />
1794
              </SequencePoints>
1795
              <BranchPoints>
1796
                <BranchPoint vc="0" uspid="613" ordinal="0" offset="7" path="0" />
1797
                <BranchPoint vc="0" uspid="614" ordinal="1" offset="7" path="1" />
1798
              </BranchPoints>
1799
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="608" ordinal="0" offset="0" sl="239" sc="0" el="239" ec="0" />
1800
            </Method>
1801
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1802
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1803
              <MetadataToken>100663393</MetadataToken>
1804
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::?A0xc6172590.__alloc_global_lock()</Name>
1805
              <FileRef uid="14" />
1806
              <SequencePoints>
1807
                <SequencePoint vc="2" uspid="615" ordinal="0" offset="0" sl="268" sc="0" el="268" ec="0" />
1808
                <SequencePoint vc="2" uspid="616" ordinal="1" offset="5" sl="269" sc="0" el="269" ec="0" />
1809
              </SequencePoints>
1810
              <BranchPoints />
1811
              <MethodPoint xsi:type="SequencePoint" vc="2" uspid="615" ordinal="0" offset="0" sl="268" sc="0" el="268" ec="0" />
1812
            </Method>
1813
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1814
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1815
              <MetadataToken>100663394</MetadataToken>
1816
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::?A0xc6172590.__dealloc_global_lock()</Name>
1817
              <FileRef uid="14" />
1818
              <SequencePoints>
1819
                <SequencePoint vc="2" uspid="617" ordinal="0" offset="0" sl="290" sc="0" el="290" ec="0" />
1820
                <SequencePoint vc="2" uspid="618" ordinal="1" offset="5" sl="291" sc="0" el="291" ec="0" />
1821
              </SequencePoints>
1822
              <BranchPoints />
1823
              <MethodPoint xsi:type="SequencePoint" vc="2" uspid="617" ordinal="0" offset="0" sl="290" sc="0" el="290" ec="0" />
1824
            </Method>
1825
            <Method visited="false" cyclomaticComplexity="7" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1826
              <Summary numSequencePoints="25" visitedSequencePoints="0" numBranchPoints="13" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="7" minCyclomaticComplexity="7" />
1827
              <MetadataToken>100663395</MetadataToken>
1828
              <Name>System.Int32 &lt;Module&gt;::_atexit_helper(method System.Void *(),System.UInt32*,method System.Void *()**,method System.Void *()**)</Name>
1829
              <FileRef uid="14" />
1830
              <SequencePoints>
1831
                <SequencePoint vc="0" uspid="619" ordinal="0" offset="0" sl="322" sc="0" el="322" ec="0" />
1832
                <SequencePoint vc="0" uspid="620" ordinal="1" offset="3" sl="327" sc="0" el="327" ec="0" />
1833
                <SequencePoint vc="0" uspid="621" ordinal="2" offset="8" sl="328" sc="0" el="328" ec="0" />
1834
                <SequencePoint vc="0" uspid="622" ordinal="3" offset="19" sl="330" sc="0" el="330" ec="0" />
1835
                <SequencePoint vc="0" uspid="623" ordinal="4" offset="27" sl="331" sc="0" el="331" ec="0" />
1836
                <SequencePoint vc="0" uspid="624" ordinal="5" offset="35" sl="337" sc="0" el="337" ec="0" />
1837
                <SequencePoint vc="0" uspid="625" ordinal="6" offset="53" sl="349" sc="0" el="349" ec="0" />
1838
                <SequencePoint vc="0" uspid="626" ordinal="7" offset="116" sl="353" sc="0" el="353" ec="0" />
1839
                <SequencePoint vc="0" uspid="627" ordinal="8" offset="127" sl="354" sc="0" el="354" ec="0" />
1840
                <SequencePoint vc="0" uspid="628" ordinal="9" offset="135" sl="355" sc="0" el="355" ec="0" />
1841
                <SequencePoint vc="0" uspid="629" ordinal="10" offset="166" sl="357" sc="0" el="357" ec="0" />
1842
                <SequencePoint vc="0" uspid="630" ordinal="11" offset="167" sl="363" sc="0" el="363" ec="0" />
1843
                <SequencePoint vc="0" uspid="631" ordinal="12" offset="207" sl="367" sc="0" el="367" ec="0" />
1844
                <SequencePoint vc="0" uspid="632" ordinal="13" offset="219" sl="368" sc="0" el="368" ec="0" />
1845
                <SequencePoint vc="0" uspid="633" ordinal="14" offset="227" sl="369" sc="0" el="369" ec="0" />
1846
                <SequencePoint vc="0" uspid="634" ordinal="15" offset="233" sl="370" sc="0" el="370" ec="0" />
1847
                <SequencePoint vc="0" uspid="635" ordinal="16" offset="235" sl="372" sc="0" el="372" ec="0" />
1848
                <SequencePoint vc="0" uspid="636" ordinal="17" offset="242" sl="373" sc="0" el="373" ec="0" />
1849
                <SequencePoint vc="0" uspid="637" ordinal="18" offset="245" sl="375" sc="0" el="375" ec="0" />
1850
                <SequencePoint vc="0" uspid="638" ordinal="19" offset="253" sl="376" sc="0" el="376" ec="0" />
1851
                <SequencePoint vc="0" uspid="639" ordinal="20" offset="263" sl="378" sc="0" el="378" ec="0" />
1852
                <SequencePoint vc="0" uspid="640" ordinal="21" offset="264" sl="379" sc="0" el="379" ec="0" />
1853
                <SequencePoint vc="0" uspid="641" ordinal="22" offset="270" sl="380" sc="0" el="380" ec="0" />
1854
                <SequencePoint vc="0" uspid="642" ordinal="23" offset="276" sl="381" sc="0" el="381" ec="0" />
1855
                <SequencePoint vc="0" uspid="643" ordinal="24" offset="277" sl="383" sc="0" el="383" ec="0" />
1856
              </SequencePoints>
1857
              <BranchPoints>
1858
                <BranchPoint vc="0" uspid="644" ordinal="0" offset="4" path="0" />
1859
                <BranchPoint vc="0" uspid="645" ordinal="1" offset="4" path="1" />
1860
                <BranchPoint vc="0" uspid="646" ordinal="2" offset="14" path="0" />
1861
                <BranchPoint vc="0" uspid="647" ordinal="3" offset="14" path="1" />
1862
                <BranchPoint vc="0" uspid="648" ordinal="4" offset="48" path="0" />
1863
                <BranchPoint vc="0" uspid="649" ordinal="5" offset="48" path="1" />
1864
                <BranchPoint vc="0" uspid="650" ordinal="6" offset="64" path="0" />
1865
                <BranchPoint vc="0" uspid="651" ordinal="7" offset="64" path="1" />
1866
                <BranchPoint vc="0" uspid="652" ordinal="8" offset="144" path="0" />
1867
                <BranchPoint vc="0" uspid="653" ordinal="9" offset="144" path="1" />
1868
                <BranchPoint vc="0" uspid="654" ordinal="10" offset="279" path="0" />
1869
                <BranchPoint vc="0" uspid="655" ordinal="11" offset="279" path="1" />
1870
              </BranchPoints>
1871
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="619" ordinal="0" offset="0" sl="322" sc="0" el="322" ec="0" />
1872
            </Method>
1873
            <Method visited="true" cyclomaticComplexity="9" sequenceCoverage="52.63" branchCoverage="35.29" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1874
              <Summary numSequencePoints="19" visitedSequencePoints="10" numBranchPoints="17" visitedBranchPoints="6" sequenceCoverage="52.63" branchCoverage="35.29" maxCyclomaticComplexity="9" minCyclomaticComplexity="9" />
1875
              <MetadataToken>100663396</MetadataToken>
1876
              <Name>System.Void &lt;Module&gt;::_exit_callback()</Name>
1877
              <FileRef uid="14" />
1878
              <SequencePoints>
1879
                <SequencePoint vc="1" uspid="656" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
1880
                <SequencePoint vc="1" uspid="657" ordinal="1" offset="10" sl="433" sc="0" el="433" ec="0" />
1881
                <SequencePoint vc="1" uspid="658" ordinal="2" offset="21" sl="434" sc="0" el="434" ec="0" />
1882
                <SequencePoint vc="1" uspid="659" ordinal="3" offset="32" sl="436" sc="0" el="436" ec="0" />
1883
                <SequencePoint vc="1" uspid="660" ordinal="4" offset="42" sl="440" sc="0" el="440" ec="0" />
1884
                <SequencePoint vc="1" uspid="661" ordinal="5" offset="45" sl="441" sc="0" el="441" ec="0" />
1885
                <SequencePoint vc="1" uspid="662" ordinal="6" offset="48" sl="449" sc="0" el="449" ec="0" />
1886
                <SequencePoint vc="0" uspid="663" ordinal="7" offset="65" sl="461" sc="0" el="461" ec="0" />
1887
                <SequencePoint vc="0" uspid="664" ordinal="8" offset="72" sl="464" sc="0" el="464" ec="0" />
1888
                <SequencePoint vc="0" uspid="665" ordinal="9" offset="79" sl="467" sc="0" el="467" ec="0" />
1889
                <SequencePoint vc="0" uspid="666" ordinal="10" offset="84" sl="470" sc="0" el="470" ec="0" />
1890
                <SequencePoint vc="0" uspid="667" ordinal="11" offset="95" sl="471" sc="0" el="471" ec="0" />
1891
                <SequencePoint vc="0" uspid="668" ordinal="12" offset="106" sl="473" sc="0" el="473" ec="0" />
1892
                <SequencePoint vc="0" uspid="669" ordinal="13" offset="116" sl="476" sc="0" el="476" ec="0" />
1893
                <SequencePoint vc="0" uspid="670" ordinal="14" offset="121" sl="477" sc="0" el="477" ec="0" />
1894
                <SequencePoint vc="0" uspid="671" ordinal="15" offset="126" sl="479" sc="0" el="479" ec="0" />
1895
                <SequencePoint vc="1" uspid="672" ordinal="16" offset="128" sl="487" sc="0" el="487" ec="0" />
1896
                <SequencePoint vc="1" uspid="673" ordinal="17" offset="143" sl="489" sc="0" el="489" ec="0" />
1897
                <SequencePoint vc="1" uspid="674" ordinal="18" offset="148" sl="490" sc="0" el="490" ec="0" />
1898
              </SequencePoints>
1899
              <BranchPoints>
1900
                <BranchPoint vc="1" uspid="675" ordinal="0" offset="5" path="0" />
1901
                <BranchPoint vc="0" uspid="676" ordinal="1" offset="5" path="1" />
1902
                <BranchPoint vc="1" uspid="677" ordinal="2" offset="34" path="0" />
1903
                <BranchPoint vc="0" uspid="678" ordinal="3" offset="34" path="1" />
1904
                <BranchPoint vc="1" uspid="679" ordinal="4" offset="37" path="0" />
1905
                <BranchPoint vc="0" uspid="680" ordinal="5" offset="37" path="1" />
1906
                <BranchPoint vc="1" uspid="681" ordinal="6" offset="40" path="0" />
1907
                <BranchPoint vc="0" uspid="682" ordinal="7" offset="40" path="1" />
1908
                <BranchPoint vc="0" uspid="683" ordinal="8" offset="54" path="0" />
1909
                <BranchPoint vc="1" uspid="684" ordinal="9" offset="54" path="1" />
1910
                <BranchPoint vc="0" uspid="685" ordinal="10" offset="63" path="0" />
1911
                <BranchPoint vc="0" uspid="686" ordinal="11" offset="63" path="1" />
1912
                <BranchPoint vc="0" uspid="687" ordinal="12" offset="109" path="0" />
1913
                <BranchPoint vc="0" uspid="688" ordinal="13" offset="109" path="1" />
1914
                <BranchPoint vc="0" uspid="689" ordinal="14" offset="114" path="0" />
1915
                <BranchPoint vc="0" uspid="690" ordinal="15" offset="114" path="1" />
1916
              </BranchPoints>
1917
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="656" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
1918
            </Method>
1919
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1920
              <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1921
              <MetadataToken>100663397</MetadataToken>
1922
              <Name>System.Int32 &lt;Module&gt;::_initatexit_m()</Name>
1923
              <FileRef uid="14" />
1924
              <SequencePoints>
1925
                <SequencePoint vc="1" uspid="691" ordinal="0" offset="0" sl="514" sc="0" el="514" ec="0" />
1926
                <SequencePoint vc="1" uspid="692" ordinal="1" offset="1" sl="519" sc="0" el="519" ec="0" />
1927
                <SequencePoint vc="1" uspid="693" ordinal="2" offset="10" sl="522" sc="0" el="522" ec="0" />
1928
                <SequencePoint vc="1" uspid="694" ordinal="3" offset="21" sl="524" sc="0" el="524" ec="0" />
1929
                <SequencePoint vc="1" uspid="695" ordinal="4" offset="48" sl="525" sc="0" el="525" ec="0" />
1930
                <SequencePoint vc="1" uspid="696" ordinal="5" offset="55" sl="526" sc="0" el="526" ec="0" />
1931
                <SequencePoint vc="1" uspid="697" ordinal="6" offset="56" sl="528" sc="0" el="528" ec="0" />
1932
              </SequencePoints>
1933
              <BranchPoints>
1934
                <BranchPoint vc="1" uspid="698" ordinal="0" offset="7" path="0" />
1935
                <BranchPoint vc="0" uspid="699" ordinal="1" offset="7" path="1" />
1936
              </BranchPoints>
1937
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="691" ordinal="0" offset="0" sl="514" sc="0" el="514" ec="0" />
1938
            </Method>
1939
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1940
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
1941
              <MetadataToken>100663398</MetadataToken>
1942
              <Name>method System.Int32 *() &lt;Module&gt;::_onexit_m(method System.Int32 *())</Name>
1943
              <FileRef uid="14" />
1944
              <SequencePoints>
1945
                <SequencePoint vc="0" uspid="700" ordinal="0" offset="0" sl="555" sc="0" el="555" ec="0" />
1946
              </SequencePoints>
1947
              <BranchPoints>
1948
                <BranchPoint vc="0" uspid="701" ordinal="0" offset="7" path="0" />
1949
                <BranchPoint vc="0" uspid="702" ordinal="1" offset="7" path="1" />
1950
              </BranchPoints>
1951
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="700" ordinal="0" offset="0" sl="555" sc="0" el="555" ec="0" />
1952
            </Method>
1953
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1954
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
1955
              <MetadataToken>100663399</MetadataToken>
1956
              <Name>System.Int32 &lt;Module&gt;::_atexit_m(method System.Void *())</Name>
1957
              <FileRef uid="14" />
1958
              <SequencePoints>
1959
                <SequencePoint vc="0" uspid="703" ordinal="0" offset="0" sl="565" sc="0" el="565" ec="0" />
1960
              </SequencePoints>
1961
              <BranchPoints />
1962
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="703" ordinal="0" offset="0" sl="565" sc="0" el="565" ec="0" />
1963
            </Method>
1964
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1965
              <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
1966
              <MetadataToken>100663400</MetadataToken>
1967
              <Name>System.Int32 &lt;Module&gt;::_initatexit_app_domain()</Name>
1968
              <FileRef uid="14" />
1969
              <SequencePoints>
1970
                <SequencePoint vc="1" uspid="704" ordinal="0" offset="0" sl="612" sc="0" el="612" ec="0" />
1971
                <SequencePoint vc="1" uspid="705" ordinal="1" offset="8" sl="623" sc="0" el="623" ec="0" />
1972
                <SequencePoint vc="1" uspid="706" ordinal="2" offset="19" sl="625" sc="0" el="625" ec="0" />
1973
                <SequencePoint vc="1" uspid="707" ordinal="3" offset="46" sl="626" sc="0" el="626" ec="0" />
1974
                <SequencePoint vc="1" uspid="708" ordinal="4" offset="53" sl="633" sc="0" el="633" ec="0" />
1975
              </SequencePoints>
1976
              <BranchPoints>
1977
                <BranchPoint vc="1" uspid="709" ordinal="0" offset="6" path="0" />
1978
                <BranchPoint vc="0" uspid="710" ordinal="1" offset="6" path="1" />
1979
              </BranchPoints>
1980
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="704" ordinal="0" offset="0" sl="612" sc="0" el="612" ec="0" />
1981
            </Method>
1982
            <Method visited="true" cyclomaticComplexity="10" sequenceCoverage="61.54" branchCoverage="36.84" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
1983
              <Summary numSequencePoints="26" visitedSequencePoints="16" numBranchPoints="19" visitedBranchPoints="7" sequenceCoverage="61.54" branchCoverage="36.84" maxCyclomaticComplexity="10" minCyclomaticComplexity="10" />
1984
              <MetadataToken>100663401</MetadataToken>
1985
              <Name>System.Void &lt;Module&gt;::_app_exit_callback()</Name>
1986
              <FileRef uid="14" />
1987
              <SequencePoints>
1988
                <SequencePoint vc="1" uspid="711" ordinal="0" offset="0" sl="663" sc="0" el="663" ec="0" />
1989
                <SequencePoint vc="1" uspid="712" ordinal="1" offset="10" sl="672" sc="0" el="672" ec="0" />
1990
                <SequencePoint vc="1" uspid="713" ordinal="2" offset="21" sl="673" sc="0" el="673" ec="0" />
1991
                <SequencePoint vc="1" uspid="714" ordinal="3" offset="32" sl="677" sc="0" el="677" ec="0" />
1992
                <SequencePoint vc="1" uspid="715" ordinal="4" offset="42" sl="678" sc="0" el="678" ec="0" />
1993
                <SequencePoint vc="1" uspid="716" ordinal="5" offset="45" sl="680" sc="0" el="680" ec="0" />
1994
                <SequencePoint vc="1" uspid="717" ordinal="6" offset="48" sl="681" sc="0" el="681" ec="0" />
1995
                <SequencePoint vc="1" uspid="718" ordinal="7" offset="51" sl="685" sc="0" el="685" ec="0" />
1996
                <SequencePoint vc="1" uspid="719" ordinal="8" offset="54" sl="686" sc="0" el="686" ec="0" />
1997
                <SequencePoint vc="1" uspid="720" ordinal="9" offset="57" sl="689" sc="0" el="689" ec="0" />
1998
                <SequencePoint vc="0" uspid="721" ordinal="10" offset="74" sl="692" sc="0" el="692" ec="0" />
1999
                <SequencePoint vc="1" uspid="722" ordinal="11" offset="76" sl="694" sc="0" el="694" ec="0" />
2000
                <SequencePoint vc="0" uspid="723" ordinal="12" offset="80" sl="701" sc="0" el="701" ec="0" />
2001
                <SequencePoint vc="0" uspid="724" ordinal="13" offset="89" sl="704" sc="0" el="704" ec="0" />
2002
                <SequencePoint vc="0" uspid="725" ordinal="14" offset="96" sl="707" sc="0" el="707" ec="0" />
2003
                <SequencePoint vc="0" uspid="726" ordinal="15" offset="103" sl="709" sc="0" el="709" ec="0" />
2004
                <SequencePoint vc="0" uspid="727" ordinal="16" offset="114" sl="710" sc="0" el="710" ec="0" />
2005
                <SequencePoint vc="0" uspid="728" ordinal="17" offset="125" sl="713" sc="0" el="713" ec="0" />
2006
                <SequencePoint vc="0" uspid="729" ordinal="18" offset="135" sl="715" sc="0" el="715" ec="0" />
2007
                <SequencePoint vc="0" uspid="730" ordinal="19" offset="140" sl="716" sc="0" el="716" ec="0" />
2008
                <SequencePoint vc="0" uspid="731" ordinal="20" offset="145" sl="718" sc="0" el="718" ec="0" />
2009
                <SequencePoint vc="1" uspid="732" ordinal="21" offset="147" sl="721" sc="0" el="721" ec="0" />
2010
                <SequencePoint vc="1" uspid="733" ordinal="22" offset="149" sl="724" sc="0" el="724" ec="0" />
2011
                <SequencePoint vc="1" uspid="734" ordinal="23" offset="164" sl="725" sc="0" el="725" ec="0" />
2012
                <SequencePoint vc="1" uspid="735" ordinal="24" offset="169" sl="726" sc="0" el="726" ec="0" />
2013
                <SequencePoint vc="1" uspid="736" ordinal="25" offset="170" sl="727" sc="0" el="727" ec="0" />
2014
              </SequencePoints>
2015
              <BranchPoints>
2016
                <BranchPoint vc="1" uspid="737" ordinal="0" offset="5" path="0" />
2017
                <BranchPoint vc="0" uspid="738" ordinal="1" offset="5" path="1" />
2018
                <BranchPoint vc="1" uspid="739" ordinal="2" offset="34" path="0" />
2019
                <BranchPoint vc="0" uspid="740" ordinal="3" offset="34" path="1" />
2020
                <BranchPoint vc="1" uspid="741" ordinal="4" offset="37" path="0" />
2021
                <BranchPoint vc="0" uspid="742" ordinal="5" offset="37" path="1" />
2022
                <BranchPoint vc="1" uspid="743" ordinal="6" offset="40" path="0" />
2023
                <BranchPoint vc="0" uspid="744" ordinal="7" offset="40" path="1" />
2024
                <BranchPoint vc="0" uspid="745" ordinal="8" offset="63" path="0" />
2025
                <BranchPoint vc="1" uspid="746" ordinal="9" offset="63" path="1" />
2026
                <BranchPoint vc="0" uspid="747" ordinal="10" offset="72" path="0" />
2027
                <BranchPoint vc="0" uspid="748" ordinal="11" offset="72" path="1" />
2028
                <BranchPoint vc="0" uspid="749" ordinal="12" offset="78" path="0" />
2029
                <BranchPoint vc="1" uspid="750" ordinal="13" offset="78" path="1" />
2030
                <BranchPoint vc="0" uspid="751" ordinal="14" offset="128" path="0" />
2031
                <BranchPoint vc="0" uspid="752" ordinal="15" offset="128" path="1" />
2032
                <BranchPoint vc="0" uspid="753" ordinal="16" offset="133" path="0" />
2033
                <BranchPoint vc="0" uspid="754" ordinal="17" offset="133" path="1" />
2034
              </BranchPoints>
2035
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="711" ordinal="0" offset="0" sl="663" sc="0" el="663" ec="0" />
2036
            </Method>
2037
            <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2038
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
2039
              <MetadataToken>100663402</MetadataToken>
2040
              <Name>method System.Int32 *() &lt;Module&gt;::_onexit_m_appdomain(method System.Int32 *())</Name>
2041
              <FileRef uid="14" />
2042
              <SequencePoints>
2043
                <SequencePoint vc="0" uspid="755" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
2044
              </SequencePoints>
2045
              <BranchPoints>
2046
                <BranchPoint vc="0" uspid="756" ordinal="0" offset="7" path="0" />
2047
                <BranchPoint vc="0" uspid="757" ordinal="1" offset="7" path="1" />
2048
              </BranchPoints>
2049
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="755" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
2050
            </Method>
2051
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2052
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2053
              <MetadataToken>100663403</MetadataToken>
2054
              <Name>System.Int32 &lt;Module&gt;::_atexit_m_appdomain(method System.Void *())</Name>
2055
              <FileRef uid="14" />
2056
              <SequencePoints>
2057
                <SequencePoint vc="0" uspid="758" ordinal="0" offset="0" sl="761" sc="0" el="761" ec="0" />
2058
              </SequencePoints>
2059
              <BranchPoints />
2060
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="758" ordinal="0" offset="0" sl="761" sc="0" el="761" ec="0" />
2061
            </Method>
2062
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2063
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2064
              <MetadataToken>100663404</MetadataToken>
2065
              <Name>System.Void* &lt;Module&gt;::DecodePointer(System.Void*)</Name>
2066
              <SequencePoints />
2067
              <BranchPoints />
2068
              <MethodPoint vc="0" uspid="759" ordinal="0" offset="0" />
2069
            </Method>
2070
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2071
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2072
              <MetadataToken>100663405</MetadataToken>
2073
              <Name>System.Void* &lt;Module&gt;::_encoded_null()</Name>
2074
              <SequencePoints />
2075
              <BranchPoints />
2076
              <MethodPoint vc="0" uspid="760" ordinal="0" offset="0" />
2077
            </Method>
2078
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2079
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2080
              <MetadataToken>100663406</MetadataToken>
2081
              <Name>System.Void* &lt;Module&gt;::EncodePointer(System.Void*)</Name>
2082
              <SequencePoints />
2083
              <BranchPoints />
2084
              <MethodPoint vc="0" uspid="761" ordinal="0" offset="0" />
2085
            </Method>
2086
            <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2087
              <Summary numSequencePoints="7" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
2088
              <MetadataToken>100663407</MetadataToken>
2089
              <Name>System.Int32 &lt;Module&gt;::_initterm_e(method System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*,method System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*)</Name>
2090
              <FileRef uid="15" />
2091
              <SequencePoints>
2092
                <SequencePoint vc="0" uspid="762" ordinal="0" offset="0" sl="61" sc="0" el="61" ec="0" />
2093
                <SequencePoint vc="0" uspid="763" ordinal="1" offset="2" sl="68" sc="0" el="68" ec="0" />
2094
                <SequencePoint vc="0" uspid="764" ordinal="2" offset="9" sl="73" sc="0" el="73" ec="0" />
2095
                <SequencePoint vc="0" uspid="765" ordinal="3" offset="15" sl="74" sc="0" el="74" ec="0" />
2096
                <SequencePoint vc="0" uspid="766" ordinal="4" offset="22" sl="75" sc="0" el="75" ec="0" />
2097
                <SequencePoint vc="0" uspid="767" ordinal="5" offset="27" sl="68" sc="0" el="68" ec="0" />
2098
                <SequencePoint vc="0" uspid="768" ordinal="6" offset="31" sl="78" sc="0" el="78" ec="0" />
2099
              </SequencePoints>
2100
              <BranchPoints>
2101
                <BranchPoint vc="0" uspid="769" ordinal="0" offset="4" path="0" />
2102
                <BranchPoint vc="0" uspid="770" ordinal="1" offset="4" path="1" />
2103
                <BranchPoint vc="0" uspid="771" ordinal="2" offset="7" path="0" />
2104
                <BranchPoint vc="0" uspid="772" ordinal="3" offset="7" path="1" />
2105
                <BranchPoint vc="0" uspid="773" ordinal="4" offset="13" path="0" />
2106
                <BranchPoint vc="0" uspid="774" ordinal="5" offset="13" path="1" />
2107
                <BranchPoint vc="0" uspid="775" ordinal="6" offset="29" path="0" />
2108
                <BranchPoint vc="0" uspid="776" ordinal="7" offset="29" path="1" />
2109
              </BranchPoints>
2110
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="762" ordinal="0" offset="0" sl="61" sc="0" el="61" ec="0" />
2111
            </Method>
2112
            <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2113
              <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="7" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
2114
              <MetadataToken>100663408</MetadataToken>
2115
              <Name>System.Void &lt;Module&gt;::_initterm(method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*,method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*)</Name>
2116
              <FileRef uid="15" />
2117
              <SequencePoints>
2118
                <SequencePoint vc="0" uspid="777" ordinal="0" offset="0" sl="125" sc="0" el="125" ec="0" />
2119
                <SequencePoint vc="0" uspid="778" ordinal="1" offset="4" sl="130" sc="0" el="130" ec="0" />
2120
                <SequencePoint vc="0" uspid="779" ordinal="2" offset="10" sl="131" sc="0" el="131" ec="0" />
2121
                <SequencePoint vc="0" uspid="780" ordinal="3" offset="16" sl="132" sc="0" el="132" ec="0" />
2122
                <SequencePoint vc="0" uspid="781" ordinal="4" offset="21" sl="125" sc="0" el="125" ec="0" />
2123
                <SequencePoint vc="0" uspid="782" ordinal="5" offset="25" sl="134" sc="0" el="134" ec="0" />
2124
              </SequencePoints>
2125
              <BranchPoints>
2126
                <BranchPoint vc="0" uspid="783" ordinal="0" offset="2" path="0" />
2127
                <BranchPoint vc="0" uspid="784" ordinal="1" offset="2" path="1" />
2128
                <BranchPoint vc="0" uspid="785" ordinal="2" offset="8" path="0" />
2129
                <BranchPoint vc="0" uspid="786" ordinal="3" offset="8" path="1" />
2130
                <BranchPoint vc="0" uspid="787" ordinal="4" offset="23" path="0" />
2131
                <BranchPoint vc="0" uspid="788" ordinal="5" offset="23" path="1" />
2132
              </BranchPoints>
2133
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="777" ordinal="0" offset="0" sl="125" sc="0" el="125" ec="0" />
2134
            </Method>
2135
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2136
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2137
              <MetadataToken>100663409</MetadataToken>
2138
              <Name>System.ModuleHandle &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.ThisModule.Handle()</Name>
2139
              <FileRef uid="15" />
2140
              <SequencePoints>
2141
                <SequencePoint vc="7" uspid="789" ordinal="0" offset="0" sl="145" sc="0" el="145" ec="0" />
2142
              </SequencePoints>
2143
              <BranchPoints />
2144
              <MethodPoint xsi:type="SequencePoint" vc="7" uspid="789" ordinal="0" offset="0" sl="145" sc="0" el="145" ec="0" />
2145
            </Method>
2146
            <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="85.71" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2147
              <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="7" visitedBranchPoints="6" sequenceCoverage="100" branchCoverage="85.71" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
2148
              <MetadataToken>100663410</MetadataToken>
2149
              <Name>System.Void &lt;Module&gt;::_initterm_m(method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() modopt(System.Runtime.CompilerServices.IsConst)*,method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
2150
              <FileRef uid="15" />
2151
              <SequencePoints>
2152
                <SequencePoint vc="3" uspid="790" ordinal="0" offset="0" sl="205" sc="0" el="205" ec="0" />
2153
                <SequencePoint vc="10" uspid="791" ordinal="1" offset="4" sl="216" sc="0" el="216" ec="0" />
2154
                <SequencePoint vc="7" uspid="792" ordinal="2" offset="10" sl="218" sc="0" el="218" ec="0" />
2155
                <SequencePoint vc="7" uspid="793" ordinal="3" offset="16" sl="219" sc="0" el="219" ec="0" />
2156
                <SequencePoint vc="10" uspid="794" ordinal="4" offset="22" sl="221" sc="0" el="221" ec="0" />
2157
                <SequencePoint vc="10" uspid="795" ordinal="5" offset="27" sl="205" sc="0" el="205" ec="0" />
2158
                <SequencePoint vc="3" uspid="796" ordinal="6" offset="31" sl="223" sc="0" el="223" ec="0" />
2159
              </SequencePoints>
2160
              <BranchPoints>
2161
                <BranchPoint vc="3" uspid="797" ordinal="0" offset="2" path="0" />
2162
                <BranchPoint vc="0" uspid="798" ordinal="1" offset="2" path="1" />
2163
                <BranchPoint vc="7" uspid="799" ordinal="2" offset="8" path="0" />
2164
                <BranchPoint vc="3" uspid="800" ordinal="3" offset="8" path="1" />
2165
                <BranchPoint vc="3" uspid="801" ordinal="4" offset="29" path="0" />
2166
                <BranchPoint vc="7" uspid="802" ordinal="5" offset="29" path="1" />
2167
              </BranchPoints>
2168
              <MethodPoint xsi:type="SequencePoint" vc="3" uspid="790" ordinal="0" offset="0" sl="205" sc="0" el="205" ec="0" />
2169
            </Method>
2170
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2171
              <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2172
              <MetadataToken>100663411</MetadataToken>
2173
              <Name>method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() &lt;Module&gt;::&lt;CrtImplementationDetails&gt;.ThisModule.ResolveMethod&lt;void const * __clrcall(void)&gt;(method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *())</Name>
2174
              <FileRef uid="15" />
2175
              <SequencePoints>
2176
                <SequencePoint vc="7" uspid="803" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
2177
              </SequencePoints>
2178
              <BranchPoints />
2179
              <MethodPoint xsi:type="SequencePoint" vc="7" uspid="803" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
2180
            </Method>
2181
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2182
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2183
              <MetadataToken>100663412</MetadataToken>
2184
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.locale.facet._Incref(std.locale/facet* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2185
              <SequencePoints />
2186
              <BranchPoints />
2187
              <MethodPoint vc="0" uspid="804" ordinal="0" offset="0" />
2188
            </Method>
2189
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2190
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2191
              <MetadataToken>100663413</MetadataToken>
2192
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.good(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2193
              <SequencePoints />
2194
              <BranchPoints />
2195
              <MethodPoint vc="0" uspid="805" ordinal="0" offset="0" />
2196
            </Method>
2197
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2198
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2199
              <MetadataToken>100663414</MetadataToken>
2200
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.flags(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2201
              <SequencePoints />
2202
              <BranchPoints />
2203
              <MethodPoint vc="0" uspid="806" ordinal="0" offset="0" />
2204
            </Method>
2205
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2206
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2207
              <MetadataToken>100663415</MetadataToken>
2208
              <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.width(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2209
              <SequencePoints />
2210
              <BranchPoints />
2211
              <MethodPoint vc="0" uspid="807" ordinal="0" offset="0" />
2212
            </Method>
2213
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2214
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2215
              <MetadataToken>100663416</MetadataToken>
2216
              <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.ios_base.width(std.ios_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int64)</Name>
2217
              <SequencePoints />
2218
              <BranchPoints />
2219
              <MethodPoint vc="0" uspid="808" ordinal="0" offset="0" />
2220
            </Method>
2221
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2222
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2223
              <MetadataToken>100663417</MetadataToken>
2224
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt;.setstate(std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Boolean)</Name>
2225
              <SequencePoints />
2226
              <BranchPoints />
2227
              <MethodPoint vc="0" uspid="809" ordinal="0" offset="0" />
2228
            </Method>
2229
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2230
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2231
              <MetadataToken>100663418</MetadataToken>
2232
              <Name>std.basic_streambuf&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt;.rdbuf(std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2233
              <SequencePoints />
2234
              <BranchPoints />
2235
              <MethodPoint vc="0" uspid="810" ordinal="0" offset="0" />
2236
            </Method>
2237
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2238
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2239
              <MetadataToken>100663419</MetadataToken>
2240
              <Name>std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;.flush(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2241
              <SequencePoints />
2242
              <BranchPoints />
2243
              <MethodPoint vc="0" uspid="811" ordinal="0" offset="0" />
2244
            </Method>
2245
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2246
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2247
              <MetadataToken>100663420</MetadataToken>
2248
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_streambuf&lt;char,std::char_traits&lt;char&gt; &gt;.sputc(std.basic_streambuf&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte))</Name>
2249
              <SequencePoints />
2250
              <BranchPoints />
2251
              <MethodPoint vc="0" uspid="812" ordinal="0" offset="0" />
2252
            </Method>
2253
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2254
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2255
              <MetadataToken>100663421</MetadataToken>
2256
              <Name>std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt;.tie(std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2257
              <SequencePoints />
2258
              <BranchPoints />
2259
              <MethodPoint vc="0" uspid="813" ordinal="0" offset="0" />
2260
            </Method>
2261
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2262
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2263
              <MetadataToken>100663422</MetadataToken>
2264
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;._Osfx(std.basic_ostream&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2265
              <SequencePoints />
2266
              <BranchPoints />
2267
              <MethodPoint vc="0" uspid="814" ordinal="0" offset="0" />
2268
            </Method>
2269
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2270
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2271
              <MetadataToken>100663423</MetadataToken>
2272
              <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_streambuf&lt;char,std::char_traits&lt;char&gt; &gt;.sputn(std.basic_streambuf&lt;char,std::char_traits&lt;char&gt; &gt;* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*,System.Int64)</Name>
2273
              <SequencePoints />
2274
              <BranchPoints />
2275
              <MethodPoint vc="0" uspid="815" ordinal="0" offset="0" />
2276
            </Method>
2277
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2278
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2279
              <MetadataToken>100663424</MetadataToken>
2280
              <Name>System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt;.fill(std.basic_ios&lt;char,std::char_traits&lt;char&gt; &gt; modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2281
              <SequencePoints />
2282
              <BranchPoints />
2283
              <MethodPoint vc="0" uspid="816" ordinal="0" offset="0" />
2284
            </Method>
2285
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2286
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2287
              <MetadataToken>100663425</MetadataToken>
2288
              <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std.uncaught_exception()</Name>
2289
              <SequencePoints />
2290
              <BranchPoints />
2291
              <MethodPoint vc="0" uspid="817" ordinal="0" offset="0" />
2292
            </Method>
2293
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2294
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2295
              <MetadataToken>100663426</MetadataToken>
2296
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::Calc.mul(Calc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Int32)</Name>
2297
              <SequencePoints />
2298
              <BranchPoints />
2299
              <MethodPoint vc="0" uspid="818" ordinal="0" offset="0" />
2300
            </Method>
2301
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2302
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2303
              <MetadataToken>100663427</MetadataToken>
2304
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::Calc.sum(Calc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Int32)</Name>
2305
              <SequencePoints />
2306
              <BranchPoints />
2307
              <MethodPoint vc="0" uspid="819" ordinal="0" offset="0" />
2308
            </Method>
2309
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2310
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2311
              <MetadataToken>100663428</MetadataToken>
2312
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__CxxUnregisterExceptionObject(System.Void*,System.Int32)</Name>
2313
              <SequencePoints />
2314
              <BranchPoints />
2315
              <MethodPoint vc="0" uspid="820" ordinal="0" offset="0" />
2316
            </Method>
2317
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2318
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2319
              <MetadataToken>100663429</MetadataToken>
2320
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__CxxQueryExceptionSize()</Name>
2321
              <SequencePoints />
2322
              <BranchPoints />
2323
              <MethodPoint vc="0" uspid="821" ordinal="0" offset="0" />
2324
            </Method>
2325
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2326
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2327
              <MetadataToken>100663430</MetadataToken>
2328
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__CxxDetectRethrow(System.Void*)</Name>
2329
              <SequencePoints />
2330
              <BranchPoints />
2331
              <MethodPoint vc="0" uspid="822" ordinal="0" offset="0" />
2332
            </Method>
2333
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2334
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2335
              <MetadataToken>100663431</MetadataToken>
2336
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__CxxRegisterExceptionObject(System.Void*,System.Void*)</Name>
2337
              <SequencePoints />
2338
              <BranchPoints />
2339
              <MethodPoint vc="0" uspid="823" ordinal="0" offset="0" />
2340
            </Method>
2341
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2342
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2343
              <MetadataToken>100663432</MetadataToken>
2344
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__CxxExceptionFilter(System.Void*,System.Void*,System.Int32,System.Void*)</Name>
2345
              <SequencePoints />
2346
              <BranchPoints />
2347
              <MethodPoint vc="0" uspid="824" ordinal="0" offset="0" />
2348
            </Method>
2349
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2350
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2351
              <MetadataToken>100663433</MetadataToken>
2352
              <Name>std.exception* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.exception.{ctor}(std.exception* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.exception modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
2353
              <SequencePoints />
2354
              <BranchPoints />
2355
              <MethodPoint vc="0" uspid="825" ordinal="0" offset="0" />
2356
            </Method>
2357
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2358
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2359
              <MetadataToken>100663434</MetadataToken>
2360
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::std._Debug_message(System.Char modopt(System.Runtime.CompilerServices.IsConst)*,System.Char modopt(System.Runtime.CompilerServices.IsConst)*,System.UInt32)</Name>
2361
              <SequencePoints />
2362
              <BranchPoints />
2363
              <MethodPoint vc="0" uspid="826" ordinal="0" offset="0" />
2364
            </Method>
2365
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2366
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2367
              <MetadataToken>100663435</MetadataToken>
2368
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Lockit.{dtor}(std._Lockit* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2369
              <SequencePoints />
2370
              <BranchPoints />
2371
              <MethodPoint vc="0" uspid="827" ordinal="0" offset="0" />
2372
            </Method>
2373
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2374
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2375
              <MetadataToken>100663436</MetadataToken>
2376
              <Name>std._Lockit* modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std._Lockit.{ctor}(std._Lockit* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32)</Name>
2377
              <SequencePoints />
2378
              <BranchPoints />
2379
              <MethodPoint vc="0" uspid="828" ordinal="0" offset="0" />
2380
            </Method>
2381
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2382
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2383
              <MetadataToken>100663437</MetadataToken>
2384
              <Name>System.UInt32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::strlen(System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
2385
              <SequencePoints />
2386
              <BranchPoints />
2387
              <MethodPoint vc="0" uspid="829" ordinal="0" offset="0" />
2388
            </Method>
2389
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2390
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2391
              <MetadataToken>100663438</MetadataToken>
2392
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::delete[](System.Void*)</Name>
2393
              <SequencePoints />
2394
              <BranchPoints />
2395
              <MethodPoint vc="0" uspid="830" ordinal="0" offset="0" />
2396
            </Method>
2397
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2398
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2399
              <MetadataToken>100663439</MetadataToken>
2400
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__ExceptionPtrCopy(System.Void*,System.Void modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
2401
              <SequencePoints />
2402
              <BranchPoints />
2403
              <MethodPoint vc="0" uspid="831" ordinal="0" offset="0" />
2404
            </Method>
2405
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2406
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2407
              <MetadataToken>100663440</MetadataToken>
2408
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::delete(System.Void*)</Name>
2409
              <SequencePoints />
2410
              <BranchPoints />
2411
              <MethodPoint vc="0" uspid="832" ordinal="0" offset="0" />
2412
            </Method>
2413
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2414
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2415
              <MetadataToken>100663441</MetadataToken>
2416
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) &lt;Module&gt;::std.exception.{dtor}(std.exception* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
2417
              <SequencePoints />
2418
              <BranchPoints />
2419
              <MethodPoint vc="0" uspid="833" ordinal="0" offset="0" />
2420
            </Method>
2421
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2422
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2423
              <MetadataToken>100663442</MetadataToken>
2424
              <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::_getFiberPtrId()</Name>
2425
              <SequencePoints />
2426
              <BranchPoints />
2427
              <MethodPoint vc="0" uspid="834" ordinal="0" offset="0" />
2428
            </Method>
2429
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2430
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2431
              <MetadataToken>100663443</MetadataToken>
2432
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::_amsg_exit(System.Int32)</Name>
2433
              <SequencePoints />
2434
              <BranchPoints />
2435
              <MethodPoint vc="0" uspid="835" ordinal="0" offset="0" />
2436
            </Method>
2437
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2438
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2439
              <MetadataToken>100663444</MetadataToken>
2440
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__security_init_cookie()</Name>
2441
              <SequencePoints />
2442
              <BranchPoints />
2443
              <MethodPoint vc="0" uspid="836" ordinal="0" offset="0" />
2444
            </Method>
2445
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2446
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2447
              <MetadataToken>100663445</MetadataToken>
2448
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvStdcall) &lt;Module&gt;::Sleep(System.UInt32 modopt(System.Runtime.CompilerServices.IsLong))</Name>
2449
              <SequencePoints />
2450
              <BranchPoints />
2451
              <MethodPoint vc="0" uspid="837" ordinal="0" offset="0" />
2452
            </Method>
2453
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2454
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2455
              <MetadataToken>100663446</MetadataToken>
2456
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::_cexit()</Name>
2457
              <SequencePoints />
2458
              <BranchPoints />
2459
              <MethodPoint vc="0" uspid="838" ordinal="0" offset="0" />
2460
            </Method>
2461
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2462
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2463
              <MetadataToken>100663447</MetadataToken>
2464
              <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::__FrameUnwindFilter(_EXCEPTION_POINTERS*)</Name>
2465
              <SequencePoints />
2466
              <BranchPoints />
2467
              <MethodPoint vc="0" uspid="839" ordinal="0" offset="0" />
2468
            </Method>
2469
            <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
2470
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2471
              <MetadataToken>100663448</MetadataToken>
2472
              <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) &lt;Module&gt;::terminate()</Name>
2473
              <SequencePoints />
2474
              <BranchPoints />
2475
              <MethodPoint vc="0" uspid="840" ordinal="0" offset="0" />
2476
            </Method>
2477
          </Methods>
2478
        </Class>
2479
        <Class>
2480
          <Summary numSequencePoints="10" visitedSequencePoints="8" numBranchPoints="7" visitedBranchPoints="5" sequenceCoverage="80" branchCoverage="71.43" maxCyclomaticComplexity="3" minCyclomaticComplexity="1" />
2481
          <FullName>CalcTest.CalcTest</FullName>
2482
          <Methods>
2483
            <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="66.67" branchCoverage="60" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2484
              <Summary numSequencePoints="6" visitedSequencePoints="4" numBranchPoints="5" visitedBranchPoints="3" sequenceCoverage="66.67" branchCoverage="60" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
2485
              <MetadataToken>100663449</MetadataToken>
2486
              <Name>System.Void CalcTest.CalcTest::TestMethod1()</Name>
2487
              <FileRef uid="16" />
2488
              <SequencePoints>
2489
                <SequencePoint vc="1" uspid="841" ordinal="0" offset="0" sl="29" sc="0" el="29" ec="0" />
2490
                <SequencePoint vc="1" uspid="842" ordinal="1" offset="10" sl="30" sc="0" el="30" ec="0" />
2491
                <SequencePoint vc="1" uspid="843" ordinal="2" offset="20" sl="32" sc="0" el="32" ec="0" />
2492
                <SequencePoint vc="0" uspid="844" ordinal="3" offset="28" sl="33" sc="0" el="33" ec="0" />
2493
                <SequencePoint vc="1" uspid="845" ordinal="4" offset="45" sl="36" sc="0" el="36" ec="0" />
2494
                <SequencePoint vc="0" uspid="846" ordinal="5" offset="60" sl="37" sc="0" el="37" ec="0" />
2495
              </SequencePoints>
2496
              <BranchPoints>
2497
                <BranchPoint vc="1" uspid="847" ordinal="0" offset="22" path="0" />
2498
                <BranchPoint vc="0" uspid="848" ordinal="1" offset="22" path="1" />
2499
                <BranchPoint vc="0" uspid="849" ordinal="2" offset="26" path="0" />
2500
                <BranchPoint vc="1" uspid="850" ordinal="3" offset="26" path="1" />
2501
              </BranchPoints>
2502
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="841" ordinal="0" offset="0" sl="29" sc="0" el="29" ec="0" />
2503
            </Method>
2504
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2505
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2506
              <MetadataToken>100663450</MetadataToken>
2507
              <Name>System.Void CalcTest.CalcTest::TestMethod2()</Name>
2508
              <FileRef uid="16" />
2509
              <SequencePoints>
2510
                <SequencePoint vc="1" uspid="851" ordinal="0" offset="0" sl="43" sc="0" el="43" ec="0" />
2511
                <SequencePoint vc="1" uspid="852" ordinal="1" offset="15" sl="44" sc="0" el="44" ec="0" />
2512
              </SequencePoints>
2513
              <BranchPoints />
2514
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="851" ordinal="0" offset="0" sl="43" sc="0" el="43" ec="0" />
2515
            </Method>
2516
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2517
              <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2518
              <MetadataToken>100663451</MetadataToken>
2519
              <Name>System.Void CalcTest.CalcTest::TestMethod3()</Name>
2520
              <FileRef uid="16" />
2521
              <SequencePoints>
2522
                <SequencePoint vc="1" uspid="853" ordinal="0" offset="0" sl="50" sc="0" el="50" ec="0" />
2523
                <SequencePoint vc="1" uspid="854" ordinal="1" offset="15" sl="51" sc="0" el="51" ec="0" />
2524
              </SequencePoints>
2525
              <BranchPoints />
2526
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="853" ordinal="0" offset="0" sl="50" sc="0" el="50" ec="0" />
2527
            </Method>
2528
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2529
              <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2530
              <MetadataToken>100663452</MetadataToken>
2531
              <Name>System.Void CalcTest.CalcTest::.ctor()</Name>
2532
              <SequencePoints />
2533
              <BranchPoints />
2534
              <MethodPoint vc="3" uspid="855" ordinal="0" offset="0" />
2535
            </Method>
2536
          </Methods>
2537
        </Class>
2538
        <Class>
2539
          <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2540
          <FullName>&lt;CrtImplementationDetails&gt;.Exception</FullName>
2541
          <Methods>
2542
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2543
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2544
              <MetadataToken>100663455</MetadataToken>
2545
              <Name>System.Void &lt;CrtImplementationDetails&gt;.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
2546
              <FileRef uid="9" />
2547
              <SequencePoints>
2548
                <SequencePoint vc="0" uspid="856" ordinal="0" offset="0" sl="104" sc="0" el="104" ec="0" />
2549
                <SequencePoint vc="0" uspid="857" ordinal="1" offset="8" sl="105" sc="0" el="105" ec="0" />
2550
              </SequencePoints>
2551
              <BranchPoints />
2552
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="856" ordinal="0" offset="0" sl="104" sc="0" el="104" ec="0" />
2553
            </Method>
2554
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2555
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2556
              <MetadataToken>100663456</MetadataToken>
2557
              <Name>System.Void &lt;CrtImplementationDetails&gt;.Exception::.ctor(System.String,System.Exception)</Name>
2558
              <FileRef uid="9" />
2559
              <SequencePoints>
2560
                <SequencePoint vc="0" uspid="858" ordinal="0" offset="0" sl="99" sc="0" el="99" ec="0" />
2561
                <SequencePoint vc="0" uspid="859" ordinal="1" offset="8" sl="100" sc="0" el="100" ec="0" />
2562
              </SequencePoints>
2563
              <BranchPoints />
2564
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="858" ordinal="0" offset="0" sl="99" sc="0" el="99" ec="0" />
2565
            </Method>
2566
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2567
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2568
              <MetadataToken>100663457</MetadataToken>
2569
              <Name>System.Void &lt;CrtImplementationDetails&gt;.Exception::.ctor(System.String)</Name>
2570
              <FileRef uid="9" />
2571
              <SequencePoints>
2572
                <SequencePoint vc="0" uspid="860" ordinal="0" offset="0" sl="94" sc="0" el="94" ec="0" />
2573
                <SequencePoint vc="0" uspid="861" ordinal="1" offset="7" sl="95" sc="0" el="95" ec="0" />
2574
              </SequencePoints>
2575
              <BranchPoints />
2576
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="860" ordinal="0" offset="0" sl="94" sc="0" el="94" ec="0" />
2577
            </Method>
2578
          </Methods>
2579
        </Class>
2580
        <Class>
2581
          <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2582
          <FullName>&lt;CrtImplementationDetails&gt;.ModuleLoadException</FullName>
2583
          <Methods>
2584
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2585
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2586
              <MetadataToken>100663458</MetadataToken>
2587
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
2588
              <FileRef uid="9" />
2589
              <SequencePoints>
2590
                <SequencePoint vc="0" uspid="862" ordinal="0" offset="0" sl="129" sc="0" el="129" ec="0" />
2591
                <SequencePoint vc="0" uspid="863" ordinal="1" offset="8" sl="130" sc="0" el="130" ec="0" />
2592
              </SequencePoints>
2593
              <BranchPoints />
2594
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="862" ordinal="0" offset="0" sl="129" sc="0" el="129" ec="0" />
2595
            </Method>
2596
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2597
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2598
              <MetadataToken>100663459</MetadataToken>
2599
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadException::.ctor(System.String,System.Exception)</Name>
2600
              <FileRef uid="9" />
2601
              <SequencePoints>
2602
                <SequencePoint vc="0" uspid="864" ordinal="0" offset="0" sl="121" sc="0" el="121" ec="0" />
2603
                <SequencePoint vc="0" uspid="865" ordinal="1" offset="8" sl="122" sc="0" el="122" ec="0" />
2604
              </SequencePoints>
2605
              <BranchPoints />
2606
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="864" ordinal="0" offset="0" sl="121" sc="0" el="121" ec="0" />
2607
            </Method>
2608
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2609
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2610
              <MetadataToken>100663460</MetadataToken>
2611
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadException::.ctor(System.String)</Name>
2612
              <FileRef uid="9" />
2613
              <SequencePoints>
2614
                <SequencePoint vc="0" uspid="866" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
2615
                <SequencePoint vc="0" uspid="867" ordinal="1" offset="7" sl="117" sc="0" el="117" ec="0" />
2616
              </SequencePoints>
2617
              <BranchPoints />
2618
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="866" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
2619
            </Method>
2620
          </Methods>
2621
        </Class>
2622
        <Class>
2623
          <Summary numSequencePoints="15" visitedSequencePoints="0" numBranchPoints="16" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="1" />
2624
          <FullName>&lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException</FullName>
2625
          <Methods>
2626
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="true" isSetter="false">
2627
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2628
              <MetadataToken>100663463</MetadataToken>
2629
              <Name>System.Exception &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::get_NestedException()</Name>
2630
              <FileRef uid="9" />
2631
              <SequencePoints>
2632
                <SequencePoint vc="0" uspid="868" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
2633
              </SequencePoints>
2634
              <BranchPoints />
2635
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="868" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
2636
            </Method>
2637
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="true">
2638
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2639
              <MetadataToken>100663464</MetadataToken>
2640
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::set_NestedException(System.Exception)</Name>
2641
              <FileRef uid="9" />
2642
              <SequencePoints>
2643
                <SequencePoint vc="0" uspid="869" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
2644
              </SequencePoints>
2645
              <BranchPoints />
2646
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="869" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
2647
            </Method>
2648
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2649
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2650
              <MetadataToken>100663461</MetadataToken>
2651
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
2652
              <FileRef uid="9" />
2653
              <SequencePoints>
2654
                <SequencePoint vc="0" uspid="870" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
2655
                <SequencePoint vc="0" uspid="871" ordinal="1" offset="8" sl="177" sc="0" el="177" ec="0" />
2656
                <SequencePoint vc="0" uspid="872" ordinal="2" offset="40" sl="178" sc="0" el="178" ec="0" />
2657
              </SequencePoints>
2658
              <BranchPoints />
2659
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="870" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
2660
            </Method>
2661
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2662
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2663
              <MetadataToken>100663462</MetadataToken>
2664
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::.ctor(System.String,System.Exception,System.Exception)</Name>
2665
              <FileRef uid="9" />
2666
              <SequencePoints>
2667
                <SequencePoint vc="0" uspid="873" ordinal="0" offset="0" sl="146" sc="0" el="146" ec="0" />
2668
                <SequencePoint vc="0" uspid="874" ordinal="1" offset="8" sl="147" sc="0" el="147" ec="0" />
2669
                <SequencePoint vc="0" uspid="875" ordinal="2" offset="15" sl="148" sc="0" el="148" ec="0" />
2670
              </SequencePoints>
2671
              <BranchPoints />
2672
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="873" ordinal="0" offset="0" sl="146" sc="0" el="146" ec="0" />
2673
            </Method>
2674
            <Method visited="false" cyclomaticComplexity="6" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2675
              <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="11" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="6" />
2676
              <MetadataToken>100663465</MetadataToken>
2677
              <Name>System.String &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::ToString()</Name>
2678
              <FileRef uid="9" />
2679
              <SequencePoints>
2680
                <SequencePoint vc="0" uspid="876" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
2681
                <SequencePoint vc="0" uspid="877" ordinal="1" offset="28" sl="155" sc="0" el="155" ec="0" />
2682
                <SequencePoint vc="0" uspid="878" ordinal="2" offset="56" sl="162" sc="0" el="162" ec="0" />
2683
                <SequencePoint vc="0" uspid="879" ordinal="3" offset="139" sl="163" sc="0" el="163" ec="0" />
2684
              </SequencePoints>
2685
              <BranchPoints>
2686
                <BranchPoint vc="0" uspid="880" ordinal="0" offset="6" path="0" />
2687
                <BranchPoint vc="0" uspid="881" ordinal="1" offset="6" path="1" />
2688
                <BranchPoint vc="0" uspid="882" ordinal="2" offset="34" path="0" />
2689
                <BranchPoint vc="0" uspid="883" ordinal="3" offset="34" path="1" />
2690
                <BranchPoint vc="0" uspid="884" ordinal="4" offset="78" path="0" />
2691
                <BranchPoint vc="0" uspid="885" ordinal="5" offset="78" path="1" />
2692
                <BranchPoint vc="0" uspid="886" ordinal="6" offset="103" path="0" />
2693
                <BranchPoint vc="0" uspid="887" ordinal="7" offset="103" path="1" />
2694
                <BranchPoint vc="0" uspid="888" ordinal="8" offset="123" path="0" />
2695
                <BranchPoint vc="0" uspid="889" ordinal="9" offset="123" path="1" />
2696
              </BranchPoints>
2697
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="876" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
2698
            </Method>
2699
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2700
              <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2701
              <MetadataToken>100663466</MetadataToken>
2702
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleLoadExceptionHandlerException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
2703
              <FileRef uid="9" />
2704
              <SequencePoints>
2705
                <SequencePoint vc="0" uspid="890" ordinal="0" offset="0" sl="169" sc="0" el="169" ec="0" />
2706
                <SequencePoint vc="0" uspid="891" ordinal="1" offset="8" sl="170" sc="0" el="170" ec="0" />
2707
                <SequencePoint vc="0" uspid="892" ordinal="2" offset="35" sl="171" sc="0" el="171" ec="0" />
2708
              </SequencePoints>
2709
              <BranchPoints />
2710
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="890" ordinal="0" offset="0" sl="169" sc="0" el="169" ec="0" />
2711
            </Method>
2712
          </Methods>
2713
        </Class>
2714
        <Class>
2715
          <Summary numSequencePoints="31" visitedSequencePoints="31" numBranchPoints="12" visitedBranchPoints="9" sequenceCoverage="100" branchCoverage="75" maxCyclomaticComplexity="4" minCyclomaticComplexity="1" />
2716
          <FullName>&lt;CrtImplementationDetails&gt;.ModuleUninitializer</FullName>
2717
          <Methods>
2718
            <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2719
              <Summary numSequencePoints="11" visitedSequencePoints="11" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
2720
              <MetadataToken>100663467</MetadataToken>
2721
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleUninitializer::AddHandler(System.EventHandler)</Name>
2722
              <FileRef uid="9" />
2723
              <SequencePoints>
2724
                <SequencePoint vc="1" uspid="893" ordinal="0" offset="0" sl="224" sc="0" el="224" ec="0" />
2725
                <SequencePoint vc="1" uspid="894" ordinal="1" offset="2" sl="225" sc="0" el="225" ec="0" />
2726
                <SequencePoint vc="1" uspid="895" ordinal="2" offset="7" sl="228" sc="0" el="228" ec="0" />
2727
                <SequencePoint vc="1" uspid="896" ordinal="3" offset="12" sl="229" sc="0" el="229" ec="0" />
2728
                <SequencePoint vc="1" uspid="897" ordinal="4" offset="24" sl="231" sc="0" el="231" ec="0" />
2729
                <SequencePoint vc="1" uspid="898" ordinal="5" offset="30" sl="232" sc="0" el="232" ec="0" />
2730
                <SequencePoint vc="1" uspid="899" ordinal="6" offset="37" sl="235" sc="0" el="235" ec="0" />
2731
                <SequencePoint vc="1" uspid="900" ordinal="7" offset="39" sl="237" sc="0" el="237" ec="0" />
2732
                <SequencePoint vc="1" uspid="901" ordinal="8" offset="42" sl="239" sc="0" el="239" ec="0" />
2733
                <SequencePoint vc="1" uspid="902" ordinal="9" offset="52" sl="241" sc="0" el="241" ec="0" />
2734
                <SequencePoint vc="1" uspid="903" ordinal="10" offset="53" sl="243" sc="0" el="243" ec="0" />
2735
              </SequencePoints>
2736
              <BranchPoints>
2737
                <BranchPoint vc="1" uspid="904" ordinal="0" offset="40" path="0" />
2738
                <BranchPoint vc="0" uspid="905" ordinal="1" offset="40" path="1" />
2739
              </BranchPoints>
2740
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="893" ordinal="0" offset="0" sl="224" sc="0" el="224" ec="0" />
2741
            </Method>
2742
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="true" isGetter="false" isSetter="false">
2743
              <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2744
              <MetadataToken>100663468</MetadataToken>
2745
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleUninitializer::.cctor()</Name>
2746
              <FileRef uid="9" />
2747
              <SequencePoints>
2748
                <SequencePoint vc="1" uspid="906" ordinal="0" offset="0" sl="212" sc="0" el="212" ec="0" />
2749
                <SequencePoint vc="1" uspid="907" ordinal="1" offset="10" sl="217" sc="0" el="217" ec="0" />
2750
                <SequencePoint vc="1" uspid="908" ordinal="2" offset="20" sl="247" sc="0" el="247" ec="0" />
2751
              </SequencePoints>
2752
              <BranchPoints />
2753
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="906" ordinal="0" offset="0" sl="212" sc="0" el="212" ec="0" />
2754
            </Method>
2755
            <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2756
              <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2757
              <MetadataToken>100663469</MetadataToken>
2758
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleUninitializer::.ctor()</Name>
2759
              <FileRef uid="9" />
2760
              <SequencePoints>
2761
                <SequencePoint vc="1" uspid="909" ordinal="0" offset="0" sl="250" sc="0" el="250" ec="0" />
2762
                <SequencePoint vc="1" uspid="910" ordinal="1" offset="6" sl="255" sc="0" el="255" ec="0" />
2763
                <SequencePoint vc="1" uspid="911" ordinal="2" offset="19" sl="256" sc="0" el="256" ec="0" />
2764
                <SequencePoint vc="1" uspid="912" ordinal="3" offset="30" sl="257" sc="0" el="257" ec="0" />
2765
                <SequencePoint vc="1" uspid="913" ordinal="4" offset="41" sl="258" sc="0" el="258" ec="0" />
2766
              </SequencePoints>
2767
              <BranchPoints />
2768
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="909" ordinal="0" offset="0" sl="250" sc="0" el="250" ec="0" />
2769
            </Method>
2770
            <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="71.43" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
2771
              <Summary numSequencePoints="12" visitedSequencePoints="12" numBranchPoints="7" visitedBranchPoints="5" sequenceCoverage="100" branchCoverage="71.43" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
2772
              <MetadataToken>100663470</MetadataToken>
2773
              <Name>System.Void &lt;CrtImplementationDetails&gt;.ModuleUninitializer::SingletonDomainUnload(System.Object,System.EventArgs)</Name>
2774
              <FileRef uid="9" />
2775
              <SequencePoints>
2776
                <SequencePoint vc="1" uspid="914" ordinal="0" offset="0" sl="265" sc="0" el="265" ec="0" />
2777
                <SequencePoint vc="1" uspid="915" ordinal="1" offset="2" sl="266" sc="0" el="266" ec="0" />
2778
                <SequencePoint vc="1" uspid="916" ordinal="2" offset="7" sl="269" sc="0" el="269" ec="0" />
2779
                <SequencePoint vc="1" uspid="917" ordinal="3" offset="12" sl="270" sc="0" el="270" ec="0" />
2780
                <SequencePoint vc="1" uspid="918" ordinal="4" offset="24" sl="273" sc="0" el="273" ec="0" />
2781
                <SequencePoint vc="1" uspid="919" ordinal="5" offset="50" sl="275" sc="0" el="275" ec="0" />
2782
                <SequencePoint vc="1" uspid="920" ordinal="6" offset="57" sl="273" sc="0" el="273" ec="0" />
2783
                <SequencePoint vc="1" uspid="921" ordinal="7" offset="80" sl="279" sc="0" el="279" ec="0" />
2784
                <SequencePoint vc="1" uspid="922" ordinal="8" offset="82" sl="281" sc="0" el="281" ec="0" />
2785
                <SequencePoint vc="1" uspid="923" ordinal="9" offset="85" sl="283" sc="0" el="283" ec="0" />
2786
                <SequencePoint vc="1" uspid="924" ordinal="10" offset="95" sl="285" sc="0" el="285" ec="0" />
2787
                <SequencePoint vc="1" uspid="925" ordinal="11" offset="96" sl="287" sc="0" el="287" ec="0" />
2788
              </SequencePoints>
2789
              <BranchPoints>
2790
                <BranchPoint vc="1" uspid="926" ordinal="0" offset="37" path="0" />
2791
                <BranchPoint vc="1" uspid="927" ordinal="1" offset="37" path="1" />
2792
                <BranchPoint vc="0" uspid="928" ordinal="2" offset="71" path="0" />
2793
                <BranchPoint vc="1" uspid="929" ordinal="3" offset="71" path="1" />
2794
                <BranchPoint vc="1" uspid="930" ordinal="4" offset="83" path="0" />
2795
                <BranchPoint vc="0" uspid="931" ordinal="5" offset="83" path="1" />
2796
              </BranchPoints>
2797
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="914" ordinal="0" offset="0" sl="265" sc="0" el="265" ec="0" />
2798
            </Method>
2799
          </Methods>
2800
        </Class>
2801
        <Class>
2802
          <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="2" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2803
          <FullName>&lt;CrtImplementationDetails&gt;.OpenMPWithMultipleAppdomainsException</FullName>
2804
          <Methods>
2805
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2806
              <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2807
              <MetadataToken>100663471</MetadataToken>
2808
              <Name>System.Void &lt;CrtImplementationDetails&gt;.OpenMPWithMultipleAppdomainsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
2809
              <FileRef uid="9" />
2810
              <SequencePoints>
2811
                <SequencePoint vc="0" uspid="932" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
2812
                <SequencePoint vc="0" uspid="933" ordinal="1" offset="8" sl="425" sc="0" el="425" ec="0" />
2813
              </SequencePoints>
2814
              <BranchPoints />
2815
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="932" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
2816
            </Method>
2817
            <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
2818
              <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
2819
              <MetadataToken>100663472</MetadataToken>
2820
              <Name>System.Void &lt;CrtImplementationDetails&gt;.OpenMPWithMultipleAppdomainsException::.ctor()</Name>
2821
              <FileRef uid="9" />
2822
              <SequencePoints>
2823
                <SequencePoint vc="0" uspid="934" ordinal="0" offset="0" sl="420" sc="0" el="420" ec="0" />
2824
              </SequencePoints>
2825
              <BranchPoints />
2826
              <MethodPoint xsi:type="SequencePoint" vc="0" uspid="934" ordinal="0" offset="0" sl="420" sc="0" el="420" ec="0" />
2827
            </Method>
2828
          </Methods>
2829
        </Class>
2830
      </Classes>
2831
    </Module>
2832
    <Module skippedDueTo="Filter" hash="1A-90-04-55-09-EC-E5-B9-0D-3F-26-25-62-AB-3F-B5-8F-9B-26-B3">
2833
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ControllerObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ControllerObject.dll</FullName>
2834
      <ModuleName>Microsoft.VisualStudio.QualityTools.ControllerObject</ModuleName>
2835
      <Classes />
2836
    </Module>
2837
    <Module skippedDueTo="Filter" hash="F0-EE-63-2A-D5-7A-B7-F6-E9-77-28-25-20-EF-5A-4A-83-A6-F3-B7">
2838
      <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.TeamSystem.Licensing.dll</FullName>
2839
      <ModuleName>Microsoft.VisualStudio.TeamSystem.Licensing</ModuleName>
2840
      <Classes />
2841
    </Module>
2842
    <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
2843
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
2844
      <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
2845
      <Classes />
2846
    </Module>
2847
    <Module skippedDueTo="Filter" hash="F0-EE-63-2A-D5-7A-B7-F6-E9-77-28-25-20-EF-5A-4A-83-A6-F3-B7">
2848
      <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.TeamSystem.Licensing.dll</FullName>
2849
      <ModuleName>Microsoft.VisualStudio.TeamSystem.Licensing</ModuleName>
2850
      <Classes />
2851
    </Module>
2852
    <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
2853
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
2854
      <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
2855
      <Classes />
2856
    </Module>
2857
    <Module skippedDueTo="Filter" hash="F0-AC-29-46-F9-CE-FF-96-AE-EE-4F-C0-DE-9E-59-D3-7E-1B-ED-08">
2858
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</FullName>
2859
      <ModuleName>System.Core</ModuleName>
2860
      <Classes />
2861
    </Module>
2862
    <Module skippedDueTo="Filter" hash="83-92-A6-61-AB-24-2D-60-6E-B3-F0-4C-6A-F3-38-AF-4E-6E-B8-30">
2863
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</FullName>
2864
      <ModuleName>System.Data</ModuleName>
2865
      <Classes />
2866
    </Module>
2867
    <Module skippedDueTo="Filter" hash="8F-46-4B-BE-28-40-30-A2-E6-52-58-36-C3-F3-E3-75-03-AF-F4-FC">
2868
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</FullName>
2869
      <ModuleName>System</ModuleName>
2870
      <Classes />
2871
    </Module>
2872
    <Module skippedDueTo="Filter" hash="2E-28-A3-E7-4F-05-75-91-3B-B4-A6-B7-58-E7-27-B0-EF-F7-52-11">
2873
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</FullName>
2874
      <ModuleName>System.Xml</ModuleName>
2875
      <Classes />
2876
    </Module>
2877
    <Module skippedDueTo="Filter" hash="44-FE-71-B9-06-7B-6F-13-AD-D8-73-48-5E-49-DB-9F-08-03-E6-D7">
2878
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll</FullName>
2879
      <ModuleName>Microsoft.VisualC</ModuleName>
2880
      <Classes />
2881
    </Module>
2882
    <Module skippedDueTo="Filter" hash="4A-2E-2F-B0-09-7B-BA-3A-4D-7B-5C-2A-00-CD-52-75-5D-48-E0-0D">
2883
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.AgentProcessManager\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll</FullName>
2884
      <ModuleName>Microsoft.VisualStudio.QualityTools.AgentProcessManager</ModuleName>
2885
      <Classes />
2886
    </Module>
2887
    <Module skippedDueTo="Filter" hash="B9-C1-7F-83-78-82-C0-E7-32-19-D1-C2-7E-00-4B-A3-D3-83-00-53">
2888
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll</FullName>
2889
      <ModuleName>Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject</ModuleName>
2890
      <Classes />
2891
    </Module>
2892
    <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
2893
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
2894
      <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
2895
      <Classes />
2896
    </Module>
2897
    <Module skippedDueTo="Filter" hash="0F-07-95-F4-06-60-B0-91-D8-2F-F7-51-A7-F3-27-5B-67-A8-E7-2A">
2898
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ExecutionCommon\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll</FullName>
2899
      <ModuleName>Microsoft.VisualStudio.QualityTools.ExecutionCommon</ModuleName>
2900
      <Classes />
2901
    </Module>
2902
    <Module skippedDueTo="Filter" hash="EF-C2-B4-43-29-1A-CA-59-51-9D-FA-BC-B6-EA-1C-30-BE-6F-53-76">
2903
      <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.AgentObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.AgentObject.dll</FullName>
2904
      <ModuleName>Microsoft.VisualStudio.QualityTools.AgentObject</ModuleName>
2905
      <Classes />
2906
    </Module>
2907
    <Module skippedDueTo="Filter" hash="1D-0B-A5-FA-5F-CA-17-86-22-D9-E4-DE-E5-10-21-8E-61-A8-70-7D">
2908
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll</FullName>
2909
      <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter</ModuleName>
2910
      <Classes />
2911
    </Module>
2912
    <Module skippedDueTo="Filter" hash="44-FE-71-B9-06-7B-6F-13-AD-D8-73-48-5E-49-DB-9F-08-03-E6-D7">
2913
      <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll</FullName>
2914
      <ModuleName>Microsoft.VisualC</ModuleName>
2915
      <Classes />
2916
    </Module>
2917
  </Modules>
2918
</CoverageSession>