forked from NorthwoodsSoftware/GoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicense.html
2241 lines (1961 loc) · 122 KB
/
license.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 15">
<meta name=Originator content="Microsoft Word 15">
<title>Software License for Northwoods Software</title>
<!-- Copyright 1998-2019 by Northwoods Software Corporation. -->
<link rel=File-List href="SoftwareLicenseAgreement_files/filelist.xml">
<link rel=themeData href="SoftwareLicenseAgreement_files/themedata.thmx">
<link rel=colorSchemeMapping
href="SoftwareLicenseAgreement_files/colorschememapping.xml">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:-536870145 1107305727 0 0 415 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
h1
{mso-style-priority:99;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-link:"Heading 1 Char";
mso-style-next:Normal;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-outline-level:1;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-font-kerning:0pt;
font-weight:normal;}
h2
{mso-style-priority:99;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-link:"Heading 2 Char";
mso-style-next:Normal;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-outline-level:2;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
font-weight:normal;}
h3
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-next:Normal;
margin-top:12.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
mso-pagination:none;
page-break-after:avoid;
mso-outline-level:3;
mso-layout-grid-align:none;
text-autospace:none;
font-size:13.0pt;
font-family:"Arial",sans-serif;}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{mso-style-unhide:no;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
tab-stops:center 3.0in right 6.0in;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{mso-style-unhide:no;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
tab-stops:center 3.0in right 6.0in;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
p.MsoEnvelopeAddress, li.MsoEnvelopeAddress, div.MsoEnvelopeAddress
{mso-style-unhide:no;
margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:2.0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
mso-element:frame;
mso-element-frame-width:5.5in;
mso-element-frame-height:99.0pt;
mso-element-frame-hspace:9.0pt;
mso-element-wrap:auto;
mso-element-anchor-horizontal:page;
mso-element-left:center;
mso-element-top:bottom;
mso-height-rule:exactly;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:Arial;}
p.MsoEnvelopeReturn, li.MsoEnvelopeReturn, div.MsoEnvelopeReturn
{mso-style-unhide:no;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
font-size:10.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:Arial;}
p.MsoList, li.MsoList, div.MsoList
{mso-style-noshow:yes;
mso-style-unhide:no;
margin-top:3.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
line-height:12.0pt;
mso-pagination:widow-orphan;
tab-stops:list 70.2pt;
font-size:9.0pt;
mso-bidi-font-size:10.0pt;
font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";}
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
{mso-style-priority:99;
mso-style-link:"Body Text Char";
margin-top:0in;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
p.MsoBodyTextIndent2, li.MsoBodyTextIndent2, div.MsoBodyTextIndent2
{mso-style-unhide:no;
mso-style-link:"Body Text Indent 2 Char";
margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:1.0in;
margin-bottom:.0001pt;
text-indent:-.5in;
mso-pagination:widow-orphan;
font-size:12.0pt;
mso-bidi-font-size:10.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
mso-style-parent:"";
color:blue;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
color:purple;
text-decoration:underline;
text-underline:single;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-link:"Balloon Text Char";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-fareast-font-family:"Times New Roman";}
p.TTG1, li.TTG1, div.TTG1
{mso-style-name:TTG1;
mso-style-unhide:no;
margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:1.0in;
margin-bottom:.0001pt;
text-align:justify;
text-indent:-1.0in;
mso-pagination:none;
mso-layout-grid-align:none;
text-autospace:none;
font-size:10.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Tahoma",sans-serif;
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";
text-decoration:underline;
text-underline:single;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-parent:"";
mso-style-link:"Heading 1";
mso-ansi-font-size:12.0pt;
mso-bidi-font-size:12.0pt;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-parent:"";
mso-style-link:"Heading 2";
mso-ansi-font-size:12.0pt;
mso-bidi-font-size:12.0pt;}
p.Style44, li.Style44, div.Style44
{mso-style-name:"Style 44";
mso-style-unhide:no;
margin-top:0in;
margin-right:0in;
margin-bottom:12.0pt;
margin-left:0in;
text-align:justify;
mso-pagination:widow-orphan;
font-size:9.0pt;
mso-bidi-font-size:11.0pt;
font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";}
p.Style45, li.Style45, div.Style45
{mso-style-name:"Style 45";
mso-style-unhide:no;
margin-top:0in;
margin-right:0in;
margin-bottom:12.0pt;
margin-left:.5in;
text-align:justify;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";}
span.f11
{mso-style-name:f11;
mso-style-unhide:no;
mso-style-parent:"";
mso-ansi-font-size:12.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Arial",sans-serif;
mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;
mso-bidi-font-family:Arial;
color:black;}
span.BalloonTextChar
{mso-style-name:"Balloon Text Char";
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-parent:"";
mso-style-link:"Balloon Text";
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-ascii-font-family:Tahoma;
mso-hansi-font-family:Tahoma;
mso-bidi-font-family:Tahoma;}
span.BodyTextIndent2Char
{mso-style-name:"Body Text Indent 2 Char";
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-parent:"";
mso-style-link:"Body Text Indent 2";
mso-ansi-font-size:12.0pt;}
span.CharChar5
{mso-style-name:" Char Char5";
mso-style-unhide:no;
mso-style-parent:"";
mso-ansi-font-size:12.0pt;
mso-bidi-font-size:12.0pt;}
span.BodyTextChar
{mso-style-name:"Body Text Char";
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-parent:"";
mso-style-link:"Body Text";
mso-ansi-font-size:12.0pt;
mso-bidi-font-size:12.0pt;}
/* Page Definitions */
@page
{mso-footnote-separator:url("SoftwareLicenseAgreement_files/header.html") fs;
mso-footnote-continuation-separator:url("SoftwareLicenseAgreement_files/header.html") fcs;
mso-endnote-separator:url("SoftwareLicenseAgreement_files/header.html") es;
mso-endnote-continuation-separator:url("SoftwareLicenseAgreement_files/header.html") ecs;}
@page WordSection1
{size:8.5in 11.0in;
margin:.75in .75in .75in .75in;
mso-header-margin:.25in;
mso-footer-margin:.25in;
mso-header:url("SoftwareLicenseAgreement_files/header.html") h1;
mso-even-footer:url("SoftwareLicenseAgreement_files/header.html") ef1;
mso-footer:url("SoftwareLicenseAgreement_files/header.html") f1;
mso-first-header:url("SoftwareLicenseAgreement_files/header.html") fh1;
mso-first-footer:url("SoftwareLicenseAgreement_files/header.html") ff1;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
@list l0
{mso-list-id:-130;
mso-list-type:simple;
mso-list-template-ids:1151252324;}
@list l0:level1
{mso-level-tab-stop:.75in;
mso-level-number-position:left;
margin-left:.75in;
text-indent:-.25in;
mso-bidi-font-family:"Times New Roman";}
@list l1
{mso-list-id:1606039820;
mso-list-type:hybrid;
mso-list-template-ids:990003726 859187502 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l1:level1
{mso-level-start-at:5;
mso-level-number-format:alpha-lower;
mso-level-text:"\(%1\)";
mso-level-tab-stop:.75in;
mso-level-number-position:left;
margin-left:.75in;
text-indent:-.25in;}
@list l1:level2
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:1.25in;
mso-level-number-position:left;
margin-left:1.25in;
text-indent:-.25in;}
@list l1:level3
{mso-level-number-format:roman-lower;
mso-level-tab-stop:1.75in;
mso-level-number-position:right;
margin-left:1.75in;
text-indent:-9.0pt;}
@list l1:level4
{mso-level-tab-stop:2.25in;
mso-level-number-position:left;
margin-left:2.25in;
text-indent:-.25in;}
@list l1:level5
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:2.75in;
mso-level-number-position:left;
margin-left:2.75in;
text-indent:-.25in;}
@list l1:level6
{mso-level-number-format:roman-lower;
mso-level-tab-stop:3.25in;
mso-level-number-position:right;
margin-left:3.25in;
text-indent:-9.0pt;}
@list l1:level7
{mso-level-tab-stop:3.75in;
mso-level-number-position:left;
margin-left:3.75in;
text-indent:-.25in;}
@list l1:level8
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:4.25in;
mso-level-number-position:left;
margin-left:4.25in;
text-indent:-.25in;}
@list l1:level9
{mso-level-number-format:roman-lower;
mso-level-tab-stop:4.75in;
mso-level-number-position:right;
margin-left:4.75in;
text-indent:-9.0pt;}
@list l2
{mso-list-id:1745953402;
mso-list-type:hybrid;
mso-list-template-ids:-1850550518 1530685148 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l2:level1
{mso-level-start-at:5;
mso-level-number-format:roman-lower;
mso-level-text:"\(%1\)";
mso-level-tab-stop:1.5in;
mso-level-number-position:left;
margin-left:1.5in;
text-indent:-.5in;}
@list l2:level2
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:1.75in;
mso-level-number-position:left;
margin-left:1.75in;
text-indent:-.25in;}
@list l2:level3
{mso-level-number-format:roman-lower;
mso-level-tab-stop:2.25in;
mso-level-number-position:right;
margin-left:2.25in;
text-indent:-9.0pt;}
@list l2:level4
{mso-level-tab-stop:2.75in;
mso-level-number-position:left;
margin-left:2.75in;
text-indent:-.25in;}
@list l2:level5
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:3.25in;
mso-level-number-position:left;
margin-left:3.25in;
text-indent:-.25in;}
@list l2:level6
{mso-level-number-format:roman-lower;
mso-level-tab-stop:3.75in;
mso-level-number-position:right;
margin-left:3.75in;
text-indent:-9.0pt;}
@list l2:level7
{mso-level-tab-stop:4.25in;
mso-level-number-position:left;
margin-left:4.25in;
text-indent:-.25in;}
@list l2:level8
{mso-level-number-format:alpha-lower;
mso-level-tab-stop:4.75in;
mso-level-number-position:left;
margin-left:4.75in;
text-indent:-.25in;}
@list l2:level9
{mso-level-number-format:roman-lower;
mso-level-tab-stop:5.25in;
mso-level-number-position:right;
margin-left:5.25in;
text-indent:-9.0pt;}
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman",serif;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="2049"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>
<div class=WordSection1>
<p class=MsoNormal align=center style='text-align:center;mso-pagination:widow-orphan'><b><span
style='font-size:10.0pt'>NORTHWOODS SOFTWARE CORPORATION</span></b><span
style='font-size:10.0pt;mso-bidi-font-weight:bold'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='text-align:center;mso-pagination:widow-orphan'><span
style='font-size:10.0pt;mso-bidi-font-weight:bold'><o:p> </o:p></span></p>
<p class=MsoNormal align=center style='text-align:center;mso-pagination:widow-orphan'><b><u><span
style='font-size:10.0pt'>Software License Agreement</span></u></b><u><span
style='font-size:10.0pt;mso-bidi-font-weight:bold'><o:p></o:p></span></u></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'>This Software License Agreement (this <b
style='mso-bidi-font-weight:normal'>Agreement</b>) is a legal agreement
between Northwoods Software Corporation, a New Hampshire corporation (<b
style='mso-bidi-font-weight:normal'>Northwoods</b>), and you, either an
individual or a single entity.<span style='mso-spacerun:yes'> </span>This
Software License Agreement sets forth the terms and conditions under which
Northwoods grants to you a license to use one or more computer software products
of Northwoods and Northwoods related documentation therefor.<span
style='mso-spacerun:yes'> </span>Certain capitalized terms used in this
Agreement are defined in Section 1.0 below.<span style='color:black'><o:p></o:p></span></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'>Each Licensed Product is identified in a License
Certificate issued by Northwoods to you.<span style='mso-spacerun:yes'>
</span>If two or more Licensed Products are listed on a License Certificate, the
License shall apply to each such Licensed Product.<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'>This Agreement sets forth the terms and conditions
applicable to your License of the Licensed Software and the Documentation.<span
style='mso-spacerun:yes'> </span>Please note that, as more particularly set
forth in this Agreement, certain of the terms and conditions set forth in this
Agreement may not be applicable to your License, depending on the type of
License that you purchased and the terms of your License Certificate.<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal align=center style='text-align:center;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>***<span
style='mso-spacerun:yes'> </span>IMPORTANT NOTICE<span
style='mso-spacerun:yes'> </span>***<o:p></o:p></span></b></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>BY
INSTALLING, COPYING, OR OTHERWISE USING ANY OF THE LICENSED SOFTWARE, YOU AGREE
TO BE BOUND BY THE TERMS OF THIS AGREEMENT.<span style='mso-spacerun:yes'>
</span>IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, THEN
YOU SHOULD NOT INSTALL ANY OF THE LICENSED SOFTWARE.<o:p></o:p></span></b></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'><o:p> </o:p></span></b></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>NOTE: Unless
you have purchased an OEM License or an Internal Use License, your usage of any
Licensed Software and related Documentation is governed by an Evaluation
License.</span></b><span style='font-size:10.0pt'><o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'>In addition to the foregoing, the terms and conditions
of this Agreement include the following:<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt;color:black'><o:p> </o:p></span></p>
<h1 style='margin-left:.5in;text-align:justify;text-indent:-.5in;mso-pagination:
widow-orphan;page-break-after:avoid'><b style='mso-bidi-font-weight:normal'><span
style='font-size:10.0pt;font-variant:small-caps;color:black'>1.0<span
style='mso-tab-count:1'> </span>Definitions</span></b><span
style='font-size:10.0pt;font-variant:small-caps;color:black'><o:p></o:p></span></h1>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan;
page-break-after:avoid'><span style='font-size:10.0pt;color:black'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan;
page-break-after:avoid'><span style='font-size:10.0pt;color:black'>The
following terms and variations thereof shall have the following meanings:<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt;page-break-after:
avoid'><span style='font-size:10.0pt;font-family:"Times New Roman",serif;
mso-bidi-font-weight:bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Agreement</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means this
Software License Agreement between Northwoods and Customer.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Customer</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means you, the
individual or single entity in whose name the License Certificate was issued.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Developer</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'> means, with respect to a particular Licensed Product, an Internal User who
(a) is a member of the Licensed Group for such Licensed Product and (b) uses such
Licensed Product to develop one or more Licensed Applications</span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'>.</span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></b></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Documentation</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means, with
respect to any Licensed Software, such assistance manuals, online help files,
release notes, Sample Code, or other materials, in printed or electronic form, including
any Updates thereof, that may be provided by Northwoods to assist a Developer in
the use of such Licensed Software.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Domain Name</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means a unique name
that identifies an Internet resource, such as a web site (e.g., <a
href="http://www.nwoods.com">www.nwoods.com</a>).<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Evaluation License</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means a License permitting
Customer to use a Licensed Product in accordance with the provisions of Section
2.1.1(a) below and the further terms and conditions of this Agreement.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>External User</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'> means someone other than an Internal User</span><span style='font-size:
10.0pt;font-family:"Times New Roman",serif;color:black'>.</span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Intellectual
Property Right</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif;
mso-bidi-font-weight:bold'> means any U.S. or foreign patent, </span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'>copyright,
trade secret, trademark, industrial property, or other proprietary or
intellectual property right of any kind.</span><span style='font-size:10.0pt;
font-family:"Times New Roman",serif;mso-bidi-font-weight:bold'><o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></b></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Internal Use
License</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>
means a License permitting Customer to use a Licensed Product in accordance
with the provisions of Section 2.1.1(b) below and the further terms and
conditions of this Agreement.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Internal User</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'> means an employee </span><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>or
contractor <span style='mso-bidi-font-weight:bold'>of Customer</span><span
style='color:black'>.</span><span style='mso-bidi-font-weight:bold'><span
style='mso-spacerun:yes'> </span>For purposes hereof, contractor means
someone</span><span style='color:black'> who is not an employee of Customer but
who is under contract with Customer to perform services of a type that
otherwise might be performed by an employee of Customer.<o:p></o:p></span></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>License</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means Northwoods
grant to you of a non-exclusive, non-transferable right to use a Licensed
Product, subject to and in accordance with the terms and conditions of this
Agreement.<span style='mso-spacerun:yes'> </span>There are three different
types of Licenses - an Evaluation License, an Internal Use License, and an OEM
License.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>License
Certificate</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>
means, with respect to a particular Licensed Product that is licensed by
Northwoods to Customer under this Agreement, a certificate issued by Northwoods
to Customer that identifies the applicable Licensed Software and the License-Specific
Terms applicable to Customers use of such Licensed Product.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>License Effective
Date</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>
means the date on which Customer first installs any Licensed Software on a
computer for evaluation purposes, or, if the Customer purchased an Internal Use
License or an OEM License, the date on which Customer placed the order therefor.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>License-Specific
Terms</span></b><span style='font-size:10.0pt'> means, with respect to a
particular Licensed Product that is licensed by Northwoods to Customer under
this Agreement, the identity of the applicable Licensed Software that is part
of such Licensed Product together with certain additional licensing terms
applicable to Customers use of such Licensed Product that are set forth in the
License Certificate for such Licensed Product.<span style='mso-spacerun:yes'>
</span><span style='mso-bidi-font-weight:bold'>The </span>License-Specific <span
style='mso-bidi-font-weight:bold'>Terms are recorded in Northwoods
records.<span style='mso-spacerun:yes'> </span>In the event of any
inconsistency between the License-Specific Terms contained in Northwoods
records and the License-Specific Terms stated in a</span>ny printed,
electronic, or other copy of a <span style='mso-bidi-font-weight:bold'>License
Certificate (whether due to an alteration of such License Certificate or other
cause), the License-Specific Terms contained in Northwoods records shall be
controlling.<o:p></o:p></span></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>License Term</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means the
duration of the License, which depends on the type of License and the License-Specific
Terms, all as more particularly set forth in this Agreement.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Licensed
Application</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>
means a software application (including Redistributables) developed by a
Developer by use of the Licensed Software.<span style='mso-spacerun:yes'>
</span>The License-Specific Terms may further define what constitutes a
Licensed Application.<b style='mso-bidi-font-weight:normal'><span
style='color:black'><o:p></o:p></span></b></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Licensed
Application End User</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif;
mso-bidi-font-weight:bold'> means an authorized user of a Licensed Application</span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'>.</span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Licensed Domain</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means a Domain
Name from which a Licensed Application End User is able to access a Licensed
Application via the Internet.<span style='mso-spacerun:yes'> </span>For the
avoidance of doubt, if two or more Domain Names identify the same web site or
other Internet resource (i.e., there is a single primary Domain Name from which
a Licensed Application End User is able to access a Licensed Application via
the Internet and there are also one or more alias Domain Names that point to that
same primary Domain Name), then there will only be considered to be one
Licensed Domain and the alias Domain Name(s) will not be counted.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>Licensed
Group</span></b><span style='font-size:10.0pt'> means, with respect to a
particular Licensed Product, such Internal Users who are permitted to be
Developers for such Licensed Product, as set forth in the License Certificate
for such Licensed Product.<span style='mso-spacerun:yes'> </span>By way of
examples, if the License Certificate for a Licensed Product states that the
Licensed Group for such Licensed Product (a) is a particular business unit
within Customer, only an Internal User within such business unit may be a
Developer for such Licensed Product, or (b) is unlimited, any Internal User of
Customer may be a Developer for such Licensed Product, in both cases subject to
such additional limitations as are otherwise set forth in this Agreement and the
applicable License Certificate (including any limitation on the number of
Developers who may develop Licensed Applications for such Licensed Product).<span
style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt;color:black;mso-bidi-font-weight:bold'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><b><span
style='font-size:10.0pt;color:black'>Licensed Product</span></b><span
style='font-size:10.0pt;color:black'> means, collectively, Licensed Software that
is licensed by Northwoods for use by Customer under this Agreement and the related
Documentation for such Licensed Software.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Licensed
Software</span></b><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>
means any Northwoods computer software product licensed for use under this
Agreement, including any Updates of such computer software product that may be
supplied to Customer by Northwoods.<span style='mso-spacerun:yes'> </span>The
Licensed Software is identified in the License-Specific Terms.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><a
name="OLE_LINK2"></a><a name="OLE_LINK1"><span style='mso-bookmark:OLE_LINK2'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></span></a></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='mso-bookmark:OLE_LINK1'><span style='mso-bookmark:OLE_LINK2'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Northwoods</span></b></span></span><span
style='mso-bookmark:OLE_LINK1'><span style='mso-bookmark:OLE_LINK2'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means Northwoods
Software Corporation, a New Hampshire corporation, and its successors and
assigns.<o:p></o:p></span></span></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='mso-bookmark:OLE_LINK1'><span style='mso-bookmark:OLE_LINK2'><span
style='font-size:10.0pt'><o:p> </o:p></span></span></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='mso-bookmark:OLE_LINK1'><span style='mso-bookmark:OLE_LINK2'><span
style='font-size:10.0pt'><b style='mso-bidi-font-weight:normal'>Object Code</b>
means, with respect to software, an encoded form of such software that allows
such software to be used on a computer, but which is not intended to allow such
software to be enhanced or otherwise modified.<o:p></o:p></span></span></span></p>
<span style='mso-bookmark:OLE_LINK2'></span><span style='mso-bookmark:OLE_LINK1'></span>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>OEM License</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means a License
permitting Customer to use a Licensed Product in accordance with the provisions
of Section 2.1.1(c) below and the further terms and conditions of this
Agreement.<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt;font-family:
"Times New Roman",serif;color:black'>Redistributables</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'> means
(a) the Object Code form of portions of the Licensed Software, which portions
are described as such in the Documentation and are usually provided as Dynamic
Link Libraries (DLLs), tar files, zip files, JAR files, or obfuscated javascript
files (depending on the specific product), and (b) also the Source Code or Object
Code form of the Sample Code as originally supplied to, or as modified by,
Customer.<span style='mso-spacerun:yes'> </span>For the avoidance of doubt,
obfuscated javascript files are considered to be Object Code and not Source
Code.<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoBodyText style='text-align:justify;mso-pagination:widow-orphan;
punctuation-wrap:simple;mso-line-break-override:restrictions'><b
style='mso-bidi-font-weight:normal'><span style='font-size:10.0pt'>Sample
Code</span></b><span style='font-size:10.0pt'> means the Source Code version
of the computer software supplied by Northwoods and described as sample code in
the Documentation, which computer software is intended to illustrate how to use
the Licensed Software. For the avoidance of doubt, Sample Code is part of the
Documentation and not part of the Licensed Software.<o:p></o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><o:p> </o:p></span></p>
<p class=MsoNormal style='text-align:justify;mso-pagination:widow-orphan'><span
style='font-size:10.0pt'><b style='mso-bidi-font-weight:normal'>Source Code</b>
means, with respect to software, an encoded form of such software that allows a
software developer to enhance and otherwise modify such software and that can
be used, with certain software development tools, to produce Object Code.<o:p></o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Trial Period</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'> means, with respect to an Evaluation License, a period of thirty (30)
days following </span><span style='font-size:10.0pt;font-family:"Times New Roman",serif'>the
License Effective Date<span style='mso-bidi-font-weight:bold'> therefor or such
longer period of time, if any, as may be specified as the License Term for such
Evaluation License in the </span>License-Specific <span style='mso-bidi-font-weight:
bold'>Terms therefor.<o:p></o:p></span></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;mso-bidi-font-weight:
bold'><o:p> </o:p></span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Update</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'> means any bug
fix, correction, patch, workaround, enhancement, release, version, or other
update of a Licensed Product provided by Northwoods to Customer after the
initial delivery of such Licensed Product.<o:p></o:p></span></p>
<p class=MsoNormal style='margin-left:.5in;text-align:justify;text-indent:-.5in;
mso-pagination:widow-orphan'><span style='font-size:10.0pt'><o:p> </o:p></span></p>
<h1 style='margin-left:.5in;text-align:justify;text-indent:-.5in;mso-pagination:
widow-orphan;page-break-after:avoid'><b style='mso-bidi-font-weight:normal'><span
style='font-size:10.0pt;font-variant:small-caps'>2.0<span style='mso-tab-count:
1'> </span>License Provisions</span></b><span style='font-size:10.0pt;
font-variant:small-caps'><o:p></o:p></span></h1>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid;tab-stops:.5in'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'><o:p> </o:p></span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid;tab-stops:.5in'><b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'>2.1<span
style='mso-tab-count:1'> </span>License Grant and Restrictions</span></b><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'><o:p></o:p></span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid;tab-stops:.5in'><span
style='font-size:10.0pt;font-family:"Times New Roman",serif;color:black'><o:p> </o:p></span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;tab-stops:.5in'><span style='font-size:10.0pt;font-family:
"Times New Roman",serif;color:black'>2.1.1<span style='mso-tab-count:1'> </span></span><span
style='font-size:10.0pt;font-family:"Times New Roman",serif'>Subject to the further
terms and conditions of this Agreement, Northwoods grants to Customer a worldwide
License to use each Licensed Product, as follows:<o:p></o:p></span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.0in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;tab-stops:.5in'><span style='font-size:10.0pt;font-family: