forked from NorthwoodsSoftware/GoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicense.html
More file actions
1598 lines (1337 loc) · 89.1 KB
/
Copy pathlicense.html
File metadata and controls
1598 lines (1337 loc) · 89.1 KB
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>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 12 (filtered)">
<title>NORTHWOODS SOFTWARE CORPORATION</title>
<style>
.button {
-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
box-shadow:inset 0px 1px 0px 0px #bbdaf7;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) );
background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5');
background-color:#79bbff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #84bbf3;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #528ecc;
}
.button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) );
background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff');
background-color:#378de5;
}
.button:active {
position:relative;
top:1px;
}
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
h1
{mso-style-link:"Heading 1 Char";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";
font-weight:normal;}
h2
{mso-style-link:"Heading 2 Char";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";
font-weight:normal;}
h3
{margin-top:12.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
page-break-after:avoid;
text-autospace:none;
font-size:13.0pt;
font-family:"Arial","sans-serif";}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.MsoEnvelopeAddress, li.MsoEnvelopeAddress, div.MsoEnvelopeAddress
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:2.0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.MsoEnvelopeReturn, li.MsoEnvelopeReturn, div.MsoEnvelopeReturn
{margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:10.0pt;
font-family:"Times New Roman","serif";}
p.MsoList, li.MsoList, div.MsoList
{margin-top:3.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
line-height:12.0pt;
font-size:9.0pt;
font-family:"Arial","sans-serif";}
p.MsoBodyTextIndent2, li.MsoBodyTextIndent2, div.MsoBodyTextIndent2
{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;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-link:"Balloon Text Char";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:8.0pt;
font-family:"Tahoma","sans-serif";}
p.TTG1, li.TTG1, div.TTG1
{mso-style-name:TTG1;
margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:1.0in;
margin-bottom:.0001pt;
text-align:justify;
text-indent:-1.0in;
text-autospace:none;
font-size:10.0pt;
font-family:"Tahoma","sans-serif";
text-decoration:underline;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";}
p.Style44, li.Style44, div.Style44
{mso-style-name:"Style 44";
margin-top:0in;
margin-right:0in;
margin-bottom:12.0pt;
margin-left:0in;
text-align:justify;
font-size:9.0pt;
font-family:"Arial","sans-serif";}
p.Style45, li.Style45, div.Style45
{mso-style-name:"Style 45";
margin-top:0in;
margin-right:0in;
margin-bottom:12.0pt;
margin-left:.5in;
text-align:justify;
font-size:11.0pt;
font-family:"Arial","sans-serif";}
span.f11
{mso-style-name:f11;
font-family:"Arial","sans-serif";
color:black;}
span.BalloonTextChar
{mso-style-name:"Balloon Text Char";
mso-style-link:"Balloon Text";
font-family:"Tahoma","sans-serif";}
span.BodyTextIndent2Char
{mso-style-name:"Body Text Indent 2 Char";
mso-style-link:"Body Text Indent 2";}
/* Page Definitions */
@page WordSection1
{size:8.5in 11.0in;
margin:.5in .5in .5in .5in;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=WordSection1>
<p class=MsoNormal align=center style='text-align:center'><b><span
style='font-size:10.0pt'>NORTHWOODS SOFTWARE CORPORATION</span></b></p>
<p class=MsoNormal align=center style='text-align:center'><span
style='font-size:10.0pt'> </span></p>
<p class=MsoNormal align=center style='text-align:center'><b><u><span
style='font-size:10.0pt'>Software License Agreement</span></u></b></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>This
Software License Agreement (this “<b>Agreement</b>”) is a legal agreement
between Northwoods Software Corporation (“<b>Northwoods</b>”) and you, either
an individual or a single entity. This Software License Agreement sets forth
the terms and conditions under which Northwoods grants to you a license (the “<b>License</b>”)
to use one or more computer software products of Northwoods (the “<b>Licensed
Software</b>”) and Northwoods’ related documentation therefor (the “<b>Documentation</b>”).</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>The
Licensed Software is identified in a Software License Certificate (“<b>License
Certificate</b>”) issued by Northwoods to you. If two or more computer
software products are listed on the License Certificate, this License shall
apply to each such listed product.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><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. 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.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal align=center style='text-align:center'><b><span
style='font-size:10.0pt'>*** IMPORTANT NOTICE ***</span></b></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><b><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. IF YOU DO NOT AGREE TO THE TERMS
AND CONDITIONS OF THIS AGREEMENT, THEN YOU SHOULD NOT INSTALL ANY OF THE
LICENSED SOFTWARE.</span></b></p>
<p class=MsoNormal style='text-align:justify'><b><span style='font-size:10.0pt'> </span></b></p>
<p class=MsoNormal style='text-align:justify'><b><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, as such terms are defined below.</span></b></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>In
addition to the foregoing, the terms and conditions of this Agreement include
the following:</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt;
color:black'> </span></p>
<h1 style='margin-left:.5in;text-align:justify;text-indent:-.5in;page-break-after:
avoid'><b><span style='font-size:10.0pt;color:black;text-transform:uppercase'>1.0 Definitions</span></b></h1>
<p class=MsoNormal style='text-align:justify;page-break-after:avoid'><span
style='font-size:10.0pt;color:black'> </span></p>
<p class=MsoNormal style='text-align:justify;page-break-after:avoid'><span
style='font-size:10.0pt;color:black'>The following terms and variations thereof
shall have the following meanings:</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"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'> means an Internal
User who uses a 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></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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, 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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'> means someone
other than an Internal User</span><span style='font-size:10.0pt;font-family:
"Times New Roman","serif";color:black'>.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'>
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></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'> means an
employee </span><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>or
contractor of Customer<span style='color:black'>.</span> For purposes hereof,
“contractor” means someone<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.</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"'> </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. There are three different types of Licenses - an Evaluation
License, an Internal Use License, and an OEM License.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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 Customer’s use of such Licensed Product.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoNormal style='text-align:justify'><b><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 Customer’s use of such Licensed Product that are set forth in the
License Certificate for such Licensed Product. The License-Specific Terms are
recorded in Northwoods’ records. In the event of any inconsistency between the
License-Specific Terms contained in Northwoods’ records and the License-Specific
Terms stated in any printed, electronic, or other copy of a 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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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. The License-Specific Terms may
further define what constitutes a Licensed Application.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'>
means an authorized user of a Licensed Application</span><span
style='font-size:10.0pt;font-family:"Times New Roman","serif";color:black'>.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt;
color:black'> </span></p>
<p class=MsoNormal style='text-align:justify'><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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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. The Licensed Software is identified in the
License-Specific Terms.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><a
name="OLE_LINK2"></a><a name="OLE_LINK1"><span style='font-size:10.0pt;
font-family:"Times New Roman","serif"'> </span></a></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><b><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>“Northwoods”</span></b><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.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>“<b>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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </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";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 (DLL’s), tar files, zip files, JAR files, or 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></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><b><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.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>“<b>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.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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"'> 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 therefor or such longer period of time, if any, as may be specified
as the License Term for such Evaluation License in the License-Specific Terms
therefor.</span></p>
<p class=Style44 style='margin-bottom:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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.</span></p>
<p class=MsoNormal style='margin-left:.5in;text-align:justify;text-indent:-.5in'><span
style='font-size:10.0pt'> </span></p>
<h1 style='margin-left:.5in;text-align:justify;text-indent:-.5in;page-break-after:
avoid'><b><span style='font-size:10.0pt;text-transform:uppercase'>2.0 License
Provisions</span></b></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'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'> </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'><b><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'>2.1 License Grant
and Restrictions</span></b></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'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>2.1⁠.1 </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 License to use each Licensed Product, as follows:</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'>(a) <u>Evaluation
License</u>. If the License is an Evaluation License, then:</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(i) Customer may only use </span><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>the Licensed
Product for evaluation purposes; and</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(ii) the
License Term shall commence on the License Effective Date and shall continue
thereafter for the Trial Period, subject to termination of the License during
the License Term as otherwise set forth in this Agreement.</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;line-height:normal'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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;line-height:normal'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>The Licensed Software
may include a duration limitation that tracks the License Term and may disable
the Licensed Software when the License Term expires. If Customer purchases an Internal
Use License or an OEM License for the Licensed Product, Northwoods will provide
Customer with a software code which, when activated, will deactivate any such duration
limitation.</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'>(b) <u>Internal
Use License</u>. If the License is an Internal Use License, then:</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(i) the
License Term shall commence on the License Effective Date and shall continue
thereafter for the period set forth in the License-Specific Terms, subject to
termination of the License during the License Term as otherwise set forth in
this Agreement;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(ii) the
aggregate number of Developers who may use the Licensed Software to develop
Licensed Applications is specified in the License-Specific Terms;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(iii) the
aggregate number of Licensed Applications that such Developer(s) may develop is
specified in the License-Specific Terms;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(iv) all
Licensed Application End Users must be Internal Users; and</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(v) the
aggregate number of Licensed Application End Users who are authorized to use each
Licensed Application is specified in the License-Specific Terms.</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif"'>(c) <u><span style='color:
black'>OEM License</span></u><span style='color:black'>. </span>I<span
style='color:black'>f the License is an OEM License, then:</span></span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal;page-break-after:avoid'><span style='font-size:10.0pt;
font-family:"Times New Roman","serif";color:black'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(i) the
License Term shall commence on the License Effective Date and shall continue
thereafter for the period set forth in the License-Specific Terms, subject to
termination of the License during the License Term as otherwise set forth in
this Agreement;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(ii) the
aggregate number of Developers who may use the Licensed Software to develop
Licensed Applications is specified in the License-Specific Terms;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(iii) the
aggregate number of Licensed Applications that such Developer(s) may develop is
specified in the License-Specific Terms;</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(iv) the
Licensed Application End Users may be Internal Users or External Users; and</span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=MsoList style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.5in;margin-bottom:.0001pt;text-align:justify;text-indent:-.5in;
line-height:normal'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(v)<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>the
aggregate number of Licensed Application End Users who are authorized to use
each Licensed Application is not limited.</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;line-height:normal'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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;line-height:normal'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>For the
avoidance of doubt, </span><span style='font-size:10.0pt'>u</span><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>pon the
expiration or earlier termination of the License Term (unless, and then only to
the extent that, the License Term is renewed by Northwoods), (A) no further
Licensed Applications may be developed, and (B) with respect to any Licensed
Application that was developed prior to such expiration or termination, any
Licensed Application End User who was using such Licensed Application prior to
such expiration or termination may continue to use such Licensed Application
after such expiration or termination, but no other Licensed Application End
Users or anyone else may use such Licensed Application.</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>2.1⁠.2 Customer may make such number of copies of each Licensed
Product as may reasonably be required for Customer’s exercise of its License
rights and for archival purposes. Each such copy shall be and remain subject
to all usage and other restrictions applicable to such Licensed Product under
this Agreement.</span><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>
All such copies are and shall remain the sole property of Northwoods and
subject to this Agreement<span style='color:black'>. All Intellectual Property
Rights notices included in such Licensed Product must be maintained in all such
copies and may not be altered or removed.</span></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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>2.1⁠.3 Customer is solely responsible for all hardware,
infrastructure systems, and third party software associated with operating the
Licensed Software.</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>2.1⁠.4 Except as may otherwise expressly be permitted by this
Agreement, and subject to such additional limitations and restrictions as are
set forth in this Agreement, <span style='text-transform:uppercase'>Customer
may not</span>:</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(a) use, copy, display, publish, or transfer any Licensed
Product;</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(b) modify any Licensed Product, or create any
derivative work of any Licensed Product;</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(c) reverse engineer, disassemble, decompile, or take
any other action to derive the Source Code form of any of the Licensed Software;</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(d) use any Licensed Product, nor permit any Licensed
Product to be used, other than </span><span style='font-size:10.0pt;font-family:
"Times New Roman","serif"'>by one or more Developers (the number of permitted
Developers being specified in the License-Specific Terms) to develop a Licensed
Application;</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(e) rent,
lease, transfer, sell, sublicense, or distribute any Licensed Product thereof to
any third party without the express written consent of Northwoods; for the
avoidance of doubt, no time-sharing or service-sharing use of any Licensed
Product by any third party is permitted;</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(f) use any Licensed Product to develop a Licensed Application
whereby such Licensed Product either (i) is competitive with the Licensed
Product, or (ii) constitutes a substantial portion of the value of such Licensed
Application</span><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>;
nor</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(g) distribute any portion of any Licensed Product other
than the Redistributables, which may only be distributed in Object Code form
and only as part of a Licensed Application.</span></p>
<p class=MsoNormal style='margin-left:.5in;text-align:justify;text-indent:-.5in'><span
style='font-size:10.0pt;color:black'> </span></p>
<p class=MsoNormal style='margin-left:.5in;text-align:justify;text-indent:-.5in'><span
style='font-size:10.0pt;color:black'>2.1⁠.5 Except as otherwise set forth
in this Section, the Licensed Software is provided and may only be used in
Object Code form. If the </span><span style='font-size:10.0pt'>License-Specific
<span style='color:black'>Terms expressly provide that any of the Licensed
Software is being licensed with Source Code rights, then such Licensed Software
shall also be provided and may be used in Source Code form. In such case,
Customer:</span></span></p>
<p class=MsoNormal style='margin-left:1.0in;text-align:justify;text-indent:
-.5in'><span style='font-size:10.0pt;color:black'> </span></p>
<p class=MsoNormal style='margin-left:1.0in;text-align:justify;text-indent:
-.5in'><span style='font-size:10.0pt;color:black'>(a) may modify such
Licensed Software and use the modified Licensed Software in the same fashion,
and subject to the same restrictions, as the unmodified Licensed Software (however,
for the avoidance of doubt, Customer shall not redistribute any Source Code);
and</span></p>
<p class=MsoNormal style='margin-left:1.0in;text-align:justify;text-indent:
-.5in'><span style='font-size:10.0pt;color:black'> </span></p>
<p class=MsoNormal style='margin-left:1.0in;text-align:justify;text-indent:
-.5in'><span style='font-size:10.0pt;color:black'>(b) shall defend,
indemnify, and hold harmless Northwoods and its affiliates, and its and their
respective successors and assigns, and all of the respective officers,
directors, employees, stockholders, managers, members, agents, and representatives
of any of the foregoing (each, an “<b>Indemnitee</b>”) from and against any and
all claims, losses, damages, liabilities, costs, and expenses (including
reasonable attorneys’ and other professional fees) suffered or incurred by Northwoods
or any other Indemnitee that arise out of or relate to any modifications of such
Licensed Software made by Customer.</span></p>
<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'> </span></p>
<h1 style='margin-left:.5in;text-align:justify;text-indent:-.5in;page-break-after:
avoid'><b><span style='font-size:10.0pt;color:black'>2.2 License
Termination</span></b></h1>
<p class=Style45 style='margin-bottom:0in;margin-bottom:.0001pt;text-indent:
-.5in;page-break-after:avoid'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=Style45 style='margin-bottom:0in;margin-bottom:.0001pt;text-indent:
-.5in'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>2.2⁠.1 With
respect to each Licensed Product that is listed in a License Certificate, the
License of such Licensed Product shall commence on the License Effective Date
and shall continue thereafter for the applicable License Term, subject to
earlier termination as follows:</span></p>
<p class=Style45 style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.0in;margin-bottom:.0001pt;text-indent:-.5in'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>
<p class=Style45 style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.0in;margin-bottom:.0001pt;text-indent:-.5in'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(a) Customer
may terminate such License at any time and for any reason by written notice to
Northwoods;</span></p>
<p class=Style45 style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:1.0in;margin-bottom:.0001pt;text-indent:-.5in'><span
style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(b) if
Customer breaches any of its obligations under this Agreement, then such License
shall automatically terminate; and</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'>(c) if
Customer is declared bankrupt, becomes insolvent, or commences liquidation or
receivership proceedings, then such License shall automatically terminate<span
style='color:black'>.</span></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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>2.2⁠.2 Upon the expiration or earlier termination of such License,
Customer shall:</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'> </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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif";
color:black'>(a) immediately </span><span style='font-size:10.0pt;
font-family:"Times New Roman","serif"'>cease all use of each Licensed Product
that is listed in the applicable License Certificate; and</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'><span style='font-size:10.0pt;font-family:"Times New Roman","serif"'> </span></p>