xpresslibs 9.9.0__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
xpresslibs/__init__.py ADDED
@@ -0,0 +1,44 @@
1
+ # This file is only included in the xpresslibs PyPI package. It is used on
2
+ # Windows to locate the solver libraries and CUDA runtime, and on all platforms
3
+ # to locate the license file.
4
+ import ctypes
5
+ import os
6
+ import platform
7
+ import sys
8
+
9
+ _lib_sub_dir = 'bin' if platform.system() == 'Windows' else 'lib'
10
+
11
+ solver_libs_dir = os.path.join(os.path.dirname(__file__), _lib_sub_dir)
12
+ cuda_libs_dir = (
13
+ os.path.join(os.path.dirname(__file__), f'../nvidia/cu13/{_lib_sub_dir}/{platform.machine()}')
14
+ if platform.system() in ['Windows', 'Linux']
15
+ else None
16
+ )
17
+ community_license_path = os.path.join(os.path.dirname(__file__), 'bin/community-xpauth.xpr')
18
+
19
+
20
+ def preload_dependencies():
21
+ """Preloads Xpress dependencies such as libssl and libiomp5 from system locations,
22
+ especially <conda_env>/Library/bin, so that they are preferred over the libraries
23
+ included with Xpress. This prevents various errors due to library incompatibilities:
24
+ - Conda includes a strange build of libssl which has additional symbols not present
25
+ in the Xpress version, and if these symbols are missing then _hashlib fails to
26
+ load with "Windows fatal exception: code 0xc0000139".
27
+ - NumPy builds from conda main channel require MKL, which uses a different version
28
+ of libiomp5. Xpress is compatible with that version of libiomp5, but MKL is not
29
+ compatible with the Xpress version: it causes MKL to crash.
30
+ """
31
+ if platform.system() != 'Windows':
32
+ return
33
+ system_lib_dir = os.path.join(sys.prefix, 'Library', 'bin')
34
+ thirdparty_dir = os.path.join(solver_libs_dir, 'thirdparty')
35
+ if not os.path.exists(system_lib_dir) or not os.path.exists(thirdparty_dir):
36
+ return
37
+ for f in os.listdir(thirdparty_dir):
38
+ if f.lower().endswith('.dll'):
39
+ system_dll = os.path.join(system_lib_dir, f)
40
+ if os.path.isfile(system_dll):
41
+ try:
42
+ ctypes.CDLL(system_dll)
43
+ except OSError:
44
+ pass
@@ -0,0 +1,8 @@
1
+ license expiry="31-may-2027" features="Community OptLib OptConsole \
2
+ OptJava Barrier Network Quadratic IVE Integer Threads=1024 \
3
+ ParaMIP=1024 ParaBar=1024 SLPLib MINLP GlobalLtd kalis" \
4
+ fico_xpress_release="9.9" hostid="any" platform="any" \
5
+ release="2026" static="uncounted" terminal-services sig="09dd \
6
+ 2d50 2fe5 7047 4329 812e 5b72 d844 b0dd 2bbc 4cd6 3f36 aea1 \
7
+ cca0 1dc0 1f13 87a2 8cf5 0dcc d40b 20c6 db79 c0bf 960f 82c6 \
8
+ b588 b5a9 8f8a 5634 43c9 586c 3f1f"
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,125 @@
1
+ Metadata-Version: 2.4
2
+ Name: xpresslibs
3
+ Version: 9.9.0
4
+ Summary: FICO Xpress Optimizer libraries
5
+ Home-page: https://www.fico.com/en/products/fico-xpress-optimization
6
+ Author: FICO Xpress Optimizer dev. team
7
+ Author-email: support@fico.com
8
+ Keywords: optimization mip minlp xpress
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: C
14
+ Classifier: Programming Language :: C++
15
+ Classifier: Topic :: Software Development
16
+ Classifier: Topic :: Scientific/Engineering
17
+ Classifier: Operating System :: Microsoft :: Windows
18
+ Classifier: Operating System :: POSIX :: Linux
19
+ Classifier: Operating System :: MacOS
20
+ Classifier: License :: Other/Proprietary License
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE.txt
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: keywords
30
+ Dynamic: license-file
31
+ Dynamic: platform
32
+ Dynamic: summary
33
+
34
+ FICO&#174; Xpress Python interface
35
+ ==================================
36
+
37
+ Create and solve Mathematical Optimization problems like the following:
38
+ ```
39
+ min x1^2 + 2 x2
40
+ s.t. x1 + 3 x2 >= 4
41
+ -10 <= x1 <= 10
42
+ x1 in Z
43
+ x2 >= 0
44
+ ```
45
+ with just a few lines of code:
46
+ ```python
47
+ import xpress as xp
48
+ p = xp.problem(name='myexample') # problem name (optional)
49
+ x1 = p.addVariable(vartype=xp.integer, name='x1', lb=-10, ub=10)
50
+ x2 = p.addVariable(name='x2')
51
+ p.setObjective(x1**2 + 2*x2) # objective function
52
+ p.addConstraint(x1 + 3*x2 >= 4) # one or more constraints
53
+ p.optimize()
54
+ print ("solution: {0} = {1}; {2} = {3}".format (x1.name, p.getSolution(x1), x2.name, p.getSolution(x2)))
55
+ ```
56
+ With the `xpress` module, one can create and solve optimization problems using the Python&#174; programming language and the [FICO Xpress](http://www.fico.com/en/products/fico-xpress-optimization-suite) Optimizer library. The module allows for
57
+
58
+ - Creating, handling, solving, and querying optimization problems;
59
+ - Using Python numerical libraries such as NumPy to create optimization problems;
60
+ - Setting and getting the value of parameters (controls and attributes) of a problem; and
61
+ - Using Python functions as callbacks for the Xpress Optimizer and the Xpress Nonlinear solver.
62
+
63
+ The Xpress Python interface allows for creating, handling, and solving all problems that can be solved with the FICO-Xpress library: Linear Programming (LP), Quadratic Programming (QP), Second-Order Conic Programming (SOCP), and their mixed-integer extensions: MILP, MIQP, MIQCQP, MISOCP, together with general nonlinear and mixed-integer nonlinear.
64
+
65
+ Installation
66
+ ------------
67
+
68
+ The Xpress Python interface can be downloaded from [PyPI](https://www.pypi.org) and from [Anaconda](https://www.anaconda.com). Run
69
+ ```
70
+ pip install xpress
71
+ ```
72
+
73
+ to install from PyPI, and
74
+ ```
75
+ conda install -c fico-xpress xpress
76
+ ```
77
+
78
+ to install from the Conda repository.
79
+
80
+ **Xpress 9.9 will be the last release to be published on Anaconda. Subsequent releases of Xpress will be published on PyPI only.**
81
+
82
+ The downloaded package contains: a directory `examples` with several examples of usages of the module, with varying degrees of difficulty, and a directory `license` containing the [Xpress Community License](http://subscribe.fico.com/xpress-optimization-community-license) The full HTML documentation for the Xpress Optimizer, including the Python interface and its examples, is available at the [FICO Xpress Optimization Help](http://www.fico.com/fico-xpress-optimization/docs/latest/solver/GUID-ACD7E60C-7852-36B7-A78A-CED0EA291CDD.html) page.
83
+
84
+ If you do not have any FICO Xpress license, the community license will be recognized by the module and no further action is needed. If you do have a license, for instance located in `/users/johndoe/xpauth.xpr`, make sure to set the global environment variable `XPRESS` to point to the folder containing the `xpauth.xpr` file, i.e. `XPRESS=/user/johndoe`.
85
+
86
+ For a list of supported versions and their end of support dates, please see https://www.fico.com/en/product-support/support-level-software-release. Customers can download selected older versions of the package from the Xpress client area site by clicking on the Archived Downloads link.
87
+
88
+ GPU installation guidelines for PDHG
89
+ ------------------------------------
90
+
91
+ The primal-dual hybrid gradient (PDHG) linear optimization solver can now take advantage of an NVIDIA&#174; CUDA&#174;-capable GPU, if present. The GPU support for PDHG is available as a beta release with Xpress 9.9. The following platforms have been tested: Linux (both x86_64 and ARM64) and Windows (x86_64).</p>
92
+
93
+ Software requirements:
94
+
95
+ - At least version 580 of the NVIDIA drivers must be installed. The latest version is available from https://www.nvidia.com/drivers.
96
+ - At least version 13.0 of the NVIDIA CUDA Runtime must be installed.
97
+
98
+ When installing Xpress from PyPI, the CUDA Runtime can be specified as an optional dependency:
99
+
100
+ ```
101
+ pip install "xpress[cuda]"
102
+ ```
103
+
104
+ When installing Xpress from Conda, the CUDA Runtime can be installed using the following command:
105
+
106
+ ```
107
+ conda install -c nvidia cuda-cudart libcusparse libcublas
108
+ ```
109
+
110
+ Alternatively, the CUDA Runtime can be installed as part of the CUDA Toolkit, which can be downloaded from https://developer.nvidia.com/cuda-downloads.
111
+
112
+ Licensing
113
+ ---------
114
+
115
+ The Xpress software is governed by the [Xpress Shrinkwrap License Agreement](https://www.fico.com/en/shrinkwrap-license-agreement-fico-xpress-optimization-suite-on-premises). When downloading the package, you accept the license terms. A copy of the Xpress Shrinkwrap License is stored in the file `LICENSE.txt` in the `dist-info` directory of the Xpress module.
116
+
117
+ This package includes the community license of Xpress, see the [licensing options overview](https://community.fico.com/s/fico-xpress-optimization-licensing-optio) for more details.
118
+
119
+
120
+ Miscellaneous
121
+ -------------
122
+
123
+ "Python" is a registered trademark of the Python Software Foundation. "FICO" is a registered trademark of Fair Isaac Corporation in the United States and may be a registered trademark of Fair Isaac Corporation in other countries. Other product and company names herein may be trademarks of their respective owners.
124
+
125
+ Copyright (C) Fair Isaac 1983-2026
@@ -0,0 +1,20 @@
1
+ xpresslibs/__init__.py,sha256=ZjEj810oG37K2VsNlgDgEiQ96qo7-6VCd6r_U_9XSro,1908
2
+ xpresslibs/bin/community-xpauth.xpr,sha256=uAX3pJHO9Ml46hJJxF-cEh-lb8YLbayld1gTPbIKo2M,483
3
+ xpresslibs/bin/xknitro.dll,sha256=fV1gaUFzYo2pWQXdQ7zB6L9Hf6ZBQqSXoFcu6cPITLs,105273344
4
+ xpresslibs/bin/xpnll.dll,sha256=9LRIdZZU0HzJ8DOSV4GJz1xq-J-IB6SMmvdboMFPndc,6190592
5
+ xpresslibs/bin/xprl.dll,sha256=UJYMbPIB8geuv8Yb2wynjFbulN7tknMw9cC7Jy2v63E,871424
6
+ xpresslibs/bin/xprs.dll,sha256=zxG6bTJwPZhshCNUjjaMWSzPepbUfsBjd5zy20Llhs8,21965312
7
+ xpresslibs/bin/xprscuda.dll,sha256=IPAkedskg9ui4CBeKg125EmcVcqKWvGyz1r0ty7wNtw,701440
8
+ xpresslibs/bin/xprsws.dll,sha256=tKO6nGHU6pcuhNvzxcCc3eFyHrfdR3WVkGbB0-ANf18,371712
9
+ xpresslibs/bin/thirdparty/jansson.dll,sha256=J4FUuVsnN6tFLcVURvwRJPqcDE73v1WIPR_PRYT8aTk,221184
10
+ xpresslibs/bin/thirdparty/libcrypto-3-x64.dll,sha256=VXdh1VKYaxaOHMF0o2NUt8Ceccaw_gwMg0eEcdVGv7U,5068288
11
+ xpresslibs/bin/thirdparty/libcurl.dll,sha256=QjbCOAeGhiHuQF4vvus7AfxTOPBan3T37jWk4IYadLQ,517632
12
+ xpresslibs/bin/thirdparty/libiomp5md.dll,sha256=mCIzNmsK_NoeD1WgsTQJfjW3eWE_VN22nmhebNBrdV8,1614192
13
+ xpresslibs/bin/thirdparty/libssl-3-x64.dll,sha256=ylTyn_3L1VV8BJduh_rbB75dXDut1XGKRJcoNkM9QZI,743936
14
+ xpresslibs/bin/thirdparty/libzip.dll,sha256=WHM7zNv8kEi30B48DRY5M7dQm9KHTVdZRkdWsve6JUg,159232
15
+ xpresslibs/bin/thirdparty/websockets.dll,sha256=Xm_NT-oasMISp6ucA0n441u-1cHNNT-PZf1k87gI5X8,325120
16
+ xpresslibs-9.9.0.dist-info/licenses/LICENSE.txt,sha256=CDwN9Q0aQrrrDiamr17uOnhu4pSo97Q22DjJ50bEOYw,68885
17
+ xpresslibs-9.9.0.dist-info/METADATA,sha256=vFwk-tnzWgA3lCWTkYcRUx0IH30Et1F6mYAvDI2Dhr4,6452
18
+ xpresslibs-9.9.0.dist-info/WHEEL,sha256=GjDPPQwEcripVP6P2r3RxLa-h5Lb9ifGB7FYYtbLDT0,98
19
+ xpresslibs-9.9.0.dist-info/top_level.txt,sha256=j8DwRzeWdIR4NdfHdCqxPbALvOANSP-hZ_--pOPO51Y,11
20
+ xpresslibs-9.9.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
5
+
@@ -0,0 +1,702 @@
1
+ SHRINKWRAP LICENSE AGREEMENT
2
+ FICO(R) Xpress Optimization Suite (On-Premises)
3
+ Last Updated: August 15, 2025
4
+ This Shrinkwrap License Agreement FICO(R) Xpress Optimization Suite (On-Premises) ("SWLA") is an agreement
5
+ between you (either individually, and if client is an entity, as an authorized representative of such entity)
6
+ ("Client") and Fair Isaac Corporation or any of its Affiliates or any successor company, from whom the Fair Isaac
7
+ Product is licensed or to whom this SWLA is assigned ("Fair Isaac"), for the enclosed Fair Isaac Products: Xpress
8
+ Optimization Suite and included materials.
9
+ This SWLA is effective upon (a) the date of a Fair Isaac provided purchase order for the licensing of the Fair Isaac
10
+ Product ("FICO Order"), (b) Client and Fair Isaac entering into a signed order form agreement for the purchase of
11
+ a license (or an evaluation license) to the Fair Isaac Product ("Signed License Agreement"), or (c) the first delivery,
12
+ installation or use of the Fair Isaac Product; whichever date is earliest ("Effective Date" or "Commencement
13
+ Date"). Please read the terms of this SWLA carefully before you install or use the Fair Isaac Product (defined
14
+ below).
15
+ BY SUBMITTING A FICO ORDER OR ENTERING INTO A SIGNED LICENSE AGREEMENT OR INSTALLING, COPYING OR
16
+ OTHERWISE USING THE FAIR ISAAC PRODUCT OR BY CLICKING ON THE "ACCEPT" BUTTON THAT PRESENTS UPON
17
+ INSTALLATION OF THIS FAIR ISAAC PRODUCT, YOU (BOTH PERSONALLY AND, IF CLIENT IS AN ENTITY, AS AN
18
+ AUTHORIZED REPRESENTATIVE OF CLIENT) SIGNIFY YOUR ACCEPTANCE OF EACH AND EVERY TERM AND
19
+ CONDITION CONTAINED IN THIS SWLA and you acknowledge that you have been presented with this SWLA in a
20
+ written form accompanying the delivery of the Fair Isaac Product and/or electronically upon initialization of the
21
+ Fair Isaac Product and have had the reasonable opportunity to reject these terms and conditions of this SWLA.
22
+ Upon submission of a FICO Order or execution of a Signed License Agreement or copying, delivery, installation or
23
+ use of the Fair Isaac Product, you and Client will be bound by all the terms, conditions and restrictions contained
24
+ in this SWLA and will not be entitled to a refund of any fees paid.
25
+ Fair Isaac, Client and any user of the Fair Isaac Product hereby agree as follows:
26
+ 1. Definitions. In the Agreement the following terms have the meanings given below. Additional terms may
27
+ be defined elsewhere in the Agreement.
28
+ "Affiliate" of a party means any other person or entity that, directly or indirectly, controls, is controlled by, or is
29
+ under common control with, such party, where "control" means the power, directly or indirectly, to direct or
30
+ cause the direction of the management and policies of another person or entity, whether through ownership of
31
+ voting securities, by contract or otherwise. The other person or entity is only considered an Affiliate as long as
32
+ such control exists.
33
+ "Agreement" means this SWLA, the Purchasing Documentation and Maintenance Policy, including all exhibits and
34
+ documents incorporated therein, considered as a whole, as they may be amended.
35
+ "Authorized User" means an individual employee or independent contractor of Client, who has been designated
36
+ by Client to have access to and use of the Fair Isaac Product for and on behalf of Client, on the Client's Operating
37
+ Platform, for whom Client is responsible, and who is bound by the obligations of confidentiality hereunder.
38
+ "Client Data" means all data, including consumer records, customer information, purchase information and
39
+ merchant information, provided by or on behalf of Client to Fair Isaac for Fair Isaac to perform its obligations
40
+ under the Agreement.
41
+ "Concurrent Executions" means the simultaneous execution of 2 or more instances of the Fair Isaac Product at
42
+ any given time, pursuant to a specified license.
43
+ "Concurrent Users" means 2 or more Authorized Users who are licensed to access the Fair Isaac Product
44
+ concurrently at any given time.
45
+ "Confidential Information" means financial, business and/or technical information, regardless of the form or
46
+ manner in which the information is disclosed or learned, including, but not limited to, marketing and product
47
+ plans, ideas, concepts, business plans, employees and employee information, inventions, algorithms, decision
48
+ technology and/or models, processes, designs, specifications, drawings, samples, improvements, developments,
49
+ applications, engineering, manufacturing and marketing data and plans, software code (object and source code),
50
+ documentation (including without limitation manuals, training materials, and presentations), functionality,
51
+ security procedures and approaches, know-how, experimental work, distribution arrangements, trade secrets and
52
+ other information that under the circumstances would be deemed by a reasonable person to be confidential. Fair
53
+ Isaac Materials (defined below) are the Confidential Information of Fair Isaac. The party disclosing Confidential
54
+ Information is the "Discloser", and the party receiving Confidential Information is the "Recipient".
55
+ "Cooperation" means Client's cooperation and provision of information reasonably required for Fair Isaac to
56
+ perform its obligations in accordance with the Agreement, including without limitation: (i) providing data and
57
+ materials in the format and according to the specifications required by Fair Isaac; (ii) for onsite services, providing
58
+ Fair Isaac with necessary access to office accommodations, facilities and equipment; (iii) providing access to
59
+ information and software interfaces to Client's business applications; (iv) providing personnel assistance as
60
+ reasonably requested by Fair Isaac; and (v) cooperating with Fair Isaac, making decisions and communicating all
61
+ information in a timely manner.
62
+ "CPU" means an individual physical central processing unit with one or more Physical Cores. Without limiting the
63
+ foregoing, if a processing unit is part of a "virtual" environment, or otherwise utilizes virtualization mechanics or
64
+ similar technology, up to 8 Logical Processors shall count as one CPU unless otherwise specified in the Purchasing
65
+ Documentation.
66
+ "Documentation" means Fair Isaac's standard, generally available user guide and technical manuals for the Fair
67
+ Isaac Product, whether in printed or electronic form, as may be amended by Fair Isaac from time to time.
68
+ "Fair Isaac Product" means a generally available software, component, module, functionality or analytic product
69
+ of Fair Isaac, including a Model and Software, described in the Purchasing Documentation (or in the Community
70
+ License or End User License materials and documents), which is licensed under the Agreement for on-premises
71
+ installation; and excluding all Third Party Products.
72
+ "Floating License" means the license to on-premises installed license management Software (a Fair Isaac Product)
73
+ that runs concurrently with the Fair Isaac Product license, both of which are purchased by Client under the
74
+ Purchasing Documentation. The Floating License permits Client to manage (on its own Operating Platform) a
75
+ limited number of purchased Fair Isaac Product licenses among Concurrent Users or CPU machines, as applicable,
76
+ pursuant to the Purchasing Documentation.
77
+ "Intellectual Property" or "Intellectual Property Rights" means rights associated with any intangible property
78
+ anywhere in the world, whether or not filed or registered, including, without limitation: (i) patents, patent
79
+ applications, and inventors' certificates; (ii) copyrights (including moral rights and author's rights), works of
80
+ authorship, copyright registrations and applications; (iii) database rights; (iv) know-how, trade secrets, and rights
81
+ in and to confidential information; (v) industrial designs (including utility models); and (vi) trademarks, trade
82
+ names, service marks, logos, Internet addresses (URLs), and the goodwill associated with them.
83
+ "Internal Use" means use of the Fair Isaac Product by Client or End User of Client for its own internal business
84
+ purposes only, and not accessible by, or for the benefit of, any Third Party, subject to the terms of the Agreement.
85
+ "License Term" shall begin on the Effective Date and continue for the period of time stated in the Purchasing
86
+ Documentation, and if no time period is stated in the Purchasing Documentation then the License Term shall be a
87
+ period of one (1) year. The License Term is otherwise non-cancelable by Client.
88
+ "Logical Processors" means the number of a CPU's physical cores multiplied by the number of threads per core.
89
+ "Maintenance Services" means the software support and maintenance services for the Fair Isaac Products
90
+ pursuant to the Fair Isaac Software Support and Maintenance Policy currently available at
91
+ https://www.fico.com/en/fair-isaac-software-support-and-maintenance-policy (and any successor or related
92
+ locations designated by Fair Isaac), as it may be updated by Fair Isaac from time to time ("Maintenance Policy" or
93
+ "Policy").
94
+ "Model" means, individually or collectively as the context requires, predictive or descriptive algorithms, analytics
95
+ and/or equations developed by Fair Isaac and from which a score, cell assignment, segmentation and/or decision
96
+ logic can be generated. Model includes both the process of applying the Client Data, as well as the predictive,
97
+ neural or descriptive algorithms and equations, and scores or other output therefrom.
98
+ "Non-Production" means use of the Fair Isaac Product for non-commercial purposes in Client's test and
99
+ development environment only.
100
+ "Operating Platform" or "Platform" means Client's computing or operating environment that is supported and
101
+ complies with the Documentation.
102
+ "Party(ies)" or "party(ies)" means Fair Isaac and Client.
103
+ "Permitted Use" means an Client's Internal Use in accordance with Article 2 below, and subject to the additional
104
+ license terms and other restrictions set forth in the Agreement.
105
+ "Physical Core" means the hardware core of a CPU.
106
+ "Production" means any use of the Fair Isaac Product other than Non-Production use.
107
+ "Production Site" is Client's address where the Fair Isaac Product is installed for Production use within the
108
+ Territory and set forth in the Purchasing Documentation.
109
+ "Purchasing Documentation" means any and all ordering documents related to the Client's purchase of licenses
110
+ to the Fair Isaac Products and Maintenance Services, including but not limited to quotations, FICO Order(s), the
111
+ Signed License Agreement(s), and invoice(s), that identifies and describes among other things, the Fair Isaac
112
+ Product(s) and/or Third Party Software, License Term, Territory, the number of licenses purchased and the
113
+ limitations on those licenses, Maintenance Services provided to Client, together with all exhibits, schedules, and
114
+ other attachments thereto. Limitations may be based on, among other things, Concurrent Executions, Concurrent
115
+ Users, Seat, CPU, Named Application, Platforms, usage, Non-Production use and Third Party Product license terms
116
+ and conditions.
117
+ "Seat" means an identified individual Authorized User accessing the Fair Isaac Product.
118
+ "Single Execution" means execution of no more than one (1) instance of the Fair Isaac Product at any given time,
119
+ pursuant to a specified license.
120
+ "Software" means all programs, applications, code, specifications, graphical user interface (GUI), including all
121
+ media of delivery thereof (CD, Tape, or other electronic means) provided to Client, and all Fair Isaac upgrades,
122
+ updates, modifications, releases, and enhancements to the Software provided to Client. Software excludes all
123
+ Third Party Product and Third Party Software.
124
+ "Taxes" mean all present and future taxes, duties, import deposits, assessments, and other governmental charges
125
+ (and any related penalties and interest not attributable to the fault or delay of Fair Isaac), however designated,
126
+ that are now or hereafter imposed by or under any governmental authority or agency that are: (i) associated with
127
+ the performance by Fair Isaac of its obligations under the Agreement; (ii) associated with the payment of any
128
+ amount by Client to Fair Isaac pursuant to the Agreement; (iii) based on the license or use of any Fair Isaac-
129
+ provided product or service; or (iv) associated with the importation of any Fair Isaac-provided product into or use
130
+ of any Fair Isaac-provided service within a country other than the country in which Fair Isaac is organized,
131
+ excepting only: (a) Fair Isaac's corporate franchise taxes and taxes imposed on Fair Isaac's net income by the
132
+ governmental authorities or agencies in any jurisdictions in which Fair Isaac is required to pay those taxes; (b)
133
+ withholding, employment, and payroll taxes relating to Fair Isaac's employees; and (c) personal property taxes on
134
+ Fair Isaac property.
135
+ "Territory" means the geographic region specified in the Purchasing Documentation. If the Territory is not
136
+ specified in the Purchasing Documentation, the Territory is the United States of America. With respect to
137
+ Community License(s) only, the Territory shall be worldwide and shall exclude all countries, regions and territories
138
+ that are prohibited by Fair Isaac and the United States' statutes, laws, regulations and regulations promulgated
139
+ thereunder.
140
+ "Third Party" means any person or entity that is not directly a named party to the Agreement.
141
+ "Third Party Product" or "Third Party Software" means the products or services of a third party that are
142
+ incorporated within Fair Isaac products or services, or licensed to Client by Fair Isaac, including such third party's
143
+ software, products, services, systems, databases, open source code, reports, lists, files or other materials.
144
+ "Web Floating License" means the license to the hosted service of the license management Software (a Fair Isac
145
+ Product) that can be used with the Fair Isaac Product license, both of which are purchased by Client under the
146
+ Purchasing Documentation. The Web Floating License permits Client to manage (through internet access) a
147
+ limited number of purchased Fair Isaac Product licenses among Concurrent Users or CPU machines, as applicable,
148
+ pursuant to the Purchasing Documentation.
149
+ 2. License Grants and Restrictions
150
+ 2.1. Grant of License.
151
+ 2.1.1. Fair Isaac Product - Paid License. Subject to the terms and conditions of the Agreement and payment of
152
+ all license fees, Fair Isaac hereby grants to Client during the License Term, a personal, non-exclusive, non-
153
+ transferable, non-assignable, non-sublicenseable, limited license for Authorized Users to use one (1) single copy
154
+ and instance of the Fair Isaac Product within the Territory at the Production Site on one (1) Operating Platform
155
+ that has been specified in the Documentation, for Client's Internal Use only and as set forth below in this section,
156
+ subject to Client's compliance with all license terms, restrictions, limitations and other terms of the Agreement
157
+ and with all applicable foreign, federal, state and local laws and regulations. Client's use of the Fair Isaac Product
158
+ under the Agreement shall be limited solely to the Permitted Use defined hereunder. Additional license and other
159
+ restrictions applicable to a Fair Isaac Product may be set forth in the Purchase Documentation. Under no
160
+ circumstances shall Client use any Fair Isaac Product on a stand-alone basis or in connection with any application
161
+ or use case not expressly defined in the Permitted Use, or for the benefit of any third party.
162
+ (a) Class 1 License (Single Authorized User, Single Execution). If the license to the Fair Isaac Product is
163
+ designated by the Purchasing Documentation as a Class 1 License, then Client is permitted to operate a
164
+ single execution of the Fair Isaac Product by only a single Authorized User on a single personal computer
165
+ (e.g., a desktop computer or a laptop computer). Transfer of the license to a different computer must be
166
+ approved by Fair Isaac and may incur additional fees. Access to or operation of the Fair Isaac Product on
167
+ the personal computer through remote or network access technology of any kind is not permitted.
168
+ Running multiple instances of the Fair Isaac Product at any given time is not permitted.
169
+ (b) Class 2 License (Multiple Authorized Users, Single Execution). If the license to the Fair Isaac
170
+ Product is designated by the Purchasing Documentation as a Class 2 License, then Client is permitted to
171
+ operate a single execution of the Fair Isaac Product on one (1) computer with one (1) Operating Platform
172
+ (e.g., a personal computer, a workstation computer, or a server computer). Transfer of the license to a
173
+ different Operating Platform or with hardware components different from those listed in the Purchasing
174
+ Documentation must be approved by Fair Isaac in writing and may incur additional fees. Any number of
175
+ Authorized Users can access the Fair Isaac Product on the single Operating Platform, and access to or
176
+ operation of the Fair Isaac Product using remote or network access technology is permitted in accordance
177
+ with the Documentation. However, running multiple instances of the Fair Isaac Product at any given time
178
+ is not permitted.
179
+ (c) Class 3 License (Unlimited Authorized Users, Concurrent Executions). If the license to the Fair
180
+ Isaac Product is designated by the Purchasing Documentation as a Class 3 License, then Client is permitted
181
+ to operate the Fair Isaac Product on one (1) designated computer with one (1) Operating Platform (e.g., a
182
+ personal computer, a workstation computer, or a server computer). Transfer of the license to a different
183
+ Operating Platform or with hardware components different from those listed on the Purchasing
184
+ Documentation must be approved by Fair Isaac in writing and may incur additional fees. Any number of
185
+ Authorized Users can access the Fair Isaac Product on the single Operating Platform, and access to or
186
+ operation of the Fair Isaac Product using remote or network access technology is permitted. Client may
187
+ run unlimited Concurrent Executions of the Fair Isaac Product to solve an unlimited number of Models
188
+ concurrently. However, running multiple instances of the Fair Isaac Product at any given time is not
189
+ permitted.
190
+ (d) Floating License. If the license for the Fair Isaac Product is designated by the Purchasing
191
+ Documentation as a Floating License (e.g., may be indicated by a separate line item) and limited to a
192
+ specified number of Concurrent Users and Concurrent Executions, then Client is permitted to install the
193
+ Fair Isaac Product on an unlimited number of machines on Client's Operating Platform. The number of
194
+ Models being executed concurrently by the Fair Isaac Product at any given time shall not exceed the
195
+ number of Concurrent Users and/or Concurrent Executions purchased with the license under the
196
+ Purchasing Documentation.
197
+ (e) Web Floating License. If the license for the Fair Isaac Product is designated by the Purchasing
198
+ Documentation as a Web Floating License (e.g., may be indicated as a separate line item) and limited to a
199
+ specified number of Concurrent Users and Concurrent Executions, then Client is permitted to install the
200
+ Fair Isaac Product on an unlimited number of machines on Client's Operating Platform. The number of
201
+ Models being executed concurrently by the Fair Isaac Product at any given time shall not exceed the
202
+ number of Concurrent Users and/or Concurrent Executions purchased with the license under the
203
+ Purchasing Documentation. Web Floating Licenses require internet connectivity to URLs in accordance
204
+ with the Documentation. Additional usage limits may apply as specified in the Purchasing Documentation.
205
+ (f) Non-Production or Development License. If the license to the Fair Isaac Product is designated by
206
+ the Purchasing Documentation as a Non-Production license or a Development license, then Client shall
207
+ use the Fair Isaac Product for Non-Production purposes only, and Client shall not use any application,
208
+ solution or model developed under the Non-Production license for any internal data processing or for any
209
+ commercial, operational, runtime or other Production purposes.
210
+ (g) Dongle License. If the license to the Fair Isaac Product is designated by the Purchasing
211
+ Documentation as for use with a purchased hardware USB dongle device, then Client is permitted to
212
+ install the Fair Isaac Product on an unlimited number of machines on Client's local Operating Platform,
213
+ and Client is authorized to run a maximum of one (1) instance or copy of the Fair Isaac Product on one (1)
214
+ CPU machine at any given time using the dongle provided.
215
+ (h) Single Authorized Insight User License. If the license to the Fair Isaac Product is designated in the
216
+ Purchasing Documentation as limited to a specified number of Authorized Users or Seats, then Client is
217
+ permitted to install the Fair Isaac Product on a server or any supported Operating Platform that is
218
+ accessed only by designated Authorized Users through a local area network, provided that the number of
219
+ Authorized Users accessing the Fair Isaac Product at any one time does not exceed the number of
220
+ Authorized Users or Seats purchased under the Purchasing Documentation.
221
+ (i) Insight Viewer License. If the license to the Fair Isaac Product is designated by the Purchasing
222
+ Documentation as an Insight Viewer License, then the Fair Isaac Product may only be used by Authorized
223
+ Users to view visualizations, reports and data of scenarios.
224
+ (j) Insight Admin License. If the license to the Fair Isaac Product is designated by the Purchasing
225
+ Documentation as an Insight Admin License, then Fair Isaac Product may only be used by Authorized
226
+ Users for the purposes of performing administrative tasks such as installation, user management and
227
+ resource management.
228
+ (k) Other Limitations. If the license for the Fair Isaac Product is limited in the Purchasing
229
+ Documentation in any other manner, Client's use of the Fair Isaac Product is subject to those other
230
+ limitations. These additional limitations may be based on, among other things, department, features,
231
+ capacity, license type, use case or otherwise.
232
+ 2.1.2. Evaluation License. If Client is receiving an evaluation license to the Fair Isaac Product (either through
233
+ access to Fair Isaac's electronic evaluation site or otherwise), then the terms and conditions of the Agreement and
234
+ this section shall define such evaluation license grant to Client. Fair Isaac hereby grants to Client a personal,
235
+ revocable, non-exclusive, non-transferable, non-sublicensable, non-assignable, limited license to display and
236
+ perform the Fair Isaac Product and Documentation within the Territory for a period of 30 days (unless 60 days is
237
+ expressly stated in the Purchasing Documentation) from the delivery date of the Fair Isaac Product ("Evaluation
238
+ Period"), solely for Non-Production purposes for Client to evaluate whether Client wants to purchase a license to
239
+ the Fair Isaac Product, only by Authorized Users, and subject to the limitations set forth in the Agreement and/or
240
+ otherwise imposed by Fair Isaac. At the end of the Evaluation Period, all license grants shall immediately
241
+ terminate and are hereby revoked, and Client shall immediately cease all use of the Fair Isaac Product.
242
+ 2.1.3. Community License. If Client is receiving a Community License, then subject to the terms and conditions
243
+ of the SWLA and this section, Fair Isaac hereby grants to Client a personal, revocable, non-exclusive, non-
244
+ transferable, non-assignable, non-sublicenseable, limited license to use the Fair Isaac Product within the Territory
245
+ for a period of one (1) year from the delivery date of the Fair Isaac Product ("Community License Period") for
246
+ Client's own Internal Use, and subject to Client's compliance with all license terms, restrictions and limitations
247
+ herein. The Community License is provided "AS IS" without any warranty, support and Maintenance Services. If
248
+ Client wants Maintenance Services for the Fair Isaac Product, then Fair Isaac will provide such support pursuant to
249
+ a fee-based maintenance and support agreement. As a condition of the license grant herein, Client shall not
250
+ upload any personally identifiable or other protected personal data ("Personal Data").
251
+ 2.1.4. End User License. If Client is an authorized reseller or distributor of Fair Isaac under an effective Signed
252
+ License Agreement, then subject to the terms and conditions of the SWLA and this Article 2 inclusive, Fair Isaac
253
+ hereby grants to the end user customer of such reseller/distributor Client ("End User") a personal, revocable, non-
254
+ exclusive, non-transferable, non-assignable, non-sublicenseable, limited license to use the Fair Isaac Product
255
+ within the Territory for the period of time that Fair Isaac has granted such sublicense grant to such
256
+ reseller/distributor Client, or for a period of one (1) year from the delivery date of the Fair Isaac Product if no time
257
+ is specified ("End User License Period"), for End User's own Internal Use, and subject to both Client's and End
258
+ User's compliance with all license terms, restrictions and limitations herein. The End User License is provided "AS
259
+ IS" without any warranty, support and Maintenance Services. If End User wants Maintenance Services for the Fair
260
+ Isaac Product, Client must provide such support to End User. As a condition of the license grant herein, End User
261
+ shall not upload any Personal Data. End User must comply with and is subject to all of the same terms and
262
+ conditions contained in the Agreement as Client.
263
+ 2.1.5. Documentation. Subject to the terms and conditions of the Agreement, Fair Isaac hereby grants to Client
264
+ during the License Term, Evaluation Period and Community License Period (as applicable), a personal, revocable,
265
+ non-exclusive, non-transferable, non-assignable, non-sublicenseable, limited license to perform and display the
266
+ Documentation in the Territory solely for Client's and Authorized Users' Permitted Use of the Fair Isaac Product,
267
+ and subject to the same terms, conditions and restrictions that apply to the Fair Isaac Product. Client may
268
+ internally reproduce Documentation only to the extent permitted under the Agreement. Client shall only use the
269
+ Fair Isaac Product in accordance with such Documentation.
270
+ 2.2. Reservation of Rights. Fair Isaac reserves all rights not expressly granted to Client under the Agreement.
271
+ Unless otherwise expressly provided, all Intellectual Property Rights in products, services, custom code,
272
+ documentation, deliverables, other materials and know-how owned or developed in whole or in part by Fair Isaac
273
+ or any of its Affiliates, including Fair Isaac Products and Documentation (all of the foregoing, "Fair Isaac
274
+ Materials"), are retained exclusively by Fair Isaac or that Affiliate. Subject to Fair Isaac's obligations with respect
275
+ to Client's Confidential Information, Fair Isaac and its Affiliates are free to use any ideas, concepts, techniques,
276
+ and know-how developed pursuant to the Agreement for themselves and for other clients.
277
+ 2.3. Notice Reproduction. To the extent Client is given rights to reproduce any Fair Isaac Materials, Client must
278
+ reproduce on each copy of such materials any copyright, patent, or trademark notice, and any other proprietary
279
+ legends that were contained in the originals.
280
+ 2.4. Restrictions. Client and its employees, representatives, and/or agents will not, with respect to products,
281
+ services and deliverables provided by Fair Isaac: (i) use them for any purpose other than the internal business
282
+ operations of Client or in any other manner that exceeds the scope of the licenses granted under the Agreement
283
+ or that otherwise violates the Agreement; (ii) in any way modify, adapt, translate, combine them with other
284
+ works, or make derivative works from them; (iii) reverse engineer, decompile, disassemble, or otherwise attempt
285
+ to reduce any object code to human perceivable form or permit others to do so; (iv) disclose them to, or permit
286
+ the use or access of them by, any third party; (v) assign, license, lease, transfer, or distribute them; (vi) operate
287
+ any of them for timesharing, rental, outsourcing, or service bureau operations (or otherwise for the benefit of any
288
+ party other than Client); or (vii) disclose or publish performance benchmark results for them without Fair Isaac's
289
+ prior written consent.
290
+ 2.5. Maintenance Services. Standard and generally available Fair Isaac Products are eligible to receive
291
+ Maintenance Services. Client's license grants and right to receive Maintenance Services are subject to Client's
292
+ payment of all fees. If Client fails to pay fees or does not comply with the license terms, conditions and
293
+ restrictions, then Fair Isaac at its option may immediately suspend Maintenance Services, until such failure or
294
+ noncompliance has been cured. Such suspension is in addition to Fair Isaac termination rights under the
295
+ Agreement and does not relieve Client of its payment obligations. Maintenance Services do not apply to
296
+ Evaluation Licenses, Community Licenses and End User Licenses.
297
+ 2.6. Platforms/Options. Client shall only use the version of the Fair Isaac Product for the specific supported
298
+ platform(s) as set forth in the Documentation, unless the Signed License Agreement executed by both parties
299
+ states otherwise. Unless specifically set forth in the Purchasing Documentation, Client does not obtain any right to
300
+ options or additional related products or service.
301
+ 3. Protection of Confidential Information
302
+ 3.1. Limitations on Disclosure and Use. Recipient may use Confidential Information of the Discloser only for
303
+ the purposes of exercising Recipient's rights and fulfilling Recipient's obligations under the Agreement. Recipient
304
+ shall use the same degree of care, but no less than a reasonable degree of care, to protect against the
305
+ unauthorized disclosure or use of Discloser's Confidential Information as it uses to protect its own confidential
306
+ information of a similar type. Recipient shall disclose Confidential Information of Discloser only to its personnel
307
+ who have a need to know for the above stated purposes, provided each is bound by obligations of confidentiality
308
+ no less restrictive than the terms of the Agreement. Recipient shall not remove any confidentiality or proprietary
309
+ notices from Discloser's Confidential Information. If Recipient provides Discloser with comments, suggestions or
310
+ other input regarding Discloser's Confidential Information or Intellectual Property, Discloser will have an
311
+ unrestricted, worldwide, royalty-free right to use those comments, suggestions, or other input for any purpose
312
+ and in any manner, and to authorize others to do so.
313
+ 3.2. Exceptions. Recipient's obligation under the Agreement to treat information as Confidential Information
314
+ does not apply to information that: (i) is already known to Recipient at the time of disclosure and was not
315
+ obtained, directly or indirectly, from Discloser; (ii) is independently developed by Recipient without reference to
316
+ or use of the Discloser's Confidential Information; (iii) is obtained by Recipient from another source without a
317
+ breach of any obligation of confidentiality owed by that source to Discloser; or (iv) is or becomes publicly available
318
+ through no wrongful act of Recipient or any party that obtained the information from Recipient. If Recipient is
319
+ served with a subpoena or other legal process, court, or governmental request or order requiring disclosure, or is
320
+ otherwise required by law or securities exchange requirement to disclose, any of Discloser's Confidential
321
+ Information, Recipient shall, unless prohibited by law, promptly notify Discloser of that fact and cooperate fully
322
+ (at Discloser's expense) with Discloser and its legal counsel in opposing, seeking a protective order, seeking to
323
+ limit, or appealing the subpoena, legal process, request, order, or requirement to the extent deemed appropriate
324
+ by Discloser. Recipient may comply with the subpoena or other legal process or requirement after complying with
325
+ the foregoing sentence, but only to the extent necessary for compliance.
326
+ 3.3. Injunctive Relief. The parties acknowledge that the remedies at law available for the protection of
327
+ Confidential Information or Intellectual Property may be inadequate, and, without limiting any rights available at
328
+ law, each party is entitled to seek injunctive relief for any breach of the Agreement relating to the protection of its
329
+ Confidential Information or Intellectual Property Rights.
330
+ 4. Representations and Warranties
331
+ 4.1. Representations. Each party represents that: (i) it is duly organized, validly existing, and in good standing
332
+ under the laws of its jurisdiction of incorporation or organization; (ii) it has the power and authority to enter into
333
+ and perform all its obligations under the Agreement; and (iii) the Purchasing Documentation has been signed
334
+ and/or accepted by its duly authorized representatives who are able to bind their respective companies.
335
+ 4.2. Warranty. This section does not apply to Community Licenses, Evaluation Licenses and End User Licenses.
336
+ Fair Isaac warrants that the Fair Isaac Product will conform in all material respects to its Documentation for a
337
+ period of 30 days from the initial date of delivery of the Fair Isaac Product. To assert a warranty claim, Client must
338
+ report any breach of this warranty in writing within the warranty period (along with all information available to
339
+ Client that is relevant to verifying, diagnosing, or correcting the error). For any breach of this warranty, Client's
340
+ sole and exclusive remedy and Fair Isaac's entire liability shall be at Fair Isaac's option to either (i) correct any
341
+ reproducible error in the Fair Isaac Product reported to Fair Isaac, or (ii) replace the Fair Isaac Product. Warranty
342
+ Exclusions. The warranty above does not apply (i) if the Fair Isaac Product is not used in accordance with the
343
+ Agreement or its Documentation; (ii) if the non-conformity is caused by any third party product, service or
344
+ materials; (iii) to any modification of the Fair Isaac Product not performed by Fair Isaac; (iv) to any third party
345
+ software, product, service, system, database, open source code, reports, lists, files or other materials, or the
346
+ combination of any of the foregoing by Client with the Fair Isaac Product; and (v) any and all Evaluation License,
347
+ Community License and End User License grants to the Fair Isaac Product.
348
+ 4.3. WARRANTY DISCLAIMER. Except to the extent expressly stated under the Agreement, Fair Isaac does not
349
+ warrant that any product, service or deliverable provided by Fair Isaac will: (i) meet Client's requirements; (ii)
350
+ operate in combination with hardware, software, systems or data not expressly specified in writing by Fair Isaac;
351
+ (iii) meet any performance level, resource utilization, response time, or system overhead requirements; or (iv)
352
+ operate uninterrupted, free of errors, or without delay. Fair Isaac is not responsible for problems or errors caused
353
+ by: (a) use of any product, service or deliverable provided by Fair Isaac outside the scope of the Agreement or not
354
+ used in compliance with applicable documentation; (b) any modification to a product, service or deliverable not
355
+ made by Fair Isaac; (c) any change in or modification to the operating characteristics of Client's system or any
356
+ component of Client's system that is inconsistent with the product or services documentation or specification; or
357
+ (d) use of any product, service or deliverable provided by Fair Isaac with hardware or software that is not
358
+ indicated in the applicable documentation to be interoperable with the same. EXCEPT FOR THE EXPRESS
359
+ WARRANTIES SET FORTH IN THE AGREEMENT, FAIR ISAAC MAKES NO WARRANTIES, EITHER EXPRESS OR IMPLIED,
360
+ AND HEREBY DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING ANY WARRANTIES REGARDING
361
+ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WARRANTIES OF TITLE AND NON-INFRINGEMENT,
362
+ AND ANY WARRANTY ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. CLIENT IS SOLELY
363
+ RESPONSIBLE FOR ITS USE OF ANY PRODUCTS, SERVICES AND DELIVERABLES PROVIDED BY FAIR ISAAC UNDER THE
364
+ AGREEMENT AND FOR ANY LIABILITY ARISING FROM SUCH USE, INCLUDING CONCLUSIONS DRAWN THEREFROM,
365
+ OR FROM THE DATA OR CONTENT SUPPLIED BY CLIENT. IF CLIENT IS RECEIVING A COMMUNITY LICENSE OR A
366
+ LICENSE TO THE FAIR ISAAC PRODUCT FOR EVALUATION PURPOSES, THEN THE WARRANTY SET FORTH IN SECTION
367
+ 4.2 WILL NOT APPLY AND CLIENT ACKNOWLEDGES AND AGREES THAT THE FAIR ISAAC PRODUCT IS LICENSED ON
368
+ AN "AS IS" BASIS WITHOUT ANY WARRANTY.
369
+ 5. Indemnification. Client shall defend at its own expense any action against Fair Isaac or its Affiliates
370
+ brought by a third party to the extent the action is based upon: (i)(a) any violation of the terms of Client's license,
371
+ (b) any combination or use of any Fair Isaac Product with other products, equipment, software or data, (c) any
372
+ modification of a Fair Isaac Product made pursuant to Client specifications or any other modification made by any
373
+ entity other than Fair Isaac or its Affiliates, (d) any claim that would have been avoided or mitigated had Client
374
+ upgraded to a new version or release of the Fair Isaac Product made available by Fair Isaac to Client, (e) any third
375
+ party software or other material, including Third Party Products, (f) trial or beta use of the Fair Isaac Product, or
376
+ (g) any unauthorized use of the Fair Isaac Product or use other than in accordance with the applicable
377
+ documentation; (ii) any data, information, documentation, software, service, technology or other material
378
+ provided to Fair Isaac by Client or at Client's direction, including but not limited to Client Data and other Client
379
+ material; or (iii) Fair Isaac's adherence to specifications or requirements provided by Client. Client will pay those
380
+ costs and damages finally awarded against Fair Isaac or its Affiliates in the action that are specifically attributable
381
+ to that claim, or those costs and damages agreed to in a monetary settlement of the action that are specifically
382
+ attributable to the claim. For the avoidance of doubt, Client shall not admit liability or incur obligations on Fair
383
+ Isaac's behalf without Fair Isaac's prior written consent. Fair Isaac has no obligation with respect to any claim
384
+ based on or arising out of the foregoing clauses (i), (ii) and (iii).
385
+ 6. Limitation of Liability
386
+ 6.1. IN NO EVENT WILL EITHER PARTY BE LIABLE UNDER ANY THEORY OF RECOVERY (INCLUDING WITHOUT
387
+ LIMITATION BREACH OF CONTRACT, BREACH OF WARRANTY, NEGLIGENCE, TORT AND STRICT LIABILITY) FOR ANY
388
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL (INCLUDING WITHOUT LIMITATION LOSS OF
389
+ DATA, USE, GOODWILL, INCOME, PROFIT OR SAVINGS) OR PUNITIVE DAMAGES ARISING OUT OF OR IN
390
+ CONNECTION WITH THE AGREEMENT OR ANY PRODUCT, SERVICE OR DELIVERABLE PROVIDED BY FAIR ISAAC
391
+ UNDER THE AGREEMENT, EVEN IF THE RESPONSIBLE PARTY HAD BEEN ADVISED OF THE POSSIBILITY OF THOSE
392
+ TYPES OF DAMAGES OR EVEN IF THOSE TYPES OF DAMAGES WERE REASONABLY FORESEEABLE; PROVIDED,
393
+ HOWEVER, THE FOREGOING LIMITATION IS INAPPLICABLE TO: (A) CLIENT'S OBLIGATION TO PAY AMOUNTS OWED
394
+ TO FAIR ISAAC FOR PRODUCTS, SERVICES AND DELIVERABLES PROVIDED BY FAIR ISAAC UNDER THE AGREEMENT
395
+ OR OTHERWISE (INCLUDING COSTS OF COLLECTION OF UNPAID AMOUNTS), (B) DAMAGES ARISING FROM OR AS
396
+ A RESULT OF AN INFRINGEMENT OR VIOLATION OF FAIR ISAAC'S INTELLECTUAL PROPERTY RIGHTS (INCLUDING
397
+ BREACH OF ANY LICENSE GRANT OR RESTRICTION) AND (C) CLIENT'S INDEMNIFICATION OBLIGATIONS UNDER THE
398
+ AGREEMENT.
399
+ 6.2. SUBJECT TO SECTION 6.1 AND SECTION 6.3, THE TOTAL AGGREGATE LIABILITY OF EITHER PARTY FOR ALL
400
+ CLAIMS ARISING UNDER OR RELATED TO THE AGREEMENT, UNDER ANY AND ALL THEORIES OF LIABILITY
401
+ (INCLUDING WITHOUT LIMITATION BREACH OF CONTRACT, BREACH OF WARRANTY, NEGLIGENCE, TORT AND
402
+ STRICT LIABILITY), WILL NOT EXCEED THE TOTAL AMOUNT PAID BY CLIENT (EXCLUDING IMPLEMENTATION FEES
403
+ AND REIMBURSED EXPENSES) FOR THE FAIR ISAAC PRODUCT(S), SERVICE(S) OR DELIVERABLE(S) TO WHICH THE
404
+ CLAIM(S) RELATE(S) DURING THE 12 MONTHS IMMEDIATELY PRECEDING THE DATE OF THE MOST RECENT CLAIM
405
+ THAT GAVE RISE TO THE LIABILITY (THE "LIABILITY CAP"). NOTWITHSTANDING THE FOREGOING, THE FOLLOWING
406
+ ARE INDEPENDENT OF AND NOT SUBJECT TO THE LIABILITY CAP: (A) CLIENT'S OBLIGATION TO PAY AMOUNTS
407
+ OWED TO FAIR ISAAC FOR PRODUCTS, SERVICES AND DELIVERABLES PROVIDED BY FAIR ISAAC UNDER THE
408
+ AGREEMENT OR OTHERWISE (INCLUDING COSTS OF COLLECTION OF UNPAID AMOUNTS), (B) CLIENT'S
409
+ INDEMNIFICATION OBLIGATIONS UNDER THE AGREEMENT, AND (C) DAMAGES ARISING FROM OR AS A RESULT OF
410
+ AN INFRINGEMENT OR OTHER VIOLATION OF FAIR ISAAC'S INTELLECTUAL PROPERTY RIGHTS (INCLUDING BREACH
411
+ OF ANY LICENSE GRANT OR RESTRICTION).
412
+ 6.3. NOTWITHSTANDING ANYTHING CONTAINED TO THE CONTRARY IN THE AGREEMENT OR OTHERWISE,
413
+ FAIR ISAAC'S LIABILITY CAP FOR ALL COMMUNITY LICENSES, EVALUATION LICENSES AND END USER LICENSES
414
+ SHALL BE AN AMOUNT EQUAL TO FIVE HUNDRED DOLLARS ($500) US DOLLARS. Fair Isaac has set its prices and
415
+ entered into the Agreement in reliance upon the limitations of liability and the disclaimers of warranties and
416
+ damages set forth herein, and the same forms an essential basis of the bargain between the parties.
417
+ 7. Payment Terms
418
+ 7.1. Invoices and Payments.
419
+ (a) All fees and charges (other than expenses) will be set forth in the applicable Purchasing Documentation.
420
+ Except as otherwise provided, all fees, charges and expenses must be paid within 30 days of the date of an
421
+ invoice. All amounts are payable in the currency stated in the Purchasing Documentation (or, if no currency is
422
+ stated in the Purchasing Documentation, then in US Dollars) in accordance with the instructions provided in the
423
+ invoice or other instructions provided by Fair Isaac. Without prejudice to its other rights and remedies, if Fair Isaac
424
+ does not receive any payment by its due date, Fair Isaac may assess a late payment charge on the unpaid amount
425
+ at the rate of 1.5% per month or the highest rate allowed under applicable law, whichever is less. In addition, Fair
426
+ Isaac may terminate the relevant Purchasing Documentation, including any licenses granted to Client or otherwise
427
+ therein, or terminate the service concerned, but not until Fair Isaac has given Client written notice, and the
428
+ amount remains unpaid 30 days after Fair Isaac gives the notice. Client shall reimburse Fair Isaac for all costs
429
+ related to any proceedings to collect any amounts owed under or arising out of this Agreement, including without
430
+ limitation attorneys' fees and expenses. All fees paid hereunder are nonrefundable without any right of set-off or
431
+ deduction.
432
+ (b) Client shall timely pay all fees, costs and expenses hereunder in accordance with the terms of the
433
+ Agreement. Fees for the Fair Isaac Product begin on the Commencement Date. Reference to "year" or "annual"
434
+ means each 1-year period that begins on the Commencement Date (or anniversary of the Commencement Date,
435
+ as applicable) within the License Term. All annual fees are due and payable on the Commencement Date and
436
+ thereafter on every anniversary of the Commencement Date. All one-time set up and other fees are due and
437
+ payable on the Effective Date. All monthly fees and all transaction, overage, volume-based and usage fees
438
+ (collectively, "Transaction Fees") are due and payable monthly in arrears. If there is a change to a size, tier or
439
+ other classification-based fee, such fee is due and payable in arrears immediately following the event that
440
+ changed such size, tier or classification.
441
+ (c) Payment of the fees under the Agreement permit Client to use of the Fair Isaac Product subject to the
442
+ Scope/Quantity Limit and other applicable terms, and no additional or excess use is permitted. An amendment to
443
+ the Agreement executed by both parties is required before Client is permitted to make any additional or excess
444
+ use, and Client understands that fees shall be subject to change.
445
+ (d) In the event Fair Isaac requests information that is necessary for Fair Isaac to calculate or verify the
446
+ Transaction Fees, then Client will send such information within the time specified in Fair Isaac's request. Client is
447
+ responsible for payment of all fees for any and all use, access, transmission and/or processing of the Fair Isaac
448
+ Product in all environments and phases, as well as additional costs for services or items requested by Client that
449
+ are not included in the Fair Isaac Product.
450
+ 7.2. Costs and Expenses. Prices do not include reasonable travel and associated out-of-pocket expenses
451
+ incurred by Fair Isaac in connection with the Agreement, which Client agrees to reimburse at Fair Isaac's actual
452
+ cost.
453
+ 7.3. Price Adjustments. All fees and charges in the Purchasing Documentation may be reviewed and adjusted
454
+ by Fair Isaac on an annual basis. Annual adjustments will not exceed the most recently available annual rate
455
+ increase of CPI, provided that the number of users, volume levels, account criteria and other pricing or licensing
456
+ metrics have not changed under such Purchasing Documentation (in which case, the increase may be higher than
457
+ CPI). "CPI" means (i) with respect to US Dollars, the Consumer Price Index for All Urban Consumers (CPI-U) for the
458
+ U.S. City Average for All Items, 1982-84=100, as published by the US Bureau of Labor Statistics, and (ii) with
459
+ respect to any other currency stated in the Purchasing Documentation, a published consumer price index selected
460
+ by Fair Isaac for such currency.
461
+ 7.4. Taxes and other Charges. Unless otherwise stated in the Purchasing Documentation, all charges under the
462
+ Agreement are stated exclusive of any applicable Taxes, and Client is solely responsible for, and shall pay or
463
+ reimburse Fair Isaac for, all Taxes. Fair Isaac shall promptly remit to the appropriate tax authority all Taxes
464
+ collected from Client on account of Client's tax obligations, if any. If Fair Isaac receives a refund of Taxes
465
+ attributable to amounts paid by Client under the Agreement, Fair Isaac shall pay the refunded amount to Client
466
+ within 30 days of its receipt.
467
+ 7.5. Verification and Audit Rights. Client shall maintain adequate books, records, and accounting practices and
468
+ systems that will allow proper calculation, documentation and reporting of payments due to Fair Isaac under the
469
+ Agreement, and that will facilitate auditing of those books, records, systems and Client's use of the Fair Isaac
470
+ products, services and deliverables. At Fair Isaac's written request, Client shall promptly provide to Fair Isaac a
471
+ written report certified by an authorized officer of Client that provides information reasonably requested by Fair
472
+ Isaac to calculate or verify payments due to Fair Isaac under the Agreement, to verify the nature and extent of
473
+ Client's use of the Fair Isaac products, services and deliverables, or to verify that Client has complied with the
474
+ terms of the Agreement. In addition, upon at least 10 days' prior written notice to Client, Fair Isaac may, at its
475
+ expense, audit Client's use of the Fair Isaac products, services and deliverables, and all records of Client relating to
476
+ the Agreement. Audits must be conducted at Client's facilities during regular business hours, with as little
477
+ disruption to Client's business activities as reasonably possible. Client shall cooperate with Fair Isaac's auditors in
478
+ conducting the audit. Fair Isaac may conduct audits no more than twice in any calendar year. Client shall promptly
479
+ pay to Fair Isaac the amount of any underpayment discovered in such audit. If Client is discovered to have
480
+ understated any fees owed to Fair Isaac by more than 5%, or if Fair Isaac learns that Client has breached the
481
+ Agreement, then Client shall also promptly pay to Fair Isaac all reasonable costs of the audit.
482
+ 8. Term and Termination
483
+ 8.1. Term of SWLA. Unless otherwise terminated as specified in this Article, the term of this SWLA shall
484
+ continue for as long as there is a License Term, Evaluation Period, Community License Period and End User License
485
+ Period, in effect, unless Fair Isaac sends written notification that it elects to terminate this SWLA.
486
+ 8.2. Termination of a Purchasing Documentation. Fair Isaac may terminate the Agreement or any Purchasing
487
+ Documentation by providing written notice to Client if: (i) Client or any user has committed a material breach of
488
+ the Agreement or any Purchasing Documentation and has failed to remedy the breach within 30 days after receipt
489
+ of the written notice requiring it to be remedied, or (ii) Client ceases to conduct business in the ordinary course or
490
+ is declared insolvent or bankrupt, or makes an assignment of substantially all of its assets for the benefit of
491
+ creditors, or has a receiver appointed over all or substantially all of its assets, or any proceeding is demanded by,
492
+ for, or against the other party under any provision of bankruptcy or insolvency legislation. In addition, Fair Isaac
493
+ may immediately suspend its performance under or terminate the Agreement or any Purchasing Documentation
494
+ if Client or any user: (i) violates the terms of any license grant or restriction, or (ii) violates any import, export or
495
+ re-export laws or regulations, or becomes a Restricted Party or located in a Restricted Jurisdiction.
496
+ 8.3. Termination of Agreement. Notwithstanding anything to the contrary in the Agreement, if Client is in
497
+ breach of any provision of the Agreement involving a failure of payment or violation of Fair Isaac's Intellectual
498
+ Property Rights (including breach of any license grant or restriction by Client or any user), and fails to remedy the
499
+ breach within 30 days after receipt of written notice, then Fair Isaac may at its option terminate (i) the Purchasing
500
+ Documentation subject to the breach or (ii) the Agreement.
501
+ 8.4. Effect of Termination or Expiration. Upon termination or expiration of any Purchasing Documentation for
502
+ any reason: (i) all licenses granted to Client under that Purchasing Documentation and the Agreement will
503
+ terminate immediately, as well as all Fair Isaac services obligations, including support and maintenance
504
+ obligations; (ii) Client shall and shall cause all users to immediately cease using all affected Fair Isaac Products,
505
+ services, deliverables and related documentation; (iii) Client shall and shall cause all users to remove all copies of
506
+ the affected Fair Isaac Products, deliverables and related documentation from Client's and users' computers and
507
+ systems; (iv) Client shall either (a) irretrievably destroy all copies of the affected Fair Isaac Products, deliverables,
508
+ related documentation, and other related Fair Isaac Confidential Information and Intellectual Property, or (b) at
509
+ Fair Isaac's option, return to Fair Isaac all copies of the affected Fair Isaac Products, deliverables, related
510
+ documentation, and other Fair Isaac Confidential Information and Intellectual Property; (v) Client shall provide to
511
+ Fair Isaac a written certification signed by an authorized officer of Client certifying that Client has complied in full
512
+ with the foregoing; and (vi) all fees and other charges provided for in the Agreement or in any Purchasing
513
+ Documentation will become immediately due and payable.
514
+ 8.5. Survival. The following provisions of this SWLA will survive the term of this SWLA: Article 1 (Definitions),
515
+ Section 2.2. (Reservation of Rights), Article 3 (Protection of Confidential Information), Section 4.3 (Warranty
516
+ Disclaimer), Article 5 (Indemnification), Article 6 (Limitation of Liability), Article 7 (Payment Terms), Section 8.4
517
+ (Effect of Termination or Expiration), Section 8.5 (Survival), and Article 9 (Miscellaneous) except for Section 9.6
518
+ (Marketing).
519
+ 9. Miscellaneous
520
+ 9.1. Export Controls; Government Sanctions. Client acknowledges that products and related documentation
521
+ and technical data provided under the Agreement may be subject to export laws of the U.S. and other countries
522
+ from where the products were originally obtained by Client. Client shall comply with applicable export laws before
523
+ exporting or re-exporting such products or related documentation or technical data to other countries. Client will
524
+ not export, re-export, or otherwise transfer or make available, directly or indirectly, the products or related
525
+ documentation or technical data to: (i) any country or territory that is, or whose government is, the target of
526
+ economic or trade sanctions or embargos by the U.S. government (including OFAC, BIS, or the US State
527
+ Department) or, as applicable, sanctions or embargos by governments of other countries (each, a "Restricted
528
+ Jurisdiction"), or (ii) any person or entity on (or owned or controlled by a person or entity on) the U.S. Treasury
529
+ Department's List of Specially Designated Nationals, the U.S. Department of Commerce Denied Person's or Entity
530
+ List, or other restricted party list maintained by the U.S. government or government of any other country (each,
531
+ a "Restricted Party"). Client represents and warrants that Client is not a Restricted Party and is not located in a
532
+ Restricted Jurisdiction. Client agrees not to use the products or related documentation or technical data for any
533
+ purpose prohibited by applicable export laws. Client will promptly notify Fair Isaac if Client becomes aware that it
534
+ has failed to comply with any of the requirements of this section. If Client fails to comply with the terms of this
535
+ section, in addition to Fair Isaac's remedies at law and in equity, Fair Isaac may suspend performance of its
536
+ obligations under the Agreement until Client is in compliance.
537
+ 9.2. Import Licenses. Client is responsible for (i) obtaining all licenses, permits, clearances or approvals that
538
+ may be required to import any products and/or services into the country of designated delivery, and (ii) paying
539
+ any and all related Taxes. At Fair Isaac's request, Client shall provide Fair Isaac copies of all relevant import
540
+ documentation relating to products or services provided under the Agreement. Fair Isaac will not be required to
541
+ deliver any products or provide services to locations, persons and/or entities prohibited by applicable export laws
542
+ or government sanctions.
543
+ 9.3. U.S. Government Users. The Fair Isaac Product was developed entirely at private expense and is
544
+ commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S.
545
+ Government or a U.S. Government contractor or subcontractor is subject to the restrictions set forth in the
546
+ Agreement and as provided in FAR 12.211 and 12.212 (48 CFR Sec. 12.211 and 12.212) or DFARS 227.7202 (48 CFR Sec.
547
+ 227.7202-1, Sec. 227.7202-3) as applicable. Consistent with the above Commercial Computer Software and
548
+ Commercial Computer Documentation are licensed to U.S. Government end users only as commercial items and
549
+ only with those rights as are granted to all other end users under the terms and conditions set forth in the
550
+ Agreement.
551
+ 9.4. Commercial Items. The documentation and deliverables provided to the U.S. Government are
552
+ "Commercial Items," as that term is defined at 48 C.F.R. Sec. 2.101, consisting of "Commercial Computer Software"
553
+ and "Commercial Computer Software Documentation," within the meaning of 48 C.F.R. Sec. 12.212 or 48 C.F.R. Sec.
554
+ 227.7202, as applicable. Consistent with 48 C.F.R. Sec. 12.212 or 48 C.F.R. Sec. 227.7202-1 through 227.7202-4, as
555
+ applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being
556
+ licensed to U.S. Government end users (i) only as Commercial Items and (ii) with only those rights as are granted
557
+ to all other end users pursuant to the terms and conditions herein, as provided in FAR 12.212, and DFARS
558
+ 227.7202-1(a), 227.7202-3(a), 227.7202-4, as applicable.
559
+ 9.5. Relationship of the Parties. The relationship between the parties is that of independent contractors. The
560
+ Agreement is not to be construed as creating any partnership, joint venture, agency or any other form of legal
561
+ association that would impose liability upon one party for the act or failure to act of the other party.
562
+ 9.6. Marketing. Fair Isaac may include and Client consents to the use of Client's name, trademark(s) and
563
+ logo(s) and a 'quote', in Fair Isaac's marketing and promotional materials and website regarding the availability of
564
+ any of its products or services to other customers and prospects. Client agrees to collaborate and consents to Fair
565
+ Isaac producing and distributing, to customers and prospects, a written case study describing how Client's
566
+ business used and benefitted from the Fair Isaac products or services. Fair Isaac may issue a press release stating
567
+ factual information regarding the relationship between Fair Isaac and Client at any time after the Effective Date.
568
+ Fair Isaac shall first submit the press release to Client for Client's approval.
569
+ 9.7. No Waiver. No delay or omission by either party in exercising any right under the Agreement will be
570
+ construed as a waiver of that right. Even if either party waives a breach or default under the Agreement, that
571
+ party is not deemed to have waived any later or similar breach or default. No waiver will be effective unless in
572
+ writing and signed by the party waiving the right.
573
+ 9.8. Compliance with Laws. Client is solely responsible for compliance with all laws relating to Client's use of
574
+ any product, service or deliverable provided by Fair Isaac under the Agreement, including but not limited to laws
575
+ and regulations relating to privacy, export control, import licensing and anti-corruption practices.
576
+ 9.9. Governing Law. The Agreement, and any issues arising under or in any way relating to the Agreement, will
577
+ be governed by and construed in accordance with the laws of the State of New York, USA without regard to
578
+ principles of conflicts of law or international law, including without limitation the 1980 United Nations Convention
579
+ on Contracts for the International Sale of Goods, as revised, which the parties expressly agree does not apply to
580
+ the Agreement. No action, regardless of form, arising out of or relating to the Agreement may be brought by
581
+ Client more than 2 years after the cause of action has accrued.
582
+ 9.10. Notices. Any notices required to be given in writing under the Agreement must be sent to the recipient's
583
+ address for notices set forth below. Written notices must be sent by personal delivery, mail (with return receipt
584
+ provided), or major overnight delivery carrier (with return receipt provided). Notices will be deemed given on the
585
+ actual date of delivery, as indicated by a delivery receipt. Either party may change its address for notices at any
586
+ time by giving written notice to the other party as provided in this section.
587
+ For notices to be sent to Fair Isaac:
588
+ Fair Isaac Corporation
589
+ Attention: Contracts Administration
590
+ 12790 El Camino Real, Suite 300
591
+ San Diego, CA 92130, USA
592
+
593
+ For notices to be sent to Client:
594
+ The address set forth in the Purchasing Documentation
595
+ For a Community License, the address set forth in form completed on https://www.fico.com/en/fico-xpress-
596
+ community-license (or other FICO successor website)
597
+ 9.11. Assignment; Delegation.
598
+ (a) Neither party has the right, without the prior written consent of the other party, to assign or transfer the
599
+ Agreement, or any part of the Agreement. Except as provided herein, any attempt to assign or transfer all or any
600
+ part of the Agreement without first obtaining that written consent will be void and of no force or effect. In the
601
+ event of a change of control of Client, or if Client is merged with, is acquired by, or acquires another entity, or
602
+ undergoes a reorganization or otherwise acquires the right to process the business of another entity, each such
603
+ event will be deemed an assignment by Client subject to this section.
604
+ (b) Notwithstanding the foregoing, Fair Isaac has the right to assign the Agreement to any Fair Isaac Affiliate
605
+ or by merger, reorganization, change of control, consolidation, or sale of all or substantially all the assets of Fair
606
+ Isaac or the applicable division or line of business, and Fair Isaac has the right to (i) delegate the performance of
607
+ the Agreement, in whole or in part, to Fair Isaac Affiliates in any jurisdiction worldwide; and (ii) disclose to those
608
+ Fair Isaac Affiliates any data or other information received from, on behalf of, or through Client that Fair Isaac
609
+ deems appropriate for the performance of the delegated activities, including but not limited to data and other
610
+ information (including personally identifiable information) about Client's customers; but Fair Isaac must require
611
+ the Fair Isaac Affiliate to adhere to all obligations imposed by the Agreement upon Fair Isaac with respect to that
612
+ data and other information.
613
+ 9.12. Force Majeure; Cooperation. Notwithstanding anything to the contrary in the Agreement, except for
614
+ Client's obligations to pay amounts due under the Agreement, neither party will be deemed to be in default of
615
+ any provision of the Agreement for any delay, error, failure, or interruption of performance due to any act of God,
616
+ terrorism, war, insurrection, riot, boycott, strike, or other labor or civil disturbance, interruption of power service,
617
+ interruption of communications services, problems with the Internet, epidemic, pandemic, act of any other
618
+ person not under the control or direction of either party, or other similar cause; provided, however that the party
619
+ subject to any of the foregoing force majeure events shall give the other party written notification of a resulting
620
+ material or indefinite delay and will use reasonable efforts to perform its obligations under the Agreement as
621
+ soon as practicable. In addition, Client acknowledges that Fair Isaac's performance under the Agreement is
622
+ dependent on Client's Cooperation.
623
+ 9.13. Client Data. Client is and shall remain the sole and exclusive owner of all worldwide right, title and interest
624
+ in and to the Client Data. Fair Isaac will maintain and implement security procedures and controls with respect to
625
+ Client Data in accordance with the applicable Purchasing Documentation and will provide reasonably appropriate
626
+ technical and organizational safeguards against accidental or unlawful destruction, loss, alteration or
627
+ unauthorized disclosure of or access to Client Data. Client hereby grants to Fair Isaac a worldwide right and license
628
+ to use, reproduce, distribute, transmit and make derivatives of the Client Data as necessary for Fair Isaac to
629
+ perform its obligations under the Agreement, and for research, product development and similar purposes. Client
630
+ represents and warrants to Fair Isaac that Client: (i) has sufficient rights in all Client Data as necessary to and
631
+ deliver it to Fair Isaac and permit its use as contemplated in the Agreement; (ii) has obtained from all individuals,
632
+ persons and third parties any required consents and authorizations, and has provided all required notices with
633
+ respect to the collection, retention, disclosure and use of the Client Data as contemplated for the purposes of the
634
+ Agreement that are required under applicable foreign, federal and state laws and regulations, including but not
635
+ limited to privacy rules and policies; and (iii) will only provide Client Data to Fair Isaac that (a) does not infringe or
636
+ violate any Intellectual Property Rights, publicity, privacy, confidentiality, contractual or other rights, or any
637
+ foreign, federal, state or local law or regulation, and (b) is not defamatory, offensive, misleading, false, harmful to
638
+ minors, or obscene.
639
+ 9.14. Government.
640
+ (a) Corrupt Practices. Client shall comply with the U.S. Foreign Corrupt Practices Act ("FCPA") and applicable
641
+ anti-bribery and corruption laws of other counties. Client represents that, in connection with the Agreement,
642
+ neither it nor anyone acting on its behalf has made or agreed to make any payment, gift, or other consideration,
643
+ directly or indirectly, to or for the benefit of anyone: (i) who is a director, officer, employee, shareholder, or agent
644
+ of Client or (ii) who is in any manner connected with, any government or governmental entity or (iii) who is an
645
+ officer, agent, or employee of a political party or (iv) who is a candidate for political office; where such payment,
646
+ gift, or other consideration would be illegal under the applicable laws of the United States or any other country.
647
+ The foregoing is a continuing representation, and, in addition to any other remedies Fair Isaac has, any failure of
648
+ this representation to be true at any time is grounds for immediate termination of the Agreement by Fair Isaac.
649
+ (b) Waiver of Sovereign Immunity. If Client is a sovereign state or a state agency, or otherwise capable of
650
+ invoking a defense of sovereign immunity with regard to any dispute under the Agreement, then Client hereby
651
+ irrevocably waives any claim to immunity with regard to any proceedings in connection with an arbitration or
652
+ arbitral award pursuant to the Agreement, including, without limitation, immunity from service of process,
653
+ immunity from pre-judgment or post-judgment attachment or similar remedy, immunity from the jurisdiction of
654
+ any court, and immunity from execution of any of its property.
655
+ 9.15. Third Party Products. This section only applies to those Third Party Products identified as third party
656
+ products in the Purchasing Documentation. These Third Party Products are the property of their respective third
657
+ party suppliers and licensors, and such third parties reserve all rights to their respective Third Party Products,
658
+ including all Intellectual Property Rights therein. Unless different flow down terms have been made available to
659
+ Client, the license restrictions and other terms of the Agreement protective of the Fair Isaac Product that was
660
+ provided with such Third Party Product shall also apply to the Third Party Product. Any license to the Third Party
661
+ Product shall automatically terminate upon the earlier to occur of: (i) termination or expiration of the license
662
+ grant to the Third Party Product and/or related Fair Isaac Product; (ii) unavailability of the Third Party Product by
663
+ or termination of Fair Isaac's relationship with the supplier or licensor of such Third Party Product; or (iii) Client's
664
+ failure to pay fees or comply with any license term, condition or restriction related to the Third Party Product.
665
+ Client shall not make or attempt any direct access or independent use of the Third Party Product apart from the
666
+ related Fair Isaac Product. Fair Isaac is not responsible for the products, services or content of these Third Party
667
+ Products or for the acts or omissions of their suppliers or licensors. Fair Isaac reserves the right to replace any of
668
+ these Third Party Products with a comparable alternative.
669
+ 9.16. Construction; Severability. The Agreement is not to be more strongly construed against either party,
670
+ regardless of who is more responsible for its preparation, and nothing in the Agreement is to be deemed to create
671
+ any right or benefit in any person not a party to the Agreement. Client shall cause authorized and permitted
672
+ Affiliates to comply with all terms and conditions of the Agreement. If any provision of the Agreement is held to
673
+ be unenforceable, unlawful, or invalid in any respect, then that provision will be deemed ineffective only to the
674
+ extent of the illegality or invalidity, without invalidating the remainder of that provision or any of the remaining
675
+ provisions of the Agreement. The Article and Section headings in the Agreement are for reference only, and do
676
+ not form part of the Agreement.
677
+ 9.17. Entire Agreement; Order of Precedence. The Agreement represents the complete agreement of the
678
+ parties with respect to its subject matter and supersedes, with respect to such subject matter, all prior or
679
+ contemporaneous agreements, proposals, understandings, representations, conditions, and communications (oral
680
+ or written), as well as the terms of all existing and future purchase orders and acknowledgments. The terms of a
681
+ Policy are subject to change by Fair Isaac in accordance with its terms regarding changes as set forth therein. Any
682
+ other terms, conditions, supplements, modifications or amendments to the Agreement will not be binding upon
683
+ either party unless expressly set forth in a writing signed by authorized representatives of Client and Fair Isaac. In
684
+ the case of any conflict between the provisions of this SWLA and a Purchasing Documentation, with respect to the
685
+ subject matter of the given Purchasing Documentation, the provisions of the Purchasing Documentation will
686
+ control.
687
+ 9.18. Language of the Contract and Notices. The Agreement shall be governed by the English language. Any
688
+ version of this Agreement in any other language is solely for the convenience of the parties and will have no
689
+ binding force or effect. Any notices given pursuant to this Agreement must be in English. In case of a dispute
690
+ concerning the intent, obligations, or performance of the parties under this Agreement, this English language text
691
+ alone must be used to resolve the dispute, and any proceedings or communications relating to such dispute must
692
+ be in English.
693
+
694
+ FICO(R) Xpress Optimization Suite
695
+ Shrinkwrap License Agreement FICO(R) Xpress Optimization Suite (On-Premises)
696
+ Version August 15, 2025
697
+ (c) 1983-2026 Fair Isaac Corporation. All rights reserved. Confidential and proprietary.
698
+
699
+
700
+ FAIR ISAAC CONFIDENTIAL
701
+ REV Form 081525
702
+ 1
@@ -0,0 +1 @@
1
+ xpresslibs