diff --git a/README.md b/README.md index 93c86a9..7ee97ec 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This project hosts docker (https://www.docker.com/) images build for the APM sol - Introscope Enterprise Manager database using Postgresql - An Introscope sample application (small EPAgent) for demonstration purposes -This version supports Introscope version 10.1. For other versions please look at the branches in the GitHub project. Please feel free to contribute newer versions. +This version supports Introscope version 10.3. For other versions please look at the branches in the GitHub project. Please feel free to contribute newer versions. The current idea is to have single-process containers, thus the Enterprise Manager, WebView and the APM postgres database are separate images. As docker containers are very light-weight, this is no overhead. diff --git a/database/README.md b/database/README.md index 04a3dfb..7ad95a5 100644 --- a/database/README.md +++ b/database/README.md @@ -1,5 +1,5 @@ # docker-introscope-postgres -A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for a postgres database with the schema for Introscope 10.0.0.12. It is meant to be used in combination with the docker image docker-introscope-enterprisemanager (https://github.com/stefansiegl/docker-introscope-enterprisemanager). +A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for a postgres database with the schema for Introscope 10.3. It is meant to be used in combination with the docker image docker-introscope-enterprisemanager (https://github.com/stefansiegl/docker-introscope-enterprisemanager). ## Building the image diff --git a/database/build-image.sh b/database/build-image.sh index 65dd7d9..4444b5c 100755 --- a/database/build-image.sh +++ b/database/build-image.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker build -t apm-postgres:10.2 . +docker build -t apm-postgres:10.3 . diff --git a/database/createInstallDatabasesForIntroscope.sh b/database/createInstallDatabasesForIntroscope.sh index 60104d3..a497cdd 100755 --- a/database/createInstallDatabasesForIntroscope.sh +++ b/database/createInstallDatabasesForIntroscope.sh @@ -4,7 +4,7 @@ final_script=/docker-entrypoint-initdb.d/installDatabasesForIntroscope.sh script_dir=scripts -dbversion=10.2.0.0 +dbversion=10.3.0.0 sql_files=($script_dir/createtables-postgres-$dbversion.sql $script_dir/createsequences-postgres-$dbversion.sql $script_dir/addindexes-postgres-$dbversion.sql $script_dir/create-apm-tables-postgres-$dbversion.sql $script_dir/create-apm-sequences-postgres-$dbversion.sql $script_dir/addconstraints-postgres-$dbversion.sql $script_dir/add-apm-indexes-postgres-$dbversion.sql $script_dir/add-apm-constraints-postgres-$dbversion.sql $script_dir/apm-defaults-postgres-$dbversion.sql $script_dir/addviews-postgres-$dbversion.sql $script_dir/defaults-postgres-$dbversion.sql $script_dir/initdb-postgres-$dbversion.sql $script_dir/procedures-postgres-$dbversion.sql $script_dir/quartz-1.5.1-postgres.sql) # $script_dir/apm-procedures-postgres-$dbversion.sql --> contains pruning procedure but won't work with this script # removed $script_dir/add-apm-pruning-function-postgres-$dbversion.sql --> not available for 10.0.0.12 diff --git a/database/run-default-postgres-container.sh b/database/run-default-postgres-container.sh index e8e3154..902bd86 100755 --- a/database/run-default-postgres-container.sh +++ b/database/run-default-postgres-container.sh @@ -1,4 +1,3 @@ #!/bin/sh -docker run -d --name apm-postgres apm-postgres - +docker run -d --name apm-postgres apm-postgres:10.3 diff --git a/database/scripts/add-apm-constraints-postgres-10.2.0.0.sql b/database/scripts/add-apm-constraints-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/add-apm-constraints-postgres-10.2.0.0.sql rename to database/scripts/add-apm-constraints-postgres-10.3.0.0.sql diff --git a/database/scripts/add-apm-indexes-postgres-10.2.0.0.sql b/database/scripts/add-apm-indexes-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/add-apm-indexes-postgres-10.2.0.0.sql rename to database/scripts/add-apm-indexes-postgres-10.3.0.0.sql diff --git a/database/scripts/addconstraints-postgres-10.2.0.0.sql b/database/scripts/addconstraints-postgres-10.3.0.0.sql similarity index 98% rename from database/scripts/addconstraints-postgres-10.2.0.0.sql rename to database/scripts/addconstraints-postgres-10.3.0.0.sql index 2c6764d..3edd5d5 100755 --- a/database/scripts/addconstraints-postgres-10.2.0.0.sql +++ b/database/scripts/addconstraints-postgres-10.3.0.0.sql @@ -690,3 +690,15 @@ alter table appmap_edges references appmap_id_mappings on delete cascade; -- /appmap + +-- aca +alter table aca_user_group + add CONSTRAINT aca_user_group_user_id + FOREIGN KEY ( user_id ) + REFERENCES aca_user ( user_id ) on delete cascade; + +alter table aca_user_group + add CONSTRAINT aca_user_group_group_id + FOREIGN KEY ( group_id ) + REFERENCES aca_group ( group_id ) on delete cascade; +-- /aca diff --git a/database/scripts/addindexes-postgres-10.2.0.0.sql b/database/scripts/addindexes-postgres-10.3.0.0.sql similarity index 96% rename from database/scripts/addindexes-postgres-10.2.0.0.sql rename to database/scripts/addindexes-postgres-10.3.0.0.sql index 449eb30..18db54d 100755 --- a/database/scripts/addindexes-postgres-10.2.0.0.sql +++ b/database/scripts/addindexes-postgres-10.3.0.0.sql @@ -446,3 +446,23 @@ CREATE INDEX appmap_settings_type_idx ON appmap_settings(type, deleted_at); CREATE INDEX appmap_model_vertices_idx ON appmap_model_vertices(update_time DESC); -- /appmap +-- aca +CREATE INDEX aca_user_searchable_attrib1_idx ON aca_user (searchable_attrib1); +CREATE INDEX aca_user_searchable_attrib2_idx ON aca_user (searchable_attrib2); +CREATE INDEX aca_user_searchable_attrib3_idx ON aca_user (searchable_attrib3); +CREATE INDEX aca_user_searchable_attrib4_idx ON aca_user (searchable_attrib4); +CREATE INDEX aca_user_searchable_attrib5_idx ON aca_user (searchable_attrib5); + +CREATE INDEX aca_group_searchable_attrib1_idx ON aca_group (searchable_attrib1); +CREATE INDEX aca_group_searchable_attrib2_idx ON aca_group (searchable_attrib2); +CREATE INDEX aca_group_searchable_attrib3_idx ON aca_group (searchable_attrib3); +CREATE INDEX aca_group_searchable_attrib4_idx ON aca_group (searchable_attrib4); +CREATE INDEX aca_group_searchable_attrib5_idx ON aca_group (searchable_attrib5); + +CREATE INDEX aca_user_group_group_id ON aca_user_group (group_id); + +CREATE UNIQUE INDEX aca_acl_ak1 ON aca_acl(service_provider_id, service_provider_instance_id, resource_id, group_id); +CREATE UNIQUE INDEX aca_acl_ak2 ON aca_acl(service_provider_id, service_provider_instance_id, resource_id, user_id); + +CREATE INDEX aca_audit_update_time_idx ON aca_audit (update_time); +-- /aca diff --git a/database/scripts/addviews-postgres-10.2.0.0.sql b/database/scripts/addviews-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/addviews-postgres-10.2.0.0.sql rename to database/scripts/addviews-postgres-10.3.0.0.sql diff --git a/database/scripts/apm-defaults-postgres-10.2.0.0.sql b/database/scripts/apm-defaults-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/apm-defaults-postgres-10.2.0.0.sql rename to database/scripts/apm-defaults-postgres-10.3.0.0.sql diff --git a/database/scripts/apm-procedures-postgres-10.2.0.0.sql b/database/scripts/apm-procedures-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/apm-procedures-postgres-10.2.0.0.sql rename to database/scripts/apm-procedures-postgres-10.3.0.0.sql diff --git a/database/scripts/copy-scripts.sh b/database/scripts/copy-scripts.sh new file mode 100755 index 0000000..589bb17 --- /dev/null +++ b/database/scripts/copy-scripts.sh @@ -0,0 +1,23 @@ +#!/bin/bash +DB_VERSION=10.3 +docker cp em:/opt/CA/Introscope/install/database-scripts/add-apm-constraints-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/add-apm-indexes-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/addconstraints-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/addindexes-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/addviews-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/apm-defaults-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/apm-procedures-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/create-apm-sequences-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/create-apm-tables-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/createsequences-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/createtables-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/dbupdate-apm-sequences-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/dbupdate-sequences-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/defaults-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/drop-apm-tables-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/dropconstraints-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/dropindexes-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/droptables-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/dropviews-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/initdb-postgres-${DB_VERSION}.0.0.sql . +docker cp em:/opt/CA/Introscope/install/database-scripts/procedures-postgres-${DB_VERSION}.0.0.sql . diff --git a/database/scripts/create-apm-sequences-postgres-10.2.0.0.sql b/database/scripts/create-apm-sequences-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/create-apm-sequences-postgres-10.2.0.0.sql rename to database/scripts/create-apm-sequences-postgres-10.3.0.0.sql diff --git a/database/scripts/create-apm-tables-postgres-10.2.0.0.sql b/database/scripts/create-apm-tables-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/create-apm-tables-postgres-10.2.0.0.sql rename to database/scripts/create-apm-tables-postgres-10.3.0.0.sql diff --git a/database/scripts/createsequences-postgres-10.2.0.0.sql b/database/scripts/createsequences-postgres-10.3.0.0.sql similarity index 99% rename from database/scripts/createsequences-postgres-10.2.0.0.sql rename to database/scripts/createsequences-postgres-10.3.0.0.sql index b694acf..1c2a52f 100755 --- a/database/scripts/createsequences-postgres-10.2.0.0.sql +++ b/database/scripts/createsequences-postgres-10.3.0.0.sql @@ -417,3 +417,8 @@ CREATE SEQUENCE seq_appmap_api_key_id MINVALUE 1; ALTER SEQUENCE seq_appmap_api_key_id owned by appmap_api_keys.id; -- /appmap + +-- aca +CREATE SEQUENCE sq_aca_acl MINVALUE 1; +ALTER SEQUENCE sq_aca_acl owned by aca_acl.acl_id; +-- /aca diff --git a/database/scripts/createtables-postgres-10.2.0.0.sql b/database/scripts/createtables-postgres-10.3.0.0.sql similarity index 99% rename from database/scripts/createtables-postgres-10.2.0.0.sql rename to database/scripts/createtables-postgres-10.3.0.0.sql index 5750d32..f7d3bdc 100755 --- a/database/scripts/createtables-postgres-10.2.0.0.sql +++ b/database/scripts/createtables-postgres-10.3.0.0.sql @@ -8336,8 +8336,8 @@ CREATE TABLE appmap_vertices ( start_time TIMESTAMP NOT NULL, end_time TIMESTAMP NOT NULL, fork BIGINT NOT NULL, - vertex_name VARCHAR(256), - business_service VARCHAR(256), + vertex_name VARCHAR(1024), + business_service VARCHAR(1024), gathered_attribs TEXT, other_attribs TEXT, PRIMARY KEY(vertex_id, start_time) @@ -8404,3 +8404,69 @@ CREATE TABLE apm_secure_store( -- /appmap + +-- aca +CREATE TABLE aca_user +( + user_id character varying(256) not null, + realm_id character varying(256) not null, + searchable_attrib1 character varying(256) null, + searchable_attrib2 character varying(256) null, + searchable_attrib3 character varying(256) null, + searchable_attrib4 character varying(256) null, + searchable_attrib5 character varying(256) null, + attributes text null, + realm_attributes text null, + last_login_time timestamp without time zone NULL, + last_update timestamp without time zone NOT NULL, + CONSTRAINT aca_user_pk PRIMARY KEY (user_id) +); + +CREATE TABLE aca_group +( + group_id character varying(256) not null, + realm_id character varying(256) not null, + searchable_attrib1 character varying(256) null, + searchable_attrib2 character varying(256) null, + searchable_attrib3 character varying(256) null, + searchable_attrib4 character varying(256) null, + searchable_attrib5 character varying(256) null, + attributes text null, + realm_attributes text null, + last_update timestamp without time zone NOT NULL, + CONSTRAINT aca_group_pk PRIMARY KEY (group_id) +); + +CREATE TABLE aca_user_group +( + user_id character varying(256) not null, + group_id character varying(256) not null, + last_update timestamp without time zone NOT NULL, + CONSTRAINT aca_user_group_pk PRIMARY KEY (user_id, group_id) +); + +CREATE TABLE aca_acl +( + acl_id numeric not null, + service_provider_id character varying(256) NOT NULL, + service_provider_instance_id character varying(256) NOT NULL, + resource_id character varying(256) NOT NULL, + group_id character varying(256) NULL, + user_id character varying(256) NULL, + resource_type_id character varying(10) NOT NULL, + capabilities_allow text NULL, + capabilities_grant text NULL, + last_update timestamp without time zone NOT NULL, + CONSTRAINT aca_acl_pk PRIMARY KEY (acl_id), + CONSTRAINT aca_acl_user_xor_group CHECK ( ( group_id is null and user_id is not null ) or (group_id is not null and user_id is null) ), + CONSTRAINT aca_acl_resource_type_id CHECK ( resource_type_id = 'regex' or resource_type_id = 'literal' ) +); + +create table aca_audit( + update_time timestamp without time zone NOT NULL, + user_id character varying(256) NOT NULL, + table_name character varying(256) NOT NULL, + change_from text null, + change_to text null +); +-- /aca diff --git a/database/scripts/dbupdate-apm-sequences-postgres-10.2.0.0.sql b/database/scripts/dbupdate-apm-sequences-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/dbupdate-apm-sequences-postgres-10.2.0.0.sql rename to database/scripts/dbupdate-apm-sequences-postgres-10.3.0.0.sql diff --git a/database/scripts/dbupdate-sequences-postgres-10.2.0.0.sql b/database/scripts/dbupdate-sequences-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/dbupdate-sequences-postgres-10.2.0.0.sql rename to database/scripts/dbupdate-sequences-postgres-10.3.0.0.sql diff --git a/database/scripts/defaults-postgres-10.2.0.0.sql b/database/scripts/defaults-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/defaults-postgres-10.2.0.0.sql rename to database/scripts/defaults-postgres-10.3.0.0.sql diff --git a/database/scripts/drop-apm-tables-postgres-10.2.0.0.sql b/database/scripts/drop-apm-tables-postgres-10.3.0.0.sql similarity index 99% rename from database/scripts/drop-apm-tables-postgres-10.2.0.0.sql rename to database/scripts/drop-apm-tables-postgres-10.3.0.0.sql index 68cc658..cb886e0 100755 --- a/database/scripts/drop-apm-tables-postgres-10.2.0.0.sql +++ b/database/scripts/drop-apm-tables-postgres-10.3.0.0.sql @@ -7,3 +7,4 @@ DROP TABLE APM_EDGE; DROP TABLE APM_VERTEX_LOGICAL_EQUIVALENCE; DROP TABLE APM_GEOLOCATION; DROP TABLE APM_GEOLOCATION_METADATA; + diff --git a/database/scripts/dropconstraints-postgres-10.2.0.0.sql b/database/scripts/dropconstraints-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/dropconstraints-postgres-10.2.0.0.sql rename to database/scripts/dropconstraints-postgres-10.3.0.0.sql diff --git a/database/scripts/dropindexes-postgres-10.2.0.0.sql b/database/scripts/dropindexes-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/dropindexes-postgres-10.2.0.0.sql rename to database/scripts/dropindexes-postgres-10.3.0.0.sql diff --git a/database/scripts/droptables-postgres-10.2.0.0.sql b/database/scripts/droptables-postgres-10.3.0.0.sql similarity index 60% rename from database/scripts/droptables-postgres-10.2.0.0.sql rename to database/scripts/droptables-postgres-10.3.0.0.sql index 9fd14e2..4072a23 100755 --- a/database/scripts/droptables-postgres-10.2.0.0.sql +++ b/database/scripts/droptables-postgres-10.3.0.0.sql @@ -4,3 +4,15 @@ DROP TABLE IF EXISTS appmap_id_mappings, appmap_vertices, appmap_attribs, appmap DROP TABLE IF EXISTS appmap_api_keys; DROP TABLE IF EXISTS apm_secure_store; -- /appmap + + +-- ACA +DROP TABLE aca_audit; +DROP TABLE aca_acl; +DROP TABLE aca_user_group; +DROP TABLE aca_user; +DROP TABLE aca_group; + +DROP SEQUENCE sq_aca_acl; + +-- /ACA diff --git a/database/scripts/dropviews-postgres-10.2.0.0.sql b/database/scripts/dropviews-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/dropviews-postgres-10.2.0.0.sql rename to database/scripts/dropviews-postgres-10.3.0.0.sql diff --git a/database/scripts/initdb-postgres-10.2.0.0.sql b/database/scripts/initdb-postgres-10.3.0.0.sql similarity index 99% rename from database/scripts/initdb-postgres-10.2.0.0.sql rename to database/scripts/initdb-postgres-10.3.0.0.sql index 77062db..65bf83a 100755 --- a/database/scripts/initdb-postgres-10.2.0.0.sql +++ b/database/scripts/initdb-postgres-10.3.0.0.sql @@ -25,7 +25,7 @@ Insert into ts_user_importances(ts_id, ts_name, ts_weight, ts_soft_delete, versi Insert into ts_user_importances(ts_id, ts_name, ts_weight, ts_soft_delete, version_info) values(7, 'Critical', 6, false, 1); Insert into ts_user_importances(ts_id, ts_name, ts_weight, ts_soft_delete, version_info) values(8, 'Trigger Immediately', 7, false, 1); -insert into ts_domains(ts_id, ts_name, ts_ip_address, ts_port, ts_db_versions, ts_tran_importance_id, ts_user_importance_id, version_info, ts_dynamic_group_reassign) values (1, 'Local Domain', 0, 80, '10.2.0.0', 5, 5, 1, false); +insert into ts_domains(ts_id, ts_name, ts_ip_address, ts_port, ts_db_versions, ts_tran_importance_id, ts_user_importance_id, version_info, ts_dynamic_group_reassign) values (1, 'Local Domain', 0, 80, '10.3.0.0', 5, 5, 1, false); -- insert rows into the AppDef auth types table Insert into ts_app_auth_types(ts_id, ts_name, ts_soft_delete, version_info) values(1, 'Application Specific', false, 1); @@ -119,7 +119,7 @@ ALTER SEQUENCE ts_defect_meta_keys_ts_id_sq RESTART WITH 600000000000000000; -- insert rows into the Introscope Config table insert into ts_introscope_configs(ts_enabled, ts_soft_delete, version_info) values(true, false, 1); insert into ts_introscope_ems(version_info, ts_name, ts_description, ts_username, ts_password, ts_hostname, ts_em_version, ts_web_view_version, ts_web_start_version, ts_port, ts_web_view_port, ts_web_start_port, ts_has_web_view, ts_has_web_start, ts_tran_trace_duration, ts_tran_trace_threshold_percnt, ts_enabled, ts_soft_delete) - values (1, '', '', '','','localhost', '10.2.0.0', '', '',5001, 8080, 8081, false, false, 30, 50, false, false); + values (1, '', '', '','','localhost', '10.3.0.0', '', '',5001, 8080, 8081, false, false, 30, 50, false, false); -- insert Jasper Reports items into ts_settings insert into ts_settings(ts_id, version_info, ts_key, ts_value, ts_description, ts_default, ts_soft_delete) values (1001, 1, 'reports.userImage', 'report-logo.gif', 'image shown at top of an exported report', 'wily_logo.gif', false); diff --git a/database/scripts/procedures-postgres-10.2.0.0.sql b/database/scripts/procedures-postgres-10.3.0.0.sql similarity index 100% rename from database/scripts/procedures-postgres-10.2.0.0.sql rename to database/scripts/procedures-postgres-10.3.0.0.sql diff --git a/docker-compose-2MOM-4Collector-1CDV.yml b/docker-compose-2MOM-4Collector-1CDV.yml index fa20a15..d4bd789 100644 --- a/docker-compose-2MOM-4Collector-1CDV.yml +++ b/docker-compose-2MOM-4Collector-1CDV.yml @@ -13,7 +13,7 @@ # CDV cdv: - image: apm-em:10.2 + image: apm-em:10.3 links: - cdvdb:db - collector1:em1 @@ -25,10 +25,10 @@ cdv: - CLUSTER_ROLE=CDV cdvdb: - image: apm-postgres:10.2 + image: apm-postgres:10.3 cdvwebview: - image: apm-webview:10.2 + image: apm-webview:10.3 links: - cdv:em ports: @@ -37,7 +37,7 @@ cdvwebview: # MOMs mom1: - image: apm-em:10.2 + image: apm-em:10.3 links: - momdb1:db - collector1:em1 @@ -47,10 +47,10 @@ mom1: - CLUSTER_ROLE=MOM momdb1: - image: apm-postgres:10.2 + image: apm-postgres:10.3 momwebview1: - image: apm-webview:10.2 + image: apm-webview:10.3 links: - mom1:em ports: @@ -58,7 +58,7 @@ momwebview1: mom2: - image: apm-em:10.2 + image: apm-em:10.3 links: - momdb2:db - collector3:em1 @@ -68,10 +68,10 @@ mom2: - CLUSTER_ROLE=MOM momdb2: - image: apm-postgres:10.2 + image: apm-postgres:10.3 momwebview2: - image: apm-webview:10.2 + image: apm-webview:10.3 links: - mom2:em ports: @@ -82,7 +82,7 @@ momwebview2: # Collectors collector1: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector1db:db environment: @@ -90,7 +90,7 @@ collector1: - CLUSTER_ROLE=Collector collector1db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 sample1: image: apm-sample:9.7 @@ -98,7 +98,7 @@ sample1: - collector1:em collector2: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector2db:db environment: @@ -106,7 +106,7 @@ collector2: - CLUSTER_ROLE=Collector collector2db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 sample2: image: apm-sample:9.7 @@ -114,7 +114,7 @@ sample2: - collector2:em collector3: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector3db:db environment: @@ -122,7 +122,7 @@ collector3: - CLUSTER_ROLE=Collector collector3db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 sample3: image: apm-sample:9.7 @@ -130,7 +130,7 @@ sample3: - collector3:em collector4: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector4db:db environment: @@ -138,7 +138,7 @@ collector4: - CLUSTER_ROLE=Collector collector4db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 sample4: image: apm-sample:9.7 diff --git a/docker-compose-CDV-test.yml b/docker-compose-CDV-test.yml index 7feff97..1cee4a1 100644 --- a/docker-compose-CDV-test.yml +++ b/docker-compose-CDV-test.yml @@ -14,7 +14,7 @@ cdv: - image: apm-em:10.2 + image: apm-em:10.3 links: - cdvdb:db - collector1:em1 @@ -24,7 +24,7 @@ cdv: - CLUSTER_ROLE=CDV cdvdb: - image: apm-postgres:10.2 + image: apm-postgres:10.3 cdvwebview: image: webview @@ -34,7 +34,7 @@ cdvwebview: - "8080:8080" collector1: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector1db:db environment: @@ -50,7 +50,7 @@ sample1: - collector1:em collector2: - image: apm-em:10.2 + image: apm-em:10.3 links: - collector2db:db environment: diff --git a/docker-compose-with-sample.yml b/docker-compose-with-sample.yml index b17b3a7..662522d 100644 --- a/docker-compose-with-sample.yml +++ b/docker-compose-with-sample.yml @@ -8,7 +8,7 @@ # em: - image: apm-em:10.2 + image: apm-em:10.3 links: - db:db ports: @@ -21,10 +21,10 @@ em: - ~/mm:/root/Introscope/config/modules db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 webview: - image: apm-webview:10.2 + image: apm-webview:10.3 links: - em:em ports: diff --git a/docker-compose.yml b/docker-compose.yml index 65861cf..5215d02 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,7 @@ # em: - image: apm-em:10.2 + image: apm-em:10.3 links: - db:db ports: @@ -21,10 +21,10 @@ em: - ~/git/docker-introscope/transfer/modules:/transfer/modules db: - image: apm-postgres:10.2 + image: apm-postgres:10.3 webview: - image: apm-webview:10.2 + image: apm-webview:10.3 links: - em:em ports: diff --git a/enterprise-manager/Dockerfile b/enterprise-manager/Dockerfile index 8f7a272..d375b30 100644 --- a/enterprise-manager/Dockerfile +++ b/enterprise-manager/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER guenter.grossberger@ca.com WORKDIR /opt/introscope-install ### For new Introscope version you must change the following variables -ENV INTROSCOPE_VERSION=10.2.0.27 +ENV INTROSCOPE_VERSION=10.3.0.15 ### End for new Introscope version ENV INTROSCOPE_HOME=/opt/CA/Introscope diff --git a/enterprise-manager/README.md b/enterprise-manager/README.md index 6af9d7b..e08e056 100644 --- a/enterprise-manager/README.md +++ b/enterprise-manager/README.md @@ -1,10 +1,10 @@ # docker-introscope-enterprise manager -A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for an Introscope enterprise manager in version 10.2. It is meant to be used in combination with the docker image ``apm-postgres`` which provides the database for the enterprise manager. +A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for an Introscope enterprise manager in version 10.3. It is meant to be used in combination with the docker image ``apm-postgres`` which provides the database for the enterprise manager. Note that due to licensing reasons, it is not possible to package the installation files and the license in this image. Please read the usage which file you have to put where. ## Necessary configuration prior to building -The docker image needs the installation files from CA Wily Introscope. Simply copy the files ``introscope10.2.0.27otherUnix.jar`` (installer of the enterprise manager). +The docker image needs the installation files from CA Wily Introscope. Simply copy the files ``introscope10.3.0.15otherUnix.jar`` (installer of the enterprise manager). It goes without saying that you need docker installed. If you are on Windows (like me) or Mac, you can use boot2docker - I works perfectly for me. diff --git a/enterprise-manager/SampleResponseFile.Introscope.txt b/enterprise-manager/SampleResponseFile.Introscope.txt index 9214c8e..6f81ea0 100644 --- a/enterprise-manager/SampleResponseFile.Introscope.txt +++ b/enterprise-manager/SampleResponseFile.Introscope.txt @@ -3,7 +3,7 @@ # Introscope Silent Installation Response File # # Sample Response File -# CA Wily Introscope(R) Version 10.2.0 Release 10.2.0.27 +# CA Wily Introscope(R) Version 10.3.0 Release 10.3.0.15 # Copyright (c) 2016 CA. All Rights Reserved. # Introscope(R) is a registered trademark of CA. # @@ -66,11 +66,11 @@ ca-eulaFile=eula-introscope/ca-eula.txt # Example Unix install directory: /IntroscopeSilentInstall/ # Left blank, this property will default to one of the following values: # On Windows... -# C:\\Program Files\\CA APM\\Introscope10.2.0.27\\ +# C:\\Program Files\\CA APM\\Introscope10.3.0.15\\ # (Exact name and drive letter of program files directory may vary # depending on OS configuration) # On Unix... -# /root/Introscope10.2.0.27/ +# /root/Introscope10.3.0.15/ # (Under the logged-in-end-user's home directory. Exact directory may vary # depending on user account.) USER_INSTALL_DIR=/opt/CA/Introscope @@ -269,18 +269,6 @@ shouldEnableCAAPMForSharePointPortal=false #CA APM for Web Servers shouldEnableCAAPMForWebServers=false -#CA APM for Oracle WebLogic Server -shouldEnableCAAPMForWebLogic=false - -#CA APM for Oracle WebLogic Portal -shouldEnableCAAPMForWebLogicPortal=false - -#CA APM for IBM WebSphere Application Server for Distributed Environments -shouldEnableCAAPMForWebSphere=false - -#CA APM for IBM WebSphere Portal -shouldEnableCAAPMForWebSpherePortal=false - #CA APM for IBM WebSphere MQ and IBM WebSphere Message Broker shouldEnableCAAPMForWebSphereMQandMB=false @@ -296,12 +284,6 @@ shouldEnableCAAPMForIBMzOSExtension=false #CA Cross-Enterprise Application Performance Management shouldEnableSysview=false -#CA APM for CA SiteMinder Web Access Manager -shouldEnableCAAPMForSiteMinder=false - -#CA APM for CA SiteMinder SNMP Collector -shouldEnableCAAPMForSiteMinderSNMP=false - #CA APM for Oracle Service Bus shouldEnableCAAPMForOSB=false @@ -311,9 +293,6 @@ shouldEnableCAAPMForTibcoBW=false #CA APM for TIBCO Enterprise Message Service shouldEnableCAAPMForTibcoEMS=false -#CA APM for IBM WebSphere Process Server/Business Process Management -shouldEnableCAAPMForWPSandWESB=false - #CA APM for webMethods Broker shouldEnableCAAPMForWMBroker=false @@ -389,37 +368,45 @@ emAsServiceDisplayName=Introscope Enterprise Manager chosenDatabaseIsPostgres=true chosenDatabaseIsOracle=false -# PostgreSQL properties (set these if you are using PostgreSQL database) +# APM Database (on PostgreSQL) details (set these if you are using PostgreSQL database) # The APM database can be installed on Linux, Solaris and Windows platforms. -# Set the following set of properties when pointing to an existing APM database -# and when installing PostgreSQL database. - +# If you are pointing to an existing database, enter the details of that database here dbHost=DATABASE_URL dbPort=5432 dbName=cemdb dbUser=admin dbPassword=wily -# Set the following set of properties when installing the database (in addition to properties above). +# Enter the PostgreSQL superuser name and password +# You can skip these two properties if you are pointing to an existing database +dbAdminUser=postgres +dbAdminPassword=C@wilyapm90 + +# PostgreSQL install directory. You can enter an absolute path or a path relative to APM install Directory +# $defaultDatabaseDir$ defaults to /opt/PostgreSQL- on Linux, Solaris and C:\Program Files\CA APM\PostgreSQL- on Windows +# If you are running CA APM, it is recommended that you put the APM database on its own disk or partition. +# If you are upgrading APM Database, enter the location of existing PostgreSQL home. +# databaseDir=$defaultDatabaseDir$ -# database install dir for Windows. For Linux and Solaris set default to /opt/database -# If you are running CA APM, it is recommended that you put -# the APM database on its own disk or partition. -#databaseDir=database -#dbAdminUser=postgres -#dbAdminPassword=C@wilyapm90 +# Set the following property if you are upgrading APM Database. You can enter an absolute path or a path relative to APM install Directory +# APM sometimes bundles a newer version of PostgreSQL, which must reside in a different directory (if it differs by Major version like 8.4 and 9.2.x). +# If PostgreSQL differs by minor version (eg: 9.2.4 and 9.2.15) then the old PostgreSQL directory is used and this property is ignored. +# Please enter a directory which is different from the existing PostgreSQL install directory or upgrade process will fail. +# $defaultDatabaseDir$ defaults to /opt/PostgreSQL- on Linux, Solaris and C:\Program Files\CA APM\PostgreSQL- on Windows +# newPgInstallDir=$defaultDatabaseDir$ -# For PostgreSQL DB installation on Windows platform only -# Set the DB install script execution timeout wait time (in milliseconds) -#dbInstallScriptTimeoutInMillis=240000 -# Set validateDatabase to true if you want to validate the existing APM database and -# create new schema. -validateDatabase=false +# For PostgreSQL DB installation on Windows platform only. +# Set the DB install script execution timeout wait time (in milliseconds). +dbInstallScriptTimeoutInMillis=240000 -# set upgradeSchema to true if you want to upgrade schema from 4.5.0 or 5.0.0 to 9.0.5 +# Set validateDatabase to true if you already have a PostgreSQL installed and are going to create new APM database or if you are upgrading your database. +# Set validateDatabase to false if you are installing PostgreSQL. +# validateDatabase=true + +# set upgradeSchema to true only if you want to upgrade APM Database. # Schema can be upgraded only on Linux and Windows. -upgradeSchema=false +# upgradeSchema=true # Oracle properties (set these if you are using Oracle database.) # Set 'useExistingSchemaForOracle' property to true if the schema already exists @@ -445,6 +432,7 @@ wvEmHost=localhost wvEmPort=5001 wvEmWebPort=8081 + ########################################## # WebView As Windows Service Settings #------------------------------------ diff --git a/enterprise-manager/build-image.sh b/enterprise-manager/build-image.sh index d1e3d51..82d2e9d 100755 --- a/enterprise-manager/build-image.sh +++ b/enterprise-manager/build-image.sh @@ -1,7 +1,7 @@ #!/bin/sh errors=false -INTROSCOPE_VERSION=10.2.0.27 +INTROSCOPE_VERSION=10.3.0.15 INTROSCOPE_TAR=introscope${INTROSCOPE_VERSION}other.tar INTROSCOPE_BIN=introscope${INTROSCOPE_VERSION}otherUnix.jar @@ -15,5 +15,5 @@ fi if [ "$errors" = false ] ; then echo "Starting the build" - docker build -t apm-em:10.2 . + docker build -t apm-em:10.3 . fi diff --git a/enterprise-manager/eula-introscope/ca-eula.ja.txt b/enterprise-manager/eula-introscope/ca-eula.ja.txt index eb74933..ee71013 100644 --- a/enterprise-manager/eula-introscope/ca-eula.ja.txt +++ b/enterprise-manager/eula-introscope/ca-eula.ja.txt @@ -3,348 +3,341 @@ # CA エンドユーザー使用許諾契約ファイル # ############################################################################## -# +# # インストールするCAソフトウェア製品、および当該製品に含まれる関連ドキュメント、および以下に定義されるSDK(以下、併せて「本製品」と表記します)用の CA エンド ユーザ ライセンス契約(以下、「本契約」または「ライセンス契約」と表記します)。 -# +# # 本製品をインストールして使用する前に、本製品の使用に関する以下の契約条件をよくお読みください。本使用条件では、お客様は「ライセンス契約者」と表記されます。 -# -# 最終行に「accept」と入力することで、以下のことを承認したことになります。 -# -# (I) 成人であり、完全な法的能力を持ち、ライセンス契約者本人およびその雇用主(該当する場合)を本契約に拘束する権限があることを表明し、 +# +# 最終行に「accept」と入力することで、以下のことを承認したことになります。 +# +# (I) 成人であり、完全な法的能力を持ち、ライセンス契約者本人およびその雇用主(該当する場合)を本契約に拘束する権限があることを表明し、 # (II) ライセンス契約者本人、またはライセンス契約者の雇用者から権限を委任された代表者(該当する場合)、あるいはその両者が本使用条件を遵守することに同意したものとみなされます。 -# +# # 最終行に「reject」と入力することで、インストールが停止します。 -# +# # 1. CA, Inc.または以下の第15項以降に本製品が供与される国において個別に特定されるCAグループ企業(以下、「CA」と表記します)は、ライセンス契約者に対して本製品を1部供与します。本製品1部は、認定された使用制限(以下、「認定使用制限」と表記します)に定められた(a)制限数および(b)CAが公表する製品使用状況の判定基準(MIPS、CPU数、階層数、サーバ数、ユーザ数などを含むがこれらに限定しない)に基づいて使用できます。認定使用制限は、注文書(以下に定義します)または製品ボックスに同梱されるCDケースに定められています。CAは期間中ライセンス契約者に対して本製品のライセンスを内部業務での使用のみを目的として限定的、非独占的、譲渡不能なライセンスとして供与します。また、このライセンスには、本契約条件に加えて(a)ライセンス契約者およびCA関連会社との間で署名または契約が交わされたすべてのCA注文書またはお客様登録用紙に記載されているその他の契約条件、または(b)CAが必要に応じてライセンス契約者に供与する、本契約を言及または包含する、ライセンスプログラム証書に記載されているその他の契約条件が適用されます。(以下、(a)および(b)を「注文書」と表記します)。 -# +# # 2. 本製品がプログラムのアルファ バージョンもしくはベータ バージョン(以下、「ベータ プログラム」または「ベータ バージョン」と表記します)であり、その時点で完成版ではない場合、CA は完成版リリースがベータ プログラムと同一であること、および完成版リリースが再インストールを必要としないことを保障するものではありません。ライセンス契約者は、サポートに登録した場合、またはその他にCAが必要であると認めた場合、本製品の使用経験に関する特定の情報をCAに対して提供することに同意するものとします。ライセンス契約者は、本製品のベータ バージョンが(a)テスト目的にのみ使用され、CAが書面にて承諾した場合を除き本番稼働されないこと、(b)テストおよびデバッグが完了していない試験的なプログラムであり、付属する文書が最終版でない場合も多くあることに同意し、この事実を承諾するものとします。ライセンス契約者は、本製品のベータ バージョンの完全性、正確性、およびライセンス契約者による使用または操作に関して、CAが一切の表明を行わないことに同意するものとします。本製品のベータ バージョンは「現状有姿」の状態で供与されます。本製品のベータ バージョンに対しては、あらゆる権原または不侵害に対するすべての保証や表明を含むがそれらに限定しない、明示または黙示のいかなる保証または表明も行われません。ライセンス契約者が本製品のベータ バージョンのテスター(本製品のベータ バージョン入手前の登録時に同意したベータ テストまたはリリース前テスト用の契約条件(以下、「ベータ テスト契約」と表記します)に定められています)である場合、ライセンス契約者は、本契約条件がベータ テスト契約の追加条件であり、ベータ テスト契約が本契約条件よりも優先して適用されることに同意するものとします。 -# +# # 3. 本製品のライセンスが試用版または評価版として供与された場合、ライセンス契約者は、第1項で定めた制限に従って、30日間または別途定められた日数の試用期間(以下、「試用期間」と表記します)の間、本製品を評価目的でのみ使用することに同意するものとします。ライセンス契約者の本製品を使用する権利は、試用期間の終了と共に自動的に失効します。また、ライセンス契約者は試用期間の終了と同時に本製品をアンインストールし、本製品の部分的コピーを含むすべてのコピーをCAに返却するか、ライセンス契約者のコンピュータ ライブラリまたは記憶装置(あるいはその両方)から本製品の部分的コピーを含むすべてのコピーが削除および廃棄された旨をCAに対して書面にて保証することに同意するものとします。ライセンス契約者が試用期間の終了後も本製品の使用継続を希望する場合は、CAまたはCAの関連会社に連絡し所定の料金を支払って、本製品のライセンスを取得するものとします。試用期間中にライセンス契約者が本製品を使用する場合、本製品は「現状有姿」の状態で提供されるものとし、いかなる保証もされません。またCAは、試用期間中の本製品に関して、商品性ならびに特定用途に対する適合性に関する黙示の保証、および本契約で明示に定められているすべての保証を含むがそれらに限定しない、すべての保証から免責されます。 -# +# # 4. 本製品にソフトウェア開発キット(以下、「SDK」と表記します)が含まれる場合、本段落の条項のみが SDK の使用に適用されます。SDKには、ソフトウェア、API、および関連ドキュメントが含まれる場合があります。ライセンス契約者は、提供されたSDKを、ライセンス契約者の内部的な目的にのみ使用できます。ここで言う内部的な目的とは、本製品をサード パーティ製のソフトウェアまたはハードウェアと統合するためのソフトウェアを開発するか、または本製品と連携して機能するソフトウェア(エージェントなど)を開発することを指します。SDKは、ライセンス契約者による本製品の内部的な使用を拡張する目的でのみ、ライセンス契約者に提供されます。ライセンス契約者に対して、本製品を配布する権利はいっさい付与されません。下記の第8項に定める制限に加えて、ライセンス契約者は、SDK、関連ドキュメント、およびSDKの実行可能なバージョンを含むいかなるアプリケーションも、第三者に対して、またはインターネット上で、コピー、開示、取引、または配布してはならず、また認定使用制限に抵触する形で使用してはなりません。本項に定める条件が、本使用条件に定められている他の条件と矛盾する場合は、SDKの使用に限り、本項の条件が優先して適用されます。 -# +# # 本使用条件に定められている他の規定にかかわらず、準拠法によって許容される範囲内で、SDKは「現状有姿」の状態で提供されライセンスされるものとし、いかなる保証もなされません。 -# +# # 5. 注文書に記載された料金、またはライセンス契約者と(CAまたはCA関連会社の)認定再販業者との間で合意された料金を支払うことによって、注文書に記載された期間(以下、「本期間」と表記します)にわたり本製品を使用する権利がライセンス契約者に供与されます。本製品を使用する権利には、注文書にあらかじめ定められた期間内にメンテナンスを受ける権利が含まれる場合があります。本契約による支払いの条件は、すべて注文書に記載されるものとします。注文書に記載がない場合は、CAの請求日から30日以内に支払われるものとします。ライセンス契約者は、ライセンス契約者に供与される本製品の新バージョンをすべてインストールするものとします。本期間の終了後、本契約に定める本製品の使用または保守(あるいはその両方)を継続する場合、ライセンス契約者は注文書に記載された継続する場合の料金を支払うものとします。本製品のライセンスをCAの認定再販業者から取得した場合は、支払い、価格、および割引に関する契約条項はライセンス契約者とライセンス契約者の選択したCA再販業者との間で交わされたものとなるため、本契約でそれらについて定めた条項は適用されません。ライセンス契約者のライセンス発注書(事前印刷されている条項を含むがそれに限定されない)またはライセンス契約者から認定CA再販業者への注文の一部として記載された契約条項で、本契約の条項と矛盾するかまたは異なっている条項は本製品には適用されず無効と見なされます。 上記にかかわらず、本製品が継続的な更新(ウィルス定義ファイルやセキュリティ更新ファイルなど)を必要とする場合、ライセンス契約者は本使用条件に同意してから1年間に限り、その継続的な更新サービスを受けることができます。 -# +# # 6. CAまたはCA関連会社によってメンテナンスが提供される場合、メンテナンス契約は注文書に記載されているとおり年次で更新されるものとします。? すべての料金は税抜きで明記されます。ライセンス契約者は、連邦税、州税、地方税、消費税、使用税、付加価値税、および動産税など、政府または政府の関連機関より課せられるすべての関税および税金を、CAまたはCA関連会社より提示される請求書に基づき支払うことに同意するものとします(ただし営業税や所得税など、支払い義務がCAに課せられるものを除きます)。これら諸税の免除を要求する場合は、CAに対して適切な証拠書類を提出するものとします。請求書に記載されている料金がライセンス契約者によって期限までに支払われなかった場合は、当該料金に対する利息(月1.5%または法的に許容される最高利率のいずれか低い方)が発生するものとします。 -# +# # 7. ライセンス契約者は注文書で特定する地域において、認定使用限度の範囲内で本製品をインストールおよび設置できるものとします。ライセンス契約者は、ライセンス契約者およびその子会社の内部業務での使用を目的とし、ラインセンス契約者が承認するエンドユーザ(以下、「承認エンドユーザ」と表記します)に対して業務の行われる場所に関わりなく本製品にアクセスする許可を与えることができます。ただしこれは本契約のライセンス契約者が、承認エンドユーザによる契約違反がライセンス契約者自身による契約違反と看做され、ライセンス契約者の責任となることについて、本契約により明示的に同意している場合に限ります。ライセンス契約者は、事前に書面で通知することによって、注文書に指定された地域内において本製品を別の設置場所に移動することができるものとします。本契約書において、「承認エンドユーザ」とは、ライセンス契約者、ライセンス契約者の子会社、およびそれらの従業員ならびに契約社員(外注委託業者、施設管理業者、管理サービス プロバイダまたはアプリケーション サービス プロバイダを除く)であり、本契約書に定められた条件と同等以上に厳格な条件の適用を受け、第三者の業務ではなくライセンス契約者の業務を実施するユーザを指します。本契約におけるライセンス契約者の「子会社」とは、ライセンス契約者が直接または間接的に支配している法人を意味します。また「支配」とは、その法人の株式の過半数を保有または支配しているか、法律または契約により当該法人の取締役会を支配しているか、またはそれに相当するものを意味します。ライセンス契約者がこの制限を超えて本製品を使用することを希望する場合、ライセンス契約者は本製品の購入先であるCAまたはCA関連会社に対してその旨を通知すると共に、使用範囲の拡張に対して請求される所定の料金を支払うものとします。 -# +# # 8. 本製品(本使用条件に従ってライセンス契約者に提供される場合があるソース コードおよびオブジェクト コードを含みます)、関連ドキュメント、外観、構造、および構成は、CAまたはライセンス提供者、あるいはその両者の専有する財産であり、著作権、特許権、商標権、営業秘密、その他の法律によって保護されています。本製品の権利、および該当するSDKによってコピー、改変、翻訳、部分的コピー、生成、派生、または融合することで作成したソフトウェアのすべての権利は、例外なくCAまたはライセンス提供者、あるいはその両者に帰属します。 ライセンス契約者は、CAがライセンス契約者から受け取る本製品に関するあらゆるフィードバックを、当該フィードバックに基づいた派生物の複製および作成、ならびにこれらの配布を含め、CAの任意の業務のために承諾なくCAが使用できることに同意するものとします。本製品の使用権を他のCA製品と交換することはできません。本製品は単一の製品としてライセンス契約されます。本製品の構成要素を分離して使用することはできません。ライセンス契約者および承認エンドユーザは、本製品および本製品のライセンス条件を厳に機密として保持し、また権限のない者に開示または使用されないように本製品を保護するため最善の努力を講じるものとします。ライセンス契約者は、(i)準拠法が以下の制限を明示的に禁じている場合を除き、本製品を開示、逆コンパイル、分解、その他リバース エンジニアリングしてはならず、(ii)本製品に基づいた派生物を作成してはならず、(iii)CAから適切なライセンスを取得することなく、本製品を使用してファシリティ マネジメント、アウトソーシング、サービス ビューロー、ホスト サービス、クラウド サービス、オンデマンド サービス、またはそれに類する業務を提供するなど、第三者の利益のために本製品を使用してはならず、また、(iv)CAから事前に書面にて承諾を得ずに、第三者に対して本製品の使用を許可してはなりません。ライセンス契約者は本製品のいかなるベンチマーク テストに関する情報も、CAから事前に書面にて承諾を得ずに第三者に開示してはなりません。準拠法が以下の制限を明示的に禁じている場合を除き、ライセンス契約者は、CAから事前に書面にて承諾を得ずに、本製品の全体または一部を譲渡、委譲、貸与、賃貸、使用、コピー、改変するか、または第三者に本製品に関して上記を許可してはなりません。ライセンス契約者は、CAまたはCAへのライセンス提供者の知的財産権に関する表示を削除してはなりません。ライセンス契約者は「コールドスタンバイ」による災害復旧、バックアップ、アーカイブのために本製品の適切な数量のコピーを作成することができます。ただしこれらのコピーは、ライセンス契約者の災害復旧の手順や有効性を検証する目的、および実際の災害発生後にライセンス契約者が本製品を使用できない場合に、妥当な期間内、必要に応じて使用する目的に限って使用できるものとします。ライセンス契約者は、何らかの理由でライセンス契約が失効した場合に、本製品の部分的コピーを含むすべてのコピーがすべてのコンピュータおよび記憶装置から削除され、本製品の部分的コピーを含むすべてのコピーが破棄またはCAに返却されそれらの使用が完全に停止されたことを、CAに対して書面にて保証するものとします。ライセンス契約者は、本製品が米国輸出規制(15 CFR 730-774)をはじめとするヨーロッパおよび米国の法律の規制対象となることを認識し、適用される全ての輸出入に関する法律および規制を遵守することに同意するものとします。ライセンス契約者は、米国の法律に反して本プロダクトを輸出、再輸出、移転しないこと、化学兵器、生物兵器、核兵器、ミサイルでの活用に結び付くいかなる目的にも使用しないこと、また本製品がそのような目的のために使用されるか、使用される可能性があることをライセンス契約者が知っているか知り得る理由がある場合に本製品の移転または再販売を行わないことに同意するものとします。本製品および本製品に付属するすべての文書は、CAの費用のみによって開発されたものであり、連邦調達規則2.101「Definitions」に定められている「commercial item(s)」および「commercial computer software」に相当します。本製品は、情報公開法(FOIA), 5 U.S.C.§552(b)(または該当する場合は類似の米国州法)に定められる免責事項に従い、開示を免除されます。ライセンス契約者に過去に納品された製品が再度納品されることはありません。ライセンス契約者に過去に納品されていない製品は、受理可能な注文書をCAが受領した後に、ライセンス契約者またはライセンス契約者が選択した再販業者に提供されます。本製品は電子配送(「ESD」)、または、有形メディアの場合はCPT(CAまたはCA関連会社の出荷地からの輸送費込み条件:インコタームズ2010の定義に基づく)のいずれかCAまたはCA関連会社それぞれが適切と見なした方法で出荷されるものとします。ライセンス契約者が本製品を購入するCAまたはCA関連会社は、関税および通関手続きにおいて責任を負うことに同意します。本製品にCAのハードウェアが含まれる場合、当該ハードウェアの所有権はCAまたはCA関連会社の出荷地にて運送人への引渡しをもってお客様に移転するものとします。電子配送の場合、有形媒体は引き渡されないものとします。当該電子配送によって、適用される消費税その他の税金を自動的に控除されるものではありません。オペレーティングシステムに「汎用」または「GA」と指定されている場合、それはCAの既存の仕様に従ってCAがそのオペレーティングシステムに向けて本製品を提供していることを示しています。検収は放棄され、物理的な製品出荷、または電子納品のためのキー/アクセス コードの配信のうち、いずれか早い方が発生時点とみなされます。本製品の製造者はCA Inc.です。CAは、ライセンス契約者に通知をしたうえで、ライセンス契約者もしくはライセンス契約者の子会社の施設内において、または施設外からの連絡により、ライセンス契約者が本契約の条件を遵守していることを確認する目的で監査を行う権利を留保します。CAはこのような監査をライセンス契約者のオフィスの通常営業時間内に実施し、このような監査の実施によってライセンス契約者の業務を不当に妨げないように努めるものとします。また必要であれば、独立の第三者機関によって秘密保持契約に従い監査を行うものとします。本契約は、その準拠法選択の条項にかかわりなく、米国ニューヨーク州法が適用され、それに従って解釈されます。また、 本契約の下で、あるいは本契約に関連して発生した行為が、ニューヨーク州サフォーク郡の州および連邦裁判所の司法権に独占的に管轄されるものとします。 -# +# # 9. CAは、CAが本契約を締結することができることを保証します。またCAは、CAに本契約を締結する権限がないという第三者による申し立て、およびライセンス契約者が本契約に従って本製品を使用したことで、ライセンス契約者が本製品の入手時点で使用を許可された地域内において米国の特許権、著作権を侵害したという第三者による申し立てによって生じる損害からライセンス契約者を免責し、自己の選択により和解することを保証します。同時にCAは、ライセンス契約者への本製品の引き渡し後90日間は、配布された製品がドキュメントに記載されている公開された仕様に従って実質的に動作することを保証します。ただし、CAが負うべき責任は、業界標準に鑑みて欠陥を是正するために合理的な努力をすることに限定されます。CAがライセンス契約者から書面にて上記保証の不履行に関する申し立てを受領してから、合理的に相当な期間内に(a)第三者の知的所有権を侵害せずに、または(b)CAの仕様書に従って、実質的に本製品を動作させることができない場合、CAは当該ライセンスを解除し、ライセンス契約者または認定CA再販業者に対して、支払われたライセンス料金および(または)サポートおよび保守料金を比例配分により返金する手続きを行うことができるものとします。かかる解除が行われた場合、返金額は(i)該当する注文書に記載されている本期間の残り月数に基づく比例配分によって計算するか、(ii)本製品が無期限でライセンス契約されている場合は、(返金額の算出目的に限り)3年償却ベースの比例配分によって計算します。本項で定めた保証は、本製品のベータ版、試用版、評価版、デモバージョン、またはSDKには適用されません。以下の場合、CAは保証の要求に対して補償または救済を行う義務を負わないものとします。(i)申し立てられた侵害または保証の要求が本製品の改変の結果生じたものであり、その改変がCAによるものではない場合。(ii)本製品がCAの仕様書、関連ドキュメント、ガイドラインに則って使用されていない場合。(iii)CAが提供するアップデートまたはパッチを使用することにより、申し立てられた侵害または保証の要求が回避できるか除去できる場合。(iv)申し立てられた侵害または保証の要求が、本製品を何らかの第三者製品と組み合わせて使用したことによる結果である場合。(v)本製品の所定の料金が期日を過ぎても支払われていないか、ライセンス契約者が本契約に違反している場合。ライセンス契約者の特定の指示に基づいてCAが作成した製品に関しては、本書に記載された免責は適用されず、CAはいかなる責任も負わないものとします。上に述べられた規定は、侵害の申し立てに対するCAの責任と義務の全てであり、また実際の侵害や侵害の申し立て、または知的財産やその他財産権の不正使用に関連してライセンス契約者に対して使用できる唯一の救済手段です。 -# +# # 10. 上記を除き、準拠法で許容される範囲内においては、下記の通りです。 -# +# # (I)CAは、商品性および特定用途への適合性に関する黙示の保証など、明示または黙示の保証を一切行いません。 # (II)本製品の使用、操作、または改変によって発生した時間的損害、金銭的損害、のれん代の損害、結果としての損害、または間接的損害を含むあらゆる損害について、当該損害が生じる可能性について報告を受けていたとしても、CAはライセンス契約者または第三者が申し立てた損害賠償請求から免責されるものとします。上記の責任に関する制限が、準拠法に鑑みて無効であると認められた場合、CAが負う損害賠償責任はライセンス契約者が本製品に対して実際に支払ったライセンス料の金額を超えないものとします。代理店、卸業者、CA認定再販業者を含むすべての第三者は、CAに代わって上記の保証条件を改変したり、追加の保証を提供してはなりません。CAは、本製品がライセンス契約者の要求を満たしていること、または本製品の使用が中断しないこと、または欠陥がないことを保証しません。 -# +# # 11. ライセンス契約者は本使用条件を譲渡できますが、ライセンスの譲渡について定めたその時点で有効なCAの方針にライセンス契約者が従う場合に限ります。当該方針には、本製品の使用範囲がライセンス契約者の事業およびライセンス契約者が過半数の株式を所有する子会社の事業を超えないという条件が含まれます。 -# +# # 12. ライセンス契約者が本契約の規定に違反した場合、ライセンス契約者が支払い不能になった場合、ライセンス契約者に対する破産手続きまたは財産管理手続きが開始された場合、CAは本契約に定める自らの義務の履行を保留する権利および本契約をただちに解約する権利を持つものとします。またその場合、CAの他のすべての権利に加えて、本契約に基づくすべての支払はその期限の利益を喪失し、CA、またはライセンス契約者が本製品を購入したCA関連会社に対してただちに支払期限を迎えるものとします。 -# +# # 13. ライセンス契約者が該当するメンテナンス料を支払わなかった場合、メンテナンスを再開するためには、メンテナンス料が支払われなかった各年に対して、その時点で有効なCAのメンテナンス料の150%をライセンス契約者がCAまたは各CA関連会社に対して支払う必要があるものとします。 -# +# # 14. 裁判所によって本契約のいずれかの条件規定が違法、無効、または執行不能だと判断された場合も、その他の条件規定はすべて完全な執行力および効力を持つものとします。本使用条件のいずれかの契約条件への違反に対する権利を放棄しても、当該契約条件以外の条件への違反に対する権利を放棄したことにはならず、また当該権利の放棄は当該権利を放棄する当事者から権限を与えられた代表者が書面にて行わないかぎり無効とします。本契約に関するご質問は、CA, Inc.の Worldwide Law Department、One CA Plaza, Islandia, NY 11749までお問い合わせ下さい。 -# +# # 15. ライセンス契約者が本製品のライセンスを米国外で取得した場合、本製品の使用に以下の各項が適用されます。 -# +# # 第8項の最後の1文の規定にかかわらず、本契約はライセンス契約者が本製品のライセンスを取得した国の法律が適用され、それに従って管理されます(以下に別途規定がある場合を除きます)。 -# +# # ヨーロッパ、中東およびアフリカ -# +# # 1. EMEAでは、CAグループ企業CA Europe S?rl(「CA Europe」)がライセンス提供者です。CA Europe S?rlは、CA Europe S?rlからEMEAにおける地域のCA子会社または認定CA再販業者を経由してライセンス契約者にライセンスとして提供された製品のライセンス提供者です。CAのサポートおよび保守(該当する場合)は、ローカルのCA子会社または認定CA再販業者によって提供されます。 -# +# # 2. EMEA とはヨーロッパ、中東およびアフリカを指します。 -# +# # 3. 第9項の3番目および5番目の文は第三者の権利の侵害にのみ適用されます。 第9項の2番目の文が下記の文で置き換えられます。 # 「CA Europeはまた、ライセンス契約者が本契約の条項に従う限りにおいて、本製品が本製品のドキュメントに記載された仕様に従って実質的に動作することを保証します。CA Europeがこの保証に違反した場合、ライセンス契約者の救済は、ライセンス契約者と協議の上、CA Europeが以下のいずれかを行うものとします。(i)欠陥を是正するために業界標準に鑑みて妥当と思われる努力をする。または(ii)ドキュメントに実質的に準拠した製品で本製品を置き換える。合理的な期間内に欠陥が修復できないか、欠陥の是正または置き換えがなされなかった場合、ライセンス契約者は、(i)サブスクリプションライセンスの場合、法的要件が満たされれば、合意による妥当な料金の減額を受けるか、正当な理由によって直ちに解除を行う権利を有する。(ii)無期限ライセンスの場合、自由裁量により、(1)該当する取引書面で合意された料金の取り消しまたは減額を受ける権利を有するか、(2)損害賠償を請求するか、または不要な出費に対する補償を要求する権利を有する。損害賠償の請求または不要な出費に対する補償の要求の権利は、以下10項に記載の責任の制限に従うものとします。無期限ライセンスの場合、本契約書に述べられる保証要求は、製品の提供後90日で効力を失うものとします。保証救済手段が適用されるのは次の場合に限られます。(i)申し立てられているエラーまたは欠陥をCA Europeが合理的に再現可能であり、(ii)本製品が改変されておらず、本製品のドキュメントに従って使用されており、(iii)違反の原因の全てまたは一部がCA以外の製品またはサービスによるものでない。上記保証がCA Europeによって提供される唯一の保証です。CA Europeまたはそのサプライヤは、黙示か明示かを問わず、本製品に一切エラーがないことを保証するものではありません。この保証には、十分な品質、非違法性、特定の目的に対する適合性に関する黙示の保証を含みますがこれらに限定されるものではありません。ライセンス契約者がこの保証条項のもとで保証の要求を行う場合、ライセンス契約者はその他のCA関連会社から同様の保証救済を求めることはできません。」 -# +# # 4.第10項が下記の文で置き換えられます。 -# +# # 「10.1 責任の理由の如何に関わらず、CA Europeによる重大な過失や故意の怠慢、またはCA Europeの法的代表者またはCA Europeによってその契約義務の履行を委託されている担当者による重大な過失や故意の怠慢に起因する死亡、肉体的損傷、または健康被害や損害が発生した場合、また製造物責任法(「Produktehaftpflichtgesetz」)の下での責任の場合、CA Europeの責任の範囲は制限されないものとします。 # 10.2 軽微な過失の場合、責任の理由の如何に関わらず、CA Europeは、本契約の遂行におよび相手方の通常の期待を履行する上で必要不可欠な義務の遂行を怠った場合にのみ責任を負うものとします。この場合、ライセンス契約者に対するCA Europe の責任範囲は、予測可能で、本契約に関連して通常発生しうる損害に限定されます。 # 10.3 上記に加え、ライセンス契約者に対するCA Europe の間接損害、特殊損害、結果損害(利益の損失、取引上の損失、機会の損失、信用の損失を含むがこれらに限定されない)についての責任範囲は、予測可能で、本契約に関連して通常発生しうる損害に限定されます。 # 10.4 上記10.2および10.3において、本契約において許諾されたライセンスに関連して通常発生しうることが予測可能な損害とは、ライセンス契約者が本製品を購入した最初もしくは更新された期間のその時点で支払われたかまたは支払われる予定の料金の範囲内に限定されると理解されるものとします。 # 10.5 データ損失に対する責任範囲は、通常の適切なデータバックアップにおける標準的な復旧作業に限定されるものとします。 # 10.6 本契約で提供される救済措置は、当事者の唯一の救済措置です。」 -# +# # 5.本契約に以下の条項が追加されました。 -# +# # 「不可抗力。 支払いの義務および情報の非公開に関連する義務を除き、本契約のいかなる定めにもかかわらず、当事者が取る行為、または取るべき行為の不履行が、戦争、騒乱、天災、ストライキ、その他(部分的か全体的かにかかわらず)労働、法律、法令、規制の停止、政府または政府組織(裁判所を含む)による命令など、当事者の制御を超えた原因によって発生したものである限り、いずれの当事者もそれらに対する責任を負わないものとします。」 -# +# # 「ライセンスデータ。ライセンス契約者が製品に準拠した義務としてCA Europeに個人情報を提供する場合、ライセンス契約者は、(i) 自らが当該個人情報をCA Europeに提供することができる正当な権限を具備し、準拠すべき法令に則ってその提供を行うこと、(ii) CA EuropeおよびCAの企業グループに属する企業(以降「CAグループ企業」と表記)またはそれらの各社の下請事業者が、各自の義務を履行する目的によってそれらの情報を使用することができること、また、(iii) CA Europeは、上記の目的により、それらの情報をCAグループ企業および下請事業者に開示することができるほか、その出所元の国以外の国に転送することができることを、事実として表明するものとします。CA, IncはSafe Harbour 認定を受けており、本CA企業は関係する情報の保護/プライバシー関連の法律に従うことを誓約します。」 -# +# # 6. 本契約の解釈と実施可能性はスイスの法律が規定します(法の抵触を除外する)。当事者は、本契約の下で、あるいは本契約に関連して発生した行為が、チューリッヒのスイス裁判所の司法権に独占的に管轄されることに同意するものとします。国連国際物品売買条約は本契約に適用されないものとします。 -# +# # 7. EMEA用の本契約に関するご質問は、CA Europe S?rlのWorldwide Law Department、Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerlandまでお問い合わせ下さい。 -# +# # アルゼンチン # CA関連子会社CA Argentina S.A.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、アルゼンチン共和国の法律に従って管理および解釈されます。本使用条件に関する争議は、すべてTribunales de la Cuidad de Buenos Airesによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Argentina S.AのFinance Department、Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Airesまでお問い合わせ下さい。」 -# -# オーストラリア +# +# オーストラリア # CA関連子会社CA (Pacific) Pty.Ltd (ABN 20 001 146 345) がライセンス提供者です。 -# +# # 第2項、第3項、および第10項の末尾に次の文が追加されます。 -# 「CAから保証が提供されないと明記されていても、ライセンス契約者にはCompetition and Consumer Act 2010、その他の州または特別地域の法律によって特定の権利が与えられている場合があり、それらの権利は制限されますが除外されません。法律により許容される範囲内で、CAは本契約の条項に明示されていないすべての条件を除外します。また、Competition and Consumer Act 2010、その他の州または特別地域の法律によって課せられるすべての条項を、適用される法律によって許容される範囲内で制限します。」 -# +# 「CAから保証が提供されないと明記されていても、ライセンス契約者にはCompetition and Consumer Act 2010、その他の州または特別地域の法律によって特定の権利が与えられている場合があり、それらの権利は制限されますが除外されません。法律により許容される範囲内で、CAは本契約の条項に明示されていないすべての条件を除外します。また、Competition and Consumer Act 2010、その他の州または特別地域の法律によって課せられるすべての条項を、適用される法律によって許容される範囲内で制限します。」 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、商取引が発生した州または特別地域の法律が適用されます。」 -# +# # 第10項に以下の文が追加されます。 # 「Competition and Consumer Act 2010、その他の州または特別地域の法律で黙示に定められている条項をCAが履行しなかった場合、CAが負う物品に関する責任は、当該物品の修理または交換、あるいは当該物品の修理または交換に要する費用の支払いに限定され、CAが負うサービスに関する責任は、サービスの再提供またはサービスの再提供に要する費用の支払いに限定され、これらのいずれが選択されるかはCAが決定できるものとします。条項が物品の販売権、瑕疵のない所有権、または瑕疵のない権限に関連する場合、あるいはCAによって供与される物品が通常は個人または家庭での使用または消費を目的に調達される場合、本項の制限はいずれも適用されません。」 -# -# ブラジル +# +# ブラジル # CA関連子会社CA Programas de Computador, Participa??es e Servi?os Ltda.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ブラジル連邦共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議はすべてサンパウロ市当局(Sao Paulo City Hall)の法廷で裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、Computador, Participa??es e Servi?os Ltda.のWorldwide Law Department、Avenida das Na??es Unidas, 12901 6 andar Torre Norte S?o Paulo SP, 04578-000までお問い合わせ下さい。」 -# -# カナダ +# +# カナダ # CA関連子会社CA Canada Companyがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、オンタリオ州の法律が適用されます。」 -# -# チリ +# +# チリ # CA関連子会社CA de Chile, S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、チリ共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Santiagoによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Chile, S.AのFinance Department、Avenida Providencia 1760, piso 15 Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiagoまでお問い合わせ下さい。」 -# -# 中国 +# +# 中国 # CA関連子会社CA (China) Co., Ltd.がライセンス提供者です。 -# +# # 第6項の2番目の文が下記の文で置き換えられます。 -# すべての料金は付加価値税を含みます。 -# +# すべての料金は付加価値税を含みます。 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、中華人民共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて管轄権を有する北京の裁判所によって裁決されます。」 -# +# # コロンビア # CA関連子会社CA Software de Colombia S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、コロンビア共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Bogot?によって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA Software de Colombia S.AのFinance Department、Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - N? 99-53 - Bogot? D.C. - Colombiaまでお問い合わせ下さい。」 -# +# # 香港 # CA関連子会社CA (Hong Kong) Limited(Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kongを主たる事業所とする)がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、香港特別行政区の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、香港特別行政区の裁判所が専属的管轄権を持つものとします。」 -# +# # 第10項の末尾に次の1文が追加されます。「上記の責任の制限および責任の限度額は、物品販売の法令、サービスの供与の法令(黙示の条項)、または控除管理の法令に関するライセンス契約者の制定法上の権利を損なうものではなく、CAの過失のみによって人員が死傷した場合のCAの責任を制限または除外するものでもありません。」 -# +# # インド # CA関連子会社CA (India) Technologies Private Limitedがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件およびその契約条件はインドの法律が適用され、それに従って解釈され、本使用条件に関する争議が発生した場合、ムンバイの裁判所が専属的管轄権を持つものとします。」 本製品が電子配送される場合は、CAは当該製品をインド以外の国に置かれたサーバからダウンロード可能にすることができるものとします。 -# +# # インドネシア(シンガポールを参照) -# +# # 日本 # CA関連子会社日本CA株式会社がライセンス提供者です。 -# +# # 第6項の3番目の文が以下の文で置き換えられます。 -# 「ライセンス契約者は、政府または政府の関連機関より課せられるすべての関税および税金を、CAより提示される請求書に従って支払うことに同意するものとします(ただし、支払い義務がCAに課せられる税金を除きます)。」 -# +# 「ライセンス契約者は、政府または政府の関連機関より課せられるすべての関税および税金を、CAより提示される請求書に従って支払うことに同意するものとします(ただし、支払い義務がCAに課せられる税金を除きます)。」 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、日本国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて東京地方裁判所によって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、郵便番号102-0093、東京都千代田区平河町2-7-9、日本CA株式会社の法務部までお問い合わせ下さい。」 -# +# # 韓国 # CA関連子会社CA Korea Inc., Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、大韓民国の法律が適用され、それに従って解釈されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本使用条件に関するご質問は、CA Korea, Inc., Ltd. の Worldwide Law Department、City Air Tower (22nd Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea までお問い合わせ下さい。」 -# +# # マレーシア # CA関連子会社CA (Malaysia) Sdn. Bhd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、マレーシアの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マレーシアの裁判所が専属的管轄権を持つものとします。」 -# +# # 第10項に以下の文が追加されます。 # 「CAから保証が提供されないと明記されていても、ライセンス契約者には消費者保護法1999(Consumer Protection Act 1999)によって特定の権利が与えられている場合があり、保証は準拠法によって許容される範囲でのみ制限されます。」 -# -# メキシコ +# +# メキシコ # CA関連子会社CA Software de M?xico S.A. de C.V.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、メキシコ合衆国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales de la Cuidad de M?xicoによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 本契約に関するご質問は、CA Software de M?xico S.A. de C.VのFinance Department、Av.Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500までお問い合わせ下さい。 -# +# # ニュージーランド # CA関連子会社CA Pacific (NZ) Ltd.がライセンス提供者です。 -# +# # 第6項の最後の1文にかかわらず、ライセンス契約者が請求書の支払いを怠った場合、月1.5%の利息が加算されます。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 -# 「本使用条件は、ニュージーランドの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、ニュージーランドの裁判所が専属的管轄権を持つものとします。」 -# +# 「本使用条件は、ニュージーランドの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、ニュージーランドの裁判所が専属的管轄権を持つものとします。」 +# # 第10項に以下の文が追加されます。 # Although CA specifies that there are no warranties, Licensee may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited.ライセンス契約者が、消費者保証法1993に定められている営業用途でCAの物品またはサービスを調達した場合、当該物品またはサービスに対して消費者保証法1993は適用されません。本製品が消費者保証法1993に定められている営業用途以外の目的で調達された場合、本項の制限は消費者保証法1993の制限に従います。 -# +# # 第12項に以下の文が追加されます。 # 「ライセンス契約者の清算手続きまたは解散手続きが決議または開始された場合も、本項に定めるCAの権利が適用されます。」 -# +# # ペルー # CA関連子会社CA de Peru S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ペルー共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de La Cuidad de Limaによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Peru S.AのFinance Department、Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peruまでお問い合わせ下さい。」 -# +# # フィリピン # CA関連子会社Philippine Computer Associates International, Inc.がライセンス提供者です。 -# +# # 第8項の1~8番目の文が下記で置き換えられます。 # 「本製品およびそれを改変したものについての権利は、CAに帰属します。本製品はCAまたはCAライセンス提供者の営業秘密および所有財産です。ライセンス契約者は、CAがライセンス契約者から受け取る本製品に関するあらゆるフィードバックを、当該フィードバックに基づいた派生物の複製および作成、ならびにこれらの配布を含め、CAの任意の業務のために承諾なくCAが使用できることに同意するものとします。本製品の使用権を他のCA製品と交換することはできません。ライセンス契約者およびライセンス契約者の被雇用者は、本製品および本製品の契約条件を機密情報として管理するものとします。ライセンス契約者は準拠法によって許容される範囲を超えて本製品を開示、逆コンパイル、分解、またはリバース エンジニアリングしてはなりません。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 -# 「本使用条件は、フィリピン共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マカティ市の裁判所のみが司法権を持つものとします。」 -# +# 「本使用条件は、フィリピン共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マカティ市の裁判所のみが司法権を持つものとします。」 +# # 第12項が下記の文で置き換えられます。 # 「ライセンス契約者が本使用条件の規定に違反した場合、ライセンス契約者が支払い不能になった場合、ライセンス契約者に対する破産手続きまたは財産管理手続きが開始された場合、CAは本使用条件に定める自らの義務の履行を保留する権利および本使用条件を書面による通知をもってただちに破棄する権利を持つものとします。またその場合、CAのすべての権利に加えて、本使用条件に定めるすべての支払はただちに支払期限を迎えるものとします。」 -# -# シンガポール +# +# シンガポール # CA関連子会社CA (Singapore) Pte. Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、シンガポール共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、シンガポール共和国の裁判所のみが司法権を持つものとします。」 -# +# # 第9項の末尾に下記の文が追加されます。 -# 「準拠法によって許容される範囲で、CA は品質または特定用途への適合性に関する黙示の条件または保証から免責されます。」 -# +# 「準拠法によって許容される範囲で、CA は品質または特定用途への適合性に関する黙示の条件または保証から免責されます。」 +# # 台湾 # CA関連子会社CA (Taiwan) Limitedがライセンス提供者です。登記された事業所の所在地は17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwanです。 -# +# # 第6項の2番目の文が下記の文で置き換えられます。 # すべての料金は付加価値税を含みません。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 本契約は、準拠法選択の条項に関わりなく、台湾の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて台北地方裁判所(Taipei District Court)によって裁決されます。」 -# +# # タイ # CA関連子会社CA Sales (Thailand) Co., Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、タイ王国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、タイ王国の裁判所のみが司法権を持つものとします。」 -# +# # ベネズエラ # CA関連子会社Computer Associates (CAI) de Venezuela, CAがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ベネズエラ共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Caracasによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、Computer Associates (CAI) de VenezuelaのFinance Department、CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuelaまでお問い合わせ下さい。」 -# +# # 16. 本製品にサード パーティ製のソフトウェアが含まれており、そのソフトウェアのライセンス提供者から特定のライセンス条件を本使用条件に追加するよう要求された場合は、それらのライセンス条件が本使用条件の末尾に追加されています。 -# -# ライセンス契約者はこのライセンス契約書を最後まで読み、内容を理解した上で、最終行に「accept」と入力することで契約条件に同意したものと認めます。またライセンス契約者は、本使用条件の主旨に関してCAおよびライセンス契約者が完全に合意したことを本使用条件(本使用条件または本使用条件に定めるサード パーティ製ソフトウェアに関する条件を記載した注文書を含む)が示していることに同意するものとします。加えてライセンス契約者は、本使用条件の主旨に関する情報を入手した場合、その情報よりも本使用条件が優先されることに同意するものとします。ただし、ライセンス契約者に対して本製品のライセンス使用を許可する書面をCAおよびライセンス契約者の双方が交わした場合、本使用条件(下記のサード パーティ製品に関する契約条件を除く)は無効になるものとします。本使用条件を修正するには、CAおよびライセンス契約者双方の権限を委任された代表者同士が書面にて合意する必要があるものとします。 -# +# +# ライセンス契約者はこのライセンス契約書を最後まで読み、内容を理解した上で、最終行に「accept」と入力することで契約条件に同意したものと認めます。またライセンス契約者は、本使用条件の主旨に関してCAおよびライセンス契約者が完全に合意したことを本使用条件(本使用条件または本使用条件に定めるサード パーティ製ソフトウェアに関する条件を記載した注文書を含む)が示していることに同意するものとします。加えてライセンス契約者は、本使用条件の主旨に関する情報を入手した場合、その情報よりも本使用条件が優先されることに同意するものとします。ただし、ライセンス契約者に対して本製品のライセンス使用を許可する書面をCAおよびライセンス契約者の双方が交わした場合、本使用条件(下記のサード パーティ製品に関する契約条件を除く)は無効になるものとします。本使用条件を修正するには、CAおよびライセンス契約者双方の権限を委任された代表者同士が書面にて合意する必要があるものとします。 +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 最終更新日 2016-01-12 -# -# 上記の使用条件の契約条件に同意する場合は、最終行に「accept」と入力し、インストール処理を進めてください。 -# +# +# +# 最終更新日 2016-05-25 +# +# 上記の使用条件の契約条件に同意する場合は、最終行に「accept」と入力し、インストール処理を進めてください。 +# # インストール処理を中止する場合は、最終行に「reject」と入力してください。 -# +# # CAエンドユーザライセンス使用許諾書の有効な値: {accept, reject} CA-EULA=accept diff --git a/enterprise-manager/eula-introscope/ca-eula.ko.txt b/enterprise-manager/eula-introscope/ca-eula.ko.txt index c3e95e5..1675ee5 100644 --- a/enterprise-manager/eula-introscope/ca-eula.ko.txt +++ b/enterprise-manager/eula-introscope/ca-eula.ko.txt @@ -3,348 +3,341 @@ # CA End User License Agreement File # ############################################################################## -# +# # 현재 설치 중인 CA 소프트웨어 제품(이하 "본건 제품"이라 함), 본건 제품 내에 포함된 관련 문서 및 소프트웨어개발키트(이하 "SDK"라 함)에 관한 최종사용자라이센스계약(이하 "본 계약"이라 함) -# -# 본건 제품을 설치 및 사용하기 전, 본건 제품 사용과 관련한 하기 조건을 주의 깊게 읽으십시오. 본 계약에서 여러분이라 함은 "귀하" 또는 "라이센시"를 의미합니다. -# -# 입력 아래, 당신이 "동의 함" -# -# (I) 귀하가 미성년자가 아니며, 귀하 자신 및 (해당하는 경우) 귀하의 고용주가 본 계약의 조건을 준수하도록 할 수 있는 완전한 법적 자격과 권한을 가지고 있음을 진술하는 것이며, -# (II) 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표를 대신하여, 또는 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표의 자격으로 본 계약에 구속된다는 것에 동의하는 것입니다. -# +# +# 본건 제품을 설치 및 사용하기 전, 본건 제품 사용과 관련한 하기 조건을 주의 깊게 읽으십시오. 본 계약에서 여러분이라 함은 "귀하" 또는 "라이센시"를 의미합니다. +# +# 입력 아래, 당신이 "동의 함" +# +# (I) 귀하가 미성년자가 아니며, 귀하 자신 및 (해당하는 경우) 귀하의 고용주가 본 계약의 조건을 준수하도록 할 수 있는 완전한 법적 자격과 권한을 가지고 있음을 진술하는 것이며, +# (II) 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표를 대신하여, 또는 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표의 자격으로 본 계약에 구속된다는 것에 동의하는 것입니다. +# # 입력하면 "거부"아래의 설치 프로세스가 중단됩니다 -# +# # 1. CA, Inc.(또는 본건 제품이 공급되는 1개 이상의 국가에 소재하는 법인으로서 제15조 이후에 각각 기재된 CA 법인)(이하 “CA”)은 라이센시에게 본건 제품의 사본 1부를 주문 양식(하기 정의됨) 또는 본건 제품 포장 내에 포함된 CD 재킷에 허가된 사용 제한수(이하 "허가된사용제한수"라고 함)로 명시된 바와 같이 (a)해당 수량과 (b) 본건 제품(예를 들면 MIPS, CPU, 계층, 서버 또는 사용자를 포함하며 이에 국한하지 않음)의 사용을 평가하기 위해 CA가 게시한 기준을 준수하여 사용하도록 제공합니다. CA는 계약 기간 중 오로지 내부 업무를 위한 사용을 목적으로 제한되고 배타적이지 않으며 양도불가능하다는 계약 조건에 따라 본건 제품의 라이센스를 라이센시에게 허여하며, 그 외에도 (a) 라이센시와 CA 계열회사 간에 체결했거나 혹은 다른 식으로 약정한 모든 CA 주문 양식 또는 등록 양식 또는 (b) CA가 라이센시에게 제공한 자료로서 (해당되는 경우) 본 계약의 제반 조건을 인용 및 포함하고 있는 라이센스프로그램인증서(이하 각각 “주문 양식”이라 한다)에 각각 수록된 기타 계약 조건에 따라 상기의 목적으로 본건 제품의 라이센스를 라이센시에게 허여합니다. -# +# # 2. 본건 제품이 프로그램의 알파 또는 베타 버전(이하 "베타 프로그램" 또는 "베타 버전"이라 함)이며 현재까지 일반에게 공개되지 않은 경우, CA는 일반 공개 릴리스가 베타 프로그램과 동일하다거나 일반 공개 릴리스를 재설치할 필요가 없다는 것을 보증하지 않습니다. 라이센시가 지원을 위해 등록하거나 CA가 달리 요청하는 경우, 라이센시는 본건 제품의 운영 경험과 관련한 특정 정보를 CA에게 제공하기로 동의합니다. 라이센시는 본건 제품의 베타 버전이 (a) CA가 서면으로 달리 승인하는 경우를 제외하고는, 테스트 목적에 한하여 사용되어야 하고 생산 업무를 수행할 수 없으며, (b) 테스트 또는 디버깅 되지 않았고, 실험용으로 사용되며, 문서는 초안 형태일 수 있고, 대부분의 경우 불완전한 상태일 것이라는 점을 인정하고 이에 동의합니다. 라이센시는 CA가 본건 제품 베타 버전의 완벽함 또는 정확성, 또는 라이센시에 의한 동 베타 버전의 사용이나 운영과 관련하여 어떠한 진술도 제공하지 않는다는 것에 동의합니다. 베타 제품은 어떠한 보증 또는 어떠한 종류의 진술, 명시적이거나 묵시적인 보증, 어떠한 제한, 타이틀 또는 불침해에 대한 어떠한 보증이나 진술 없이 “있는 그대로” 제공됩니다. 라이센시는 (본건 제품의 베타 버전을 획득하기 전 등록 과정에서 라이센시가 동의한 베타 테스팅 계약 또는 사전 릴리스 테스팅 계약(이하 "베타테스팅계약"이라 한다)에 의해 정의된 바와 같이) 본건 제품의 베타 버전의 검사자이기도 한 바, 라이센시는 본 계약의 조건이 베타테스팅계약에 추가될 뿐이며 베타테스팅계약을 대체하는 것은 아니라는 것에 동의합니다. -# -# 3. 시험판 또는 평가판 형식으로 본건 제품의 라이센스가 허여되는 경우, 별도의 기간이 달리 명시되지 않는 경우, 라이센시는 제1조에 명시된 사용 제한에 따라 30일의 평가 기간 동안(이하 "시험기간"이라 함) 본건 제품을 평가 목적에 한하여 사용하기로 동의합니다. 시험기간 종료 시, 라이센시가 본건 제품을 사용할 수 있는 권리는 자동으로 만료되며, 라이센시는 본건 제품을 제거하고 본건 제품의 전체 또는 일부 사본을 CA로 반납하거나 또는 본건 제품의 전체 또는 일부 사본이 라이센시의 컴퓨터 라이브러리 및/또는 저장 장치에서 삭제되었으며 파기되었음을 서면으로 CA에게 입증하기로 합니다. 라이센시가 시험 사용 기간 이후에도 본건 제품을 계속 사용하고자 하는 경우, CA 또는 CA 계열회사로 연락하여 해당 수수료를 지급하고 본건 제품의 라이센스를 취득할 수 있습니다. 시험 사용 기간 중 라이센시는 본건 제품을 어떠한 보증도 없이 "있는 그대로" 사용하며, CA는 상품성 및 특정 목적에의 적합성에 대한 암묵적 보증 뿐만 아니라 본 계약의 여타 부분에 제시된 명시적 보증을 포함하여 모든 보증을 부인합니다. -# -# 4. SDK(Software Development Kit)가 본건 제품에 포함되는 경우, 본 항의 조건이 SDK의 사용에만 적용됩니다. SDK에는 소프트웨어, API 및 관련 문서가 포함될 수 있습니다. SDK는 라이센시가 대리인 자격으로, 제3자 소프트웨어 또는 하드웨어를 본건 제품과 통합시키는 소프트웨어를 개발한다거나 본건 제품과 함께 작동하는 소프트웨어를 개발하기 위해 자체 내부적으로 사용하기 위한 목적에 한하여 제공됩니다. 라이센시는 본건 제품을 내부적으로 보다 효과적으로 사용하고자 할 때에만 SDK를 사용해야 합니다. 본건 제품과 관련하여 라이센시에게 어떠한 종류의 배포 권한도 부여되지 않습니다. 하기 제8조에 명시된 제한 사항 이외에도, 라이센시는 SDK, 관련 문서, 또는 SDK의 실행 버전이 포함된 응용프로그램을 제3자에게 또는 인터넷 상으로 복제, 공개, 판매 또는 배포할 수 없으며, 상기 실행 파일을 허가된사용제한수를 초과하여 사용할 수 없습니다. 본 조항 및 본 계약에 포함된 여타 조항이 상충할 경우, SDK의 사용과 관련된 경우에만 본 조항의 조건이 우선합니다. -# -# 준거법에서 허용하는 최대 한도까지, 그리고 본 계약에 상반된 취지의 조항이 포함되어 있음에도 불구하고, SDK는 어떠한 종류의 보증도 없이 "있는 그대로" 제공되고 라이센스가 허여됩니다. -# -# 5. 주문양식에 기재되어 있거나, CA 혹은 여하한 CA 계열회사가 허가한 재판매업자와 라이센시 간 합의에 의해 지정된 수수료를 지급함으로써, 라이센시는 주문양식에 지정된 기간("계약기간") 동안 본건 제품을 사용할 권리를 갖게 되며, 이러한 권리에는 주문양식에 명시된 기간 동안 본건 제품에 대해 유지보수 서비스를 받을 수 있는 권리가 포함됩니다. 본 계약에 따라 지급해야 하는 모든 수수료는 주문 양식에 명시된 바와 같이 지급해야 하며, 명시되어 있지 않을 경우에는 CA 송장일로부터 30일 이내에 지급해야 합니다. 라이센시는 납품받은 본건 제품의 최신 릴리스를 설치해야 합니다. 최초 계약기간 이후에 본 계약에 규정된 바와 같이 본건 제품을 지속적으로 사용하거나 유지보수 서비스를 받기 위해서는, 라이센시는 주문양식에 명시된 수수료를 지급해야 합니다. 귀하가 CA가 허가한 재판매업자로부터 본건 제품의 라이센스를 취득할 경우, 대금 지급, 가격 및 할인 관련 사항은 귀하와 귀하가 선택한 CA 재판매업자 간에 체결하는 계약 조건에 의하고, 위 사항을 규율하는 본 계약의 조건은 적용되지 않습니다. 라이센시 구매 주문서에 명시할 수 있는 여하한 약정 조건(미리 인쇄된 약정 조건을 포함하며 이에 국한하지 않음)이거나 CA가 허가한 재판매업자를 대상으로 작성된 라이센시의 주문서에 수록되어 있는 약정 조건으로서 본 계약의 제반 조건과 상충하거나 차이를 보이는 여하한 약정 조건은 제품에 적용하지 않으며 효력이 없는 것으로 간주합니다. 전술 사항에도 불구하고, 서명 파일 및 보안 업데이트와 같이 컨텐츠가 지속적으로 업데이트되어야 하는 본건 제품의 경우, 라이센시는 라이센스 유효일자로부터 1년간 상기 컨텐츠 업데이트를 사용할 권리를 갖습니다. -# -# 6. CA 또는 CA 계열회사가 유지보수 서비스를 제공하는 경우, 주문양식에 기재된 바와 같이 매년 갱신되어야 합니다.  모든 수수료에는 세금이 포함되어 있지 않습니다. 라이센시는 CA 또는 (해당하는 경우) CA 계열회사로부터 청구서를 수령하는 경우 연방/주/지방세, 판매세, 사용세, 부가가치세 및 개인 재산세(CA가 납부해야 하는 면허세 및 소득세는 제외함)를 포함한, 모든 정부 기관이 부과 또는 징수하는 관세나 세금을 납부하는 것에 동의합니다. 상기 관세나 세금에 대한 면세 청구 시, CA에게 적절한 증빙 자료를 제출해야 합니다. 라이센시가 청구서에 기재된 금액을 지급일에 지급하지 않는 경우, 월 1.5% 또는 최고 법정 이자율 중 보다 낮은 이자율로 이자가 발생됩니다. -# -# 7. 라이센시는 허가된사용제한수 한도까지 주문 양식에 명시된 지역에서 본건 제품을 설치 및 배포할 수 있습니다. 라이센시는 라이센시 본인과 그 계열회사의 내부 업무를 목적으로 권한이 있는 최종 사용자들이 각자 위치한 모든 장소에서 본건 제품에 액세스하도록 허용할 수 있습니다. 단, 라이센시는 권한이 있는 최종 사용자의 계약 위반을 라이센시 본인의 계약 위반 및 책임으로 간주한다는 것에 명시적으로 동의합니다. 라이센시는 사전 서면 통지가 있을 경우에 주문 양식에 명시된 지역 내에 위치한 라이센시의 새로운 장소로 본건 제품을 재배치할 수 있습니다. 본 계약의 목적상, “권한이 있는 최종 사용자”란 라이센시와 그 계열회사 및 계열회사 직원들을 가리킬 뿐만 아니라, 본 계약에 수록된 당사자들과 똑같이 제한적인 계약 조건을 따라야 하며 제3자가 아닌 라이센시를 대리하는 독립 계약자들(단, 여하한 아웃소서, 시설 관리 제공업자 또는 애플리케이션 서비스 제공업자는 제외)도 가리킵니다. 라이센시와 관련해 “계열회사”는 라이센시가 직간접적으로 경영권을 행사하는 여하한 법인을 의미하며, “경영권”이란 법률 또는 계약 혹은 그에 준하는 약정에 의거해 어떤 법인 지분의 50%를 초과하여 소유 또는 지배하거나 그러한 법인의 이사회를 지배하는 것을 의미합니다. 라이센시가 상기 제한을 벗어나서 본건 제품을 사용하고자 하는 경우, 라이센시는 본인에게 본건 제품을 조달한 CA 또는 CA 계열회사에 그러한 사항을 통보하여야 하고, 이러한 확대 사용에 대한 청구서를 수령한 후에는 해당 요금을 지급해야 합니다. -# -# 8. 본건 제품(본 계약에 따라 라이센시에게 제공될 수 있는 소스코드나 목적 코드, 그리고 문서, 외관, 구조 및 구성 포함)은 CA 및/또는 (존재하는 경우) CA에게 라이센스를 허여한 자(이하 "CA 라이센스허여자"라 함)의 독점적 재산이며, 저작권, 특허, 상표, 영업비밀 및/또는 여타 법률에 의해 보호받을 수 있습니다. 본건 제품 자체, 또는 해당 SDK의 사본, 수정본, 번역본, 부분 사본, 컴파일본, 파생본이나 병합 부분에 대한 소유권은 언제나 CA 및/또는 CA 라이센스허여자에게 귀속됩니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 본건 제품은 단일 제품으로서 라이센스가 허여됩니다. 본건 제품의 구성부품은 분리하여 사용할 수 없습니다. 라이센시 및 그로부터 권한을 획득한 최종 사용자들은 본건 제품 및 본 라이센스의 조건을 철저하게 기밀로 유지해야 하며, 본건 제품이 무단 공개 또는 사용되지 않도록 최선의 노력을 다해야 합니다. 라이센시는 (i) 준거법에서 명시적으로 달리 금지하는 경우를 제외하고는, 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 리버스 엔지니어링할 수 없으며, (ii) 본건 제품을 기반으로 파생물을 생성할 수 없고, (iii) 시설 관리, 아웃소싱, 서비스 부서, 호스트 서비스, 클라우드 서비스, 주문형 서비스 또는 유사 업무를 목적으로 라이센시가 그러한 목적에 따른 사용을 허가하는 CA 라이센스 없이 제3자의 이익을 위해 본건 제품을 운영 또는 사용할 수 없으며, (iv) CA가 사전에 서면 허가를 하지 않는 한, 제3자에게 본건 제품의 사용을 허용할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이 본건 제품의 벤치마크 테스트 결과를 제3자에게 공개할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이는 제품의 일부 또는 전부를 양도, 이전, 대여, 임대차, 복사 또는 수정할 수 없으며, 타인에게 상기 행위를 하도록 허용할 수도 없으나, 단, 전술한 제한사항이 준거법에 따라 명시적으로 금지되는 경우는 예외로 합니다. 라이센시는 CA 또는 CA 라이센스허여자의 소유권 표시를 제거할 수 없습니다. 라이센시는 재해 복구 “콜드 스탠바이”, 백업 및 아카이빙을 목적으로 본건 제품의 사본을 적정한 수만큼 만들 수 있습니다. 단, 그러한 사본은 라이센시의 재해 복구 절차 및 효과를 테스트할 경우에 한해 사용해야 하며, 라이센시가 본건 제품을 운영할 수 없는 실제 재해가 발생한 이후의 여하한 적정 기간 동안 필요할 경우에 한해 사용해야 합니다. 어떤 이유로든 본 라이센스가 해지되는 경우, 라이센시는 본건 제품의 전체 및 일부 사본이 모든 컴퓨터와 저장 장치에서 삭제되었으며 CA로 반납 또는 파기되어 더 이상 사용되지 않음을 서면으로 CA에 입증해야 합니다. 라이센시는 본건 제품이 수출관리규정(15 CFR 730-774)을 포함해 유럽법 및 미국법에 따른 규제 대상에 포함된다는 점을 인지하며, 모든 해당 수출입 관련 법규를 준수하기로 동의합니다. 라이센시는 미국법을 위반하여 본건 제품을 수출, 재수출 또는 이전하지 않을 것이며 화학 무기, 생물학 무기 또는 핵무기나 그러한 성격의 미사일 용도와 관련된 여하한 목적으로 본건 제품을 사용하지 않기로 동의합니다. 또한 본건 제품이 그러한 목적으로 사용되도록 고안되거나 그러한 목적으로 사용될 수 있다는 점을 라이센시가 이미 인지하거나 합리적으로 인지할 수 있는 경우, 본건 제품을 이전 또는 재판매하지 않기로 동의합니다. 본건 제품 및 모든 부속 문서는 전액 민간 비용으로 개발된 것이며, 미국 연방조달하위규정(“Federal Acquisition Regulation Subpart”) 2.101 “정의”에 명시된 바와 같이 “상업용 품목” 및 “상업용 컴퓨터 소프트웨어”에 해당합니다. 본건 제품은 미국연방법전 제5편 552조 (b)항 정보공개법(FOIA - Freedom of Information Act)(또는 해당하는 경우, 그에 준하는 미국 각 주의 주법)에 명시된 1건 이상의 면책 조건에 따라 동법에 의거한 공개 대상에서 제외됩니다. 이전에 귀사에 공급한 모든 제품은 다시 공급할 수 없습니다. 이전에 라이센시에게 공급하지 않은 모든 제품은 CA가 적절한 주문을 접수함으로써 라이센시 또는 그가 선택한 재판매업자에게 공급됩니다. 본건 제품은 전자 전송(약칭 “ESD”) 방식으로 제공해야 하며 CA 또는 CA 계열회사가 유형의 매체로 제품을 제공할 것을 요구할 경우에는 인코텀스 2010에 정의된 바와 같이 CA 또는 그러한 CA 계열회사의 선적지에서부터 CPT로 공급해야 합니다. 라이센시가 본건 제품을 조달하는 출처에 해당하는 CA 또는 CA 계열회사는 여하한 CA 하드웨어에 대한 모든 관세 및 통관에 대해 책임을 지기로 동의하며, 제품 인도 시점에 CA 또는 그러한 CA 계열회사의 선적지에서 여하한 CA 하드웨어의 권원(포함된 경우)을 운송업자에게 인도합니다. 전자 전송의 경우, 어떠한 유형의 개인 재산도 전달되지 않습니다. 그러한 전자 전송은 해당 판매세 또는 사용세에 대한 면제 혜택을 자동으로 지원하지 않을 수 있습니다. “일반” 또는 “GA”로 구분된 모든 운영 체제는 CA가 최근 발표한 사양에 따라 본건 제품을 일반적으로 사용할 수 있도록 공급할 때 그 대상에 해당하는 운영 체제들을 가리킵니다.  승인은 포기되며, 물리적 선적 시점 또는 전자 전송을 위한 키/액세스 코드의 전송 시점 중 가장 빠른 시점에 승인이 발생한 것으로 간주됩니다. CA Inc.은 본건 제품의 제조업체입니다. CA는 라이센시 및 그로부터 권한을 획득한 최종 사용자들이 본 계약의 제반 조건을 준수하는지 여부를 확인하기 위해 귀사에 통보하여 라이센시 및/또는 귀사의 계열회사 시설을 대상으로 원격 감사 혹은 현장 감사를 실시할 권리가 있습니다. CA는 귀사의 사무소에서 정규 업무 시간 중에 그러한 감사를 실시하며 귀사의 제반 활동에 불합리한 지장을 주지 않는 방향으로 그러한 감사를 실시하기 위해 노력하는 한편, 필요하다면 비공개 계약 조건에 따라 감사를 실시하기 위해 독립적인 제3자를 사용하는 데 동의합니다. 본 계약은 섭외사법의 법리에 구애받지 않고 뉴욕주의 법률에 따라 규율 및 해석되어야 하며, 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위는 뉴욕주 서포크 카운티에 위치한 연방 법원 및 주 법원의 배타적 사법권의 독점 관할 하에 있습니다. -# +# +# 3. 시험판 또는 평가판 형식으로 본건 제품의 라이센스가 허여되는 경우, 별도의 기간이 달리 명시되지 않는 경우, 라이센시는 제1조에 명시된 사용 제한에 따라 30일의 평가 기간 동안(이하 "시험기간"이라 함) 본건 제품을 평가 목적에 한하여 사용하기로 동의합니다. 시험기간 종료 시, 라이센시가 본건 제품을 사용할 수 있는 권리는 자동으로 만료되며, 라이센시는 본건 제품을 제거하고 본건 제품의 전체 또는 일부 사본을 CA로 반납하거나 또는 본건 제품의 전체 또는 일부 사본이 라이센시의 컴퓨터 라이브러리 및/또는 저장 장치에서 삭제되었으며 파기되었음을 서면으로 CA에게 입증하기로 합니다. 라이센시가 시험 사용 기간 이후에도 본건 제품을 계속 사용하고자 하는 경우, CA 또는 CA 계열회사로 연락하여 해당 수수료를 지급하고 본건 제품의 라이센스를 취득할 수 있습니다. 시험 사용 기간 중 라이센시는 본건 제품을 어떠한 보증도 없이 "있는 그대로" 사용하며, CA는 상품성 및 특정 목적에의 적합성에 대한 암묵적 보증 뿐만 아니라 본 계약의 여타 부분에 제시된 명시적 보증을 포함하여 모든 보증을 부인합니다. +# +# 4. SDK(Software Development Kit)가 본건 제품에 포함되는 경우, 본 항의 조건이 SDK의 사용에만 적용됩니다. SDK에는 소프트웨어, API 및 관련 문서가 포함될 수 있습니다. SDK는 라이센시가 대리인 자격으로, 제3자 소프트웨어 또는 하드웨어를 본건 제품과 통합시키는 소프트웨어를 개발한다거나 본건 제품과 함께 작동하는 소프트웨어를 개발하기 위해 자체 내부적으로 사용하기 위한 목적에 한하여 제공됩니다. 라이센시는 본건 제품을 내부적으로 보다 효과적으로 사용하고자 할 때에만 SDK를 사용해야 합니다. 본건 제품과 관련하여 라이센시에게 어떠한 종류의 배포 권한도 부여되지 않습니다. 하기 제8조에 명시된 제한 사항 이외에도, 라이센시는 SDK, 관련 문서, 또는 SDK의 실행 버전이 포함된 응용프로그램을 제3자에게 또는 인터넷 상으로 복제, 공개, 판매 또는 배포할 수 없으며, 상기 실행 파일을 허가된사용제한수를 초과하여 사용할 수 없습니다. 본 조항 및 본 계약에 포함된 여타 조항이 상충할 경우, SDK의 사용과 관련된 경우에만 본 조항의 조건이 우선합니다. +# +# 준거법에서 허용하는 최대 한도까지, 그리고 본 계약에 상반된 취지의 조항이 포함되어 있음에도 불구하고, SDK는 어떠한 종류의 보증도 없이 "있는 그대로" 제공되고 라이센스가 허여됩니다. +# +# 5. 주문양식에 기재되어 있거나, CA 혹은 여하한 CA 계열회사가 허가한 재판매업자와 라이센시 간 합의에 의해 지정된 수수료를 지급함으로써, 라이센시는 주문양식에 지정된 기간("계약기간") 동안 본건 제품을 사용할 권리를 갖게 되며, 이러한 권리에는 주문양식에 명시된 기간 동안 본건 제품에 대해 유지보수 서비스를 받을 수 있는 권리가 포함됩니다. 본 계약에 따라 지급해야 하는 모든 수수료는 주문 양식에 명시된 바와 같이 지급해야 하며, 명시되어 있지 않을 경우에는 CA 송장일로부터 30일 이내에 지급해야 합니다. 라이센시는 납품받은 본건 제품의 최신 릴리스를 설치해야 합니다. 최초 계약기간 이후에 본 계약에 규정된 바와 같이 본건 제품을 지속적으로 사용하거나 유지보수 서비스를 받기 위해서는, 라이센시는 주문양식에 명시된 수수료를 지급해야 합니다. 귀하가 CA가 허가한 재판매업자로부터 본건 제품의 라이센스를 취득할 경우, 대금 지급, 가격 및 할인 관련 사항은 귀하와 귀하가 선택한 CA 재판매업자 간에 체결하는 계약 조건에 의하고, 위 사항을 규율하는 본 계약의 조건은 적용되지 않습니다. 라이센시 구매 주문서에 명시할 수 있는 여하한 약정 조건(미리 인쇄된 약정 조건을 포함하며 이에 국한하지 않음)이거나 CA가 허가한 재판매업자를 대상으로 작성된 라이센시의 주문서에 수록되어 있는 약정 조건으로서 본 계약의 제반 조건과 상충하거나 차이를 보이는 여하한 약정 조건은 제품에 적용하지 않으며 효력이 없는 것으로 간주합니다. 전술 사항에도 불구하고, 서명 파일 및 보안 업데이트와 같이 컨텐츠가 지속적으로 업데이트되어야 하는 본건 제품의 경우, 라이센시는 라이센스 유효일자로부터 1년간 상기 컨텐츠 업데이트를 사용할 권리를 갖습니다. +# +# 6. CA 또는 CA 계열회사가 유지보수 서비스를 제공하는 경우, 주문양식에 기재된 바와 같이 매년 갱신되어야 합니다.  모든 수수료에는 세금이 포함되어 있지 않습니다. 라이센시는 CA 또는 (해당하는 경우) CA 계열회사로부터 청구서를 수령하는 경우 연방/주/지방세, 판매세, 사용세, 부가가치세 및 개인 재산세(CA가 납부해야 하는 면허세 및 소득세는 제외함)를 포함한, 모든 정부 기관이 부과 또는 징수하는 관세나 세금을 납부하는 것에 동의합니다. 상기 관세나 세금에 대한 면세 청구 시, CA에게 적절한 증빙 자료를 제출해야 합니다. 라이센시가 청구서에 기재된 금액을 지급일에 지급하지 않는 경우, 월 1.5% 또는 최고 법정 이자율 중 보다 낮은 이자율로 이자가 발생됩니다. +# +# 7. 라이센시는 허가된사용제한수 한도까지 주문 양식에 명시된 지역에서 본건 제품을 설치 및 배포할 수 있습니다. 라이센시는 라이센시 본인과 그 계열회사의 내부 업무를 목적으로 권한이 있는 최종 사용자들이 각자 위치한 모든 장소에서 본건 제품에 액세스하도록 허용할 수 있습니다. 단, 라이센시는 권한이 있는 최종 사용자의 계약 위반을 라이센시 본인의 계약 위반 및 책임으로 간주한다는 것에 명시적으로 동의합니다. 라이센시는 사전 서면 통지가 있을 경우에 주문 양식에 명시된 지역 내에 위치한 라이센시의 새로운 장소로 본건 제품을 재배치할 수 있습니다. 본 계약의 목적상, “권한이 있는 최종 사용자”란 라이센시와 그 계열회사 및 계열회사 직원들을 가리킬 뿐만 아니라, 본 계약에 수록된 당사자들과 똑같이 제한적인 계약 조건을 따라야 하며 제3자가 아닌 라이센시를 대리하는 독립 계약자들(단, 여하한 아웃소서, 시설 관리 제공업자 또는 애플리케이션 서비스 제공업자는 제외)도 가리킵니다. 라이센시와 관련해 “계열회사”는 라이센시가 직간접적으로 경영권을 행사하는 여하한 법인을 의미하며, “경영권”이란 법률 또는 계약 혹은 그에 준하는 약정에 의거해 어떤 법인 지분의 50%를 초과하여 소유 또는 지배하거나 그러한 법인의 이사회를 지배하는 것을 의미합니다. 라이센시가 상기 제한을 벗어나서 본건 제품을 사용하고자 하는 경우, 라이센시는 본인에게 본건 제품을 조달한 CA 또는 CA 계열회사에 그러한 사항을 통보하여야 하고, 이러한 확대 사용에 대한 청구서를 수령한 후에는 해당 요금을 지급해야 합니다. +# +# 8. 본건 제품(본 계약에 따라 라이센시에게 제공될 수 있는 소스코드나 목적 코드, 그리고 문서, 외관, 구조 및 구성 포함)은 CA 및/또는 (존재하는 경우) CA에게 라이센스를 허여한 자(이하 "CA 라이센스허여자"라 함)의 독점적 재산이며, 저작권, 특허, 상표, 영업비밀 및/또는 여타 법률에 의해 보호받을 수 있습니다. 본건 제품 자체, 또는 해당 SDK의 사본, 수정본, 번역본, 부분 사본, 컴파일본, 파생본이나 병합 부분에 대한 소유권은 언제나 CA 및/또는 CA 라이센스허여자에게 귀속됩니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 본건 제품은 단일 제품으로서 라이센스가 허여됩니다. 본건 제품의 구성부품은 분리하여 사용할 수 없습니다. 라이센시 및 그로부터 권한을 획득한 최종 사용자들은 본건 제품 및 본 라이센스의 조건을 철저하게 기밀로 유지해야 하며, 본건 제품이 무단 공개 또는 사용되지 않도록 최선의 노력을 다해야 합니다. 라이센시는 (i) 준거법에서 명시적으로 달리 금지하는 경우를 제외하고는, 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 리버스 엔지니어링할 수 없으며, (ii) 본건 제품을 기반으로 파생물을 생성할 수 없고, (iii) 시설 관리, 아웃소싱, 서비스 부서, 호스트 서비스, 클라우드 서비스, 주문형 서비스 또는 유사 업무를 목적으로 라이센시가 그러한 목적에 따른 사용을 허가하는 CA 라이센스 없이 제3자의 이익을 위해 본건 제품을 운영 또는 사용할 수 없으며, (iv) CA가 사전에 서면 허가를 하지 않는 한, 제3자에게 본건 제품의 사용을 허용할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이 본건 제품의 벤치마크 테스트 결과를 제3자에게 공개할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이는 제품의 일부 또는 전부를 양도, 이전, 대여, 임대차, 복사 또는 수정할 수 없으며, 타인에게 상기 행위를 하도록 허용할 수도 없으나, 단, 전술한 제한사항이 준거법에 따라 명시적으로 금지되는 경우는 예외로 합니다. 라이센시는 CA 또는 CA 라이센스허여자의 소유권 표시를 제거할 수 없습니다. 라이센시는 재해 복구 “콜드 스탠바이”, 백업 및 아카이빙을 목적으로 본건 제품의 사본을 적정한 수만큼 만들 수 있습니다. 단, 그러한 사본은 라이센시의 재해 복구 절차 및 효과를 테스트할 경우에 한해 사용해야 하며, 라이센시가 본건 제품을 운영할 수 없는 실제 재해가 발생한 이후의 여하한 적정 기간 동안 필요할 경우에 한해 사용해야 합니다. 어떤 이유로든 본 라이센스가 해지되는 경우, 라이센시는 본건 제품의 전체 및 일부 사본이 모든 컴퓨터와 저장 장치에서 삭제되었으며 CA로 반납 또는 파기되어 더 이상 사용되지 않음을 서면으로 CA에 입증해야 합니다. 라이센시는 본건 제품이 수출관리규정(15 CFR 730-774)을 포함해 유럽법 및 미국법에 따른 규제 대상에 포함된다는 점을 인지하며, 모든 해당 수출입 관련 법규를 준수하기로 동의합니다. 라이센시는 미국법을 위반하여 본건 제품을 수출, 재수출 또는 이전하지 않을 것이며 화학 무기, 생물학 무기 또는 핵무기나 그러한 성격의 미사일 용도와 관련된 여하한 목적으로 본건 제품을 사용하지 않기로 동의합니다. 또한 본건 제품이 그러한 목적으로 사용되도록 고안되거나 그러한 목적으로 사용될 수 있다는 점을 라이센시가 이미 인지하거나 합리적으로 인지할 수 있는 경우, 본건 제품을 이전 또는 재판매하지 않기로 동의합니다. 본건 제품 및 모든 부속 문서는 전액 민간 비용으로 개발된 것이며, 미국 연방조달하위규정(“Federal Acquisition Regulation Subpart”) 2.101 “정의”에 명시된 바와 같이 “상업용 품목” 및 “상업용 컴퓨터 소프트웨어”에 해당합니다. 본건 제품은 미국연방법전 제5편 552조 (b)항 정보공개법(FOIA - Freedom of Information Act)(또는 해당하는 경우, 그에 준하는 미국 각 주의 주법)에 명시된 1건 이상의 면책 조건에 따라 동법에 의거한 공개 대상에서 제외됩니다. 이전에 귀사에 공급한 모든 제품은 다시 공급할 수 없습니다. 이전에 라이센시에게 공급하지 않은 모든 제품은 CA가 적절한 주문을 접수함으로써 라이센시 또는 그가 선택한 재판매업자에게 공급됩니다. 본건 제품은 전자 전송(약칭 “ESD”) 방식으로 제공해야 하며 CA 또는 CA 계열회사가 유형의 매체로 제품을 제공할 것을 요구할 경우에는 인코텀스 2010에 정의된 바와 같이 CA 또는 그러한 CA 계열회사의 선적지에서부터 CPT로 공급해야 합니다. 라이센시가 본건 제품을 조달하는 출처에 해당하는 CA 또는 CA 계열회사는 여하한 CA 하드웨어에 대한 모든 관세 및 통관에 대해 책임을 지기로 동의하며, 제품 인도 시점에 CA 또는 그러한 CA 계열회사의 선적지에서 여하한 CA 하드웨어의 권원(포함된 경우)을 운송업자에게 인도합니다. 전자 전송의 경우, 어떠한 유형의 개인 재산도 전달되지 않습니다. 그러한 전자 전송은 해당 판매세 또는 사용세에 대한 면제 혜택을 자동으로 지원하지 않을 수 있습니다. “일반” 또는 “GA”로 구분된 모든 운영 체제는 CA가 최근 발표한 사양에 따라 본건 제품을 일반적으로 사용할 수 있도록 공급할 때 그 대상에 해당하는 운영 체제들을 가리킵니다.  승인은 포기되며, 물리적 선적 시점 또는 전자 전송을 위한 키/액세스 코드의 전송 시점 중 가장 빠른 시점에 승인이 발생한 것으로 간주됩니다. CA Inc.은 본건 제품의 제조업체입니다. CA는 라이센시 및 그로부터 권한을 획득한 최종 사용자들이 본 계약의 제반 조건을 준수하는지 여부를 확인하기 위해 귀사에 통보하여 라이센시 및/또는 귀사의 계열회사 시설을 대상으로 원격 감사 혹은 현장 감사를 실시할 권리가 있습니다. CA는 귀사의 사무소에서 정규 업무 시간 중에 그러한 감사를 실시하며 귀사의 제반 활동에 불합리한 지장을 주지 않는 방향으로 그러한 감사를 실시하기 위해 노력하는 한편, 필요하다면 비공개 계약 조건에 따라 감사를 실시하기 위해 독립적인 제3자를 사용하는 데 동의합니다. 본 계약은 섭외사법의 법리에 구애받지 않고 뉴욕주의 법률에 따라 규율 및 해석되어야 하며, 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위는 뉴욕주 서포크 카운티에 위치한 연방 법원 및 주 법원의 배타적 사법권의 독점 관할 하에 있습니다. +# # 9. CA는 CA가 본 계약을 체결할 수 있다는 점, CA가 라이센시에 대한 손해를 배상하거나, 또는 CA가 상기 행위를 수행할 권한이 없다는 내용으로 제3자가 제기한 청구 또는 라이센시가 본 계약에서 허가된 바대로 본건 제품을 사용하는 것은 라이센시의 재판 관할 내에 본건 제품이 제공되는 순간 여하한 미국 특허권 또는 저작권을 침해하는 것이라는 취지로 제3자가 제기한 청구를 CA의 선택에 따라 해결할 것이라는 점을 보증합니다. 또한 CA는 라이센시에게 본건 제품을 인도한 날로부터 90일 동안 해당 문서 자료에 명시된 공개 사양에 따라 CA가 배포한 제품이 실질적으로 작동함을 보증합니다. 단, CA는 업계 표준에 따라 여하한 하자를 치유하기 위해 충분히 노력해야 할 책임만을 이행합니다. 상기 보증의 불이행 내용에 대한 라이센시의 서면 통보를 접수한 후 합당한 기간 내에 CA가 본건 제품을 (a) 제3자에 대한 지적 재산권 침해 없이 작동하도록 할 수 없거나 (b) 실질적으로 CA의 서면 사양에 부합하게 작동하도록 할 수 없는 경우 CA는 라이센스를 해지하고 라이센시 또는 허가된 CA 재판매업자에게 라이센스 수수료 또는 이미 지급한 지원 및 유지보수 수수료의 비례 환급금을 제공하거나 예정할 수 있습니다. 그러한 라이센스 해지의 경우, 비례 환급금의 액수는 (i) 해당 주문 양식의 계약기간 중 남은 개월의 수로 계산하거나 혹은 (ii) 본건 제품이 영구적인 라이센스 계약으로 허여된 경우에는 (오로지 환급금 계산을 목적으로) 3년의 상각표를 사용해 계산합니다. 본 조에 명시된 보증은 본건 제품의 베타 버전, 시험 버전, 평가 버전 또는 데모 버전에 적용되지 않으며 SDK에도 적용되지 않습니다. CA는 다음에 열거한 각 경우에서 보증 청구를 배상하거나 구제해야 할 책임이 없습니다. (i) CA가 본건 제품을 개조하는 경우가 아닌 한, 본건 제품을 개조함으로써 침해 또는 보증 청구에 대한 소송이 제기될 경우, (ii) CA의 사양, 관련 문서 및 지침에 따라 본건 제품을 사용하지 않을 경우, (iii) CA가 발표한 업데이트 또는 패치를 사용했더라면 침해 혐의 또는 보증 청구를 피하거나 다른 식으로 그러한 청구를 해소할 수 있었던 경우, (iv) 여하한 타사 제품과 함께 본건 제품을 혼용한 결과로서 침해 혐의 또는 보증 청구가 제기될 경우 혹은 (v) 본건 제품에 대해 지불해야 할 해당 수수료를 지불하지 않았거나 라이센시가 다른 식으로 본 계약을 위반할 경우. 라이센시의 구체적인 지시에 의해 CA가 제작한 제품과 관련하여 본 계약에 포함된 면책 요건들은 적용되지 않으며 CA는 이와 관련해 책임을 지지 않습니다. 전술한 조항들은 침해 청구에 관한 CA의 전적인 책임과 의무를 명시하고 있을 뿐만 아니라, 여하한 지적 재산권 또는 기타 소유권에 대한 실질적 침해 내지 침해 혐의 또는 오용과 관련해 라이센시에게 제공할 수 있는 유일한 구제 수단을 명시하고 있습니다. -# -# 10. 상기 명시된 사항을 제외하고, 준거법에서 허용하는 최대 한도까지 -# -# (I) CA는 상품성 또는 특정 목적에 대한 적합성에 관한 암묵적 보증을 포함하여, 여타 모든 명시적 또는 암묵적 보증을 제공하지 않습니다. +# +# 10. 상기 명시된 사항을 제외하고, 준거법에서 허용하는 최대 한도까지 +# +# (I) CA는 상품성 또는 특정 목적에 대한 적합성에 관한 암묵적 보증을 포함하여, 여타 모든 명시적 또는 암묵적 보증을 제공하지 않습니다. # (II) 어떠한 경우에도 CA는 본건 제품의 사용, 운영 또는 변경으로 인하여 발생될 수 있는 시간 및 영업권의 손실, 여타 결과적 또는 간접적 손해를 포함한 모든 손실로 인해 제기된 청구와 관련하여, 라이센시나 여타 당사자에 대해 아무런 책임을 지지 않으며, 동 조항은 CA가 상기 손실의 발생 가능성에 대해 사전에 통보받았다 하더라도 적용됩니다. 상기 책임 한계 조항이 준거법에 따라 무효임이 입증되는 경우, 해당 청구 내용에 대한 CA의 책임은 라이센시가 본건 제품에 대해 실제 지급한 라이센스 수수료 금액으로 제한됩니다. 대리인, 유통업체 또는 CA가 허가한 재판매업자를 포함한 어떠한 제3자도 상기 보증 내용 중 어떤 부분도 수정한다거나 CA를 대신하여 추가 보증을 제공할 권한이 없습니다. CA는 본건 제품이 라이센시의 요구사항을 충족한다거나, 중단 또는 오류 없이 작동한다는 것을 보증하지 않습니다. -# -# 11. 라이센시는 라이센스 이전과 관련된 CA의 당시 적용되는 정책을 준수하는 경우에 한하여 본 계약을 이전할 수 있으며, 동 정책에는 본건 제품의 사용 범위가 라이센시 자신의 사업 범위, 그리고 라이센스가 과반수 이상의 지분을 보유하고 있는 자회사의 사업 범위를 벗어나지 않아야 한다는 취지의 요구사항이 포함되어 있습니다. -# +# +# 11. 라이센시는 라이센스 이전과 관련된 CA의 당시 적용되는 정책을 준수하는 경우에 한하여 본 계약을 이전할 수 있으며, 동 정책에는 본건 제품의 사용 범위가 라이센시 자신의 사업 범위, 그리고 라이센스가 과반수 이상의 지분을 보유하고 있는 자회사의 사업 범위를 벗어나지 않아야 한다는 취지의 요구사항이 포함되어 있습니다. +# # 12. 라이센시가 본 계약의 여하한 조건을 위반하거나, 파산하거나, 파산 또는 재산관리 절차를 개시하거나, 동 절차가 라이센시를 상대로 제기되는 경우, CA는 본 계약에 따른 CA의 의무 이행을 보류 및/또는 본 계약을 즉시 해지할 수 있는 권리가 있으며, CA가 보유하는 여타 모든 권리에 추가하여 본 계약에 따라 지급되어야 하는 모든 금액은 라이센시에게 본건 제품을 조달한 CA 또는 CA 계열회사에 즉시 지급되어야 합니다. -# +# # 13. 라이센시가 해당 유지보수 수수료를 지급하지 못한 경우, 라이센시는 유지보수 수수료가 지급되지 않은 연도에 대해 CA가 당시 지정한 유지보수 수수료의 150%에 해당하는 수수료를 CA 또는 해당 CA 계열회사에 지급한 후에만 유지보수 서비스를 재개할 수 있습니다. -# +# # 14. 법원이 본 계약의 특정 조항이 불법, 무효 또는 집행 불가하다고 판시하는 경우, 나머지 조항들은 완전한 효력을 유지합니다. 일방 당사자가 본 계약의 특정 조항을 위반할 경우 상대방 당사자가 동 위반에 대해 상기 일방 당사자에 대해 행사할 수 있는 권리를 포기한다고 하여, 상기 위반 당사자가 여타 조항을 위반할 경우에 상기 상대방 당사자가 행사할 수 있는 권리를 포기하는 것으로 해석할 수는 없으며, 권리 포기는 포기 당사자의 수권 대표가 서면으로 체결한 경우에만 유효합니다. 본 계약에 관한 모든 질의사항은 CA, Inc., One CA Plaza, Islandia, NY 11749(참조: 전세계 법무부서)로 문의하여야 합니다. -# +# # 15. 라이센시가 미합중국이외의 지역에서 본건 제품에 대한 라이센스를 취득하는 경우, 본건 제품의 사용과 관련하여 하기 조항들이 적용됩니다. -# -# 제8조의 마지막 문장에 명시된 조건에도 불구하고 하기에 달리 규정된 경우를 제외하면 라이센시가 본건 제품의 라이센스를 취득한 국가의 법률이 본 계약을 규율합니다. -# +# +# 제8조의 마지막 문장에 명시된 조건에도 불구하고 하기에 달리 규정된 경우를 제외하면 라이센시가 본건 제품의 라이센스를 취득한 국가의 법률이 본 계약을 규율합니다. +# # 유럽, 중동 및 아프리카 -# +# # 1. CA Europe Sàrl(“CA Europe”)은 EMEA 지역의 CA 법인이자 라이센스허여자입니다. CA Europe Sàrl은 CA Europe Sàrl와 EMEA 지역 내 현지 CA 자회사 또는 CA가 허가한 재판매업자와의 라이센스 계약을 통해 라이센시에게 본건 제품을 제공하는 라이센스허여자입니다. CA의 지원 및 유지 보수는 현지 CA 자회사 또는 CA가 허가한 재판매업자가 제공합니다. -# +# # 2. EMEA는 유럽, 중동 및 아프리카를 가리킵니다. -# +# # 3. 제 9조의 세 번째 문장 및 다섯 번째 문장은 서드파티 권한 침해에만 적용됩니다. 제9조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. # “CA Europe은 또 라이센시가 본 계약의 제반 조건을 항시 준수하는 것을 전제로 하여 본건 제품이 본건 제품의 문서 자료에 명시된 해당 사양에 실질적으로 부합하게 작동함을 보증합니다. CA Europe이 이러한 보증을 위반한 경우, 라이센시의 구제는 CA Europe이 담당하며 라이센시와의 협의 하에 (i) 업계 표준에 부합하는 충분한 노력을 통해 해당 결함을 수정하거나 혹은 (ii) 해당 문서 자료의 요건을 실질적으로 준수하는 제품으로 본건 제품을 교체합니다. 해당 결함을 합당한 기간 내에 수정할 수 없거나 혹은 해당 결함의 교정 내지 교체 작업이 최종적으로 실패한 경우, 라이센시는 (i) 구독 라이센스의 경우, 합의된 수수료의 액수를 적정하게 삭감할 권리가 있으며 이와 함께 또는 별개로 법적 요건들을 충족할 경우, 그 사유에 근거해 라이센스 계약을 즉시 해지할 수 있는 권리가 있습니다. 그리고 (ii) 영구적 라이센스의 경우, 본인의 선택에 따라 (1) 해당 거래 문서에서 합의한 수수료를 폐지하거나 삭감할 권리가 있으며 (2) 손해 배상을 청구하거나 혹은 낭비한 지출에 대한 배상을 청구할 권리가 있습니다. 손해 배상 또는 낭비한 지출에 대한 배상을 청구할 권리는 하기의 제10조에 명시된 책임의 제한 요건을 따라야 합니다. 영구적 라이센스의 경우, 본 계약서에 명시된 보증 청구는 본건 제품을 인도한 날로부터 90일 이내에 제기해야 합니다. 보증 구제 수단은 (i) 불만으로 제기된 여하한 오류 또는 결함을 CA Europe이 충분히 재현할 수 있다는 점, (ii) 본건 제품은 개조되지 않았으며 해당 문서 자료에 따라 사용 중이라는 점 그리고 (iii) 해당 위반 사항에 대한 책임의 전부 또는 일부가 CA 외 타사 제품 또는 서비스에 있지 않다는 점을 전제로 하여 조건부로 제공됩니다. 상기의 보증 사항들은 CA Europe에서 제공하는 유일한 보증 사항입니다. CA Europe 또는 그 공급업체들은 만족스러운 품질, 불침해 또는 적합성에 대한 암묵적 보증 및/혹은 특정 목적에 대한 적합성 보증을 포함해(이에 국한하지 않음) 본건 제품에 오류가 없다는 점 등을 명시적 또는 묵시적으로 보증하는 그 밖의 보증 사항을 제시하지 않습니다. 라이센시가 본 보증 조항에 의거해 청구할 경우, 라이센시는 그 밖의 여하한 CA 계열회사로부터 동일한 보증 구제를 청구할 자격 내지 권한이 없습니다.” -# +# # 4. 제10조는 삭제되고 다음으로 대체됩니다. -# -# “10.1 CA Europe의 중과실 또는 고의적인 의무 불이행으로 인해, 또는 CA Europe에 의해 CA Europe의 계약 의무를 이행하게 된 CA Europe의 법정 대리인 내지 개인의 중과실 또는 고의적인 의무 불이행으로 인해 인명 피해, 신체적 상해 또는 건강 악화 및 그 밖의 손해가 발생할 경우 그리고 제조물책임법(“Produktehaftpflichtgesetz”)에 의거한 책임 문제가 발생할 경우, CA Europe은 책임 근거에 관계없이 무한 책임을 집니다. +# +# “10.1 CA Europe의 중과실 또는 고의적인 의무 불이행으로 인해, 또는 CA Europe에 의해 CA Europe의 계약 의무를 이행하게 된 CA Europe의 법정 대리인 내지 개인의 중과실 또는 고의적인 의무 불이행으로 인해 인명 피해, 신체적 상해 또는 건강 악화 및 그 밖의 손해가 발생할 경우 그리고 제조물책임법(“Produktehaftpflichtgesetz”)에 의거한 책임 문제가 발생할 경우, CA Europe은 책임 근거에 관계없이 무한 책임을 집니다. # 10.2 경미한 과실의 경우, CA Europe은 본 계약의 이행을 위해 필수적으로 요구되며 계약 상대방이 통상적으로 이행할 수 있다고 신뢰하는 어떤 의무를 위반할 경우에 한하여 책임 사유에 관계없이 책임을 집니다. 이 경우, CA Europe은 예측이 가능하면서 본 계약과 관련해 통상적으로 발생할 수 있는 라이센시의 제반 손해에 한해 책임을 집니다. # 10.3 상기의 요건 외에도 라이센시가 입은 간접 손해, 특별 손해 또는 부수적 손해(수익 손실, 업무 손실, 기회 손실 또는 영업권 손실을 포함하며 이에 국한하지 않음)에 대한 CA Europe의 책임은 예측이 가능하며 본 계약과 관련해 통상적으로 발생할 수 있는 손해로 제한됩니다. -# 10.4 계약 쌍방은 상기 제10조 2항 및 제10조 3항의 취지 내에서 본 계약에 따라 허여된 라이센스와 관련해 통상적으로 발생할 수 있는 예측 가능한 손해액의 범위는 라이센시가 본건 제품을 조달한 당시의 최초 계약기간 또는 갱신 계약기간 동안 이미 지불했거나 미불 상태에 있는 수수료의 최대 액수를 한도로 한다는 점에 합의합니다. -# 10.5 정기적이고 적절한 데이터 백업이 수행되는 경우, 데이터 손실에 대한 책임은 통상적인 복구 노력의 범위로 제한됩니다. +# 10.4 계약 쌍방은 상기 제10조 2항 및 제10조 3항의 취지 내에서 본 계약에 따라 허여된 라이센스와 관련해 통상적으로 발생할 수 있는 예측 가능한 손해액의 범위는 라이센시가 본건 제품을 조달한 당시의 최초 계약기간 또는 갱신 계약기간 동안 이미 지불했거나 미불 상태에 있는 수수료의 최대 액수를 한도로 한다는 점에 합의합니다. +# 10.5 정기적이고 적절한 데이터 백업이 수행되는 경우, 데이터 손실에 대한 책임은 통상적인 복구 노력의 범위로 제한됩니다. # 10.6 본 계약에 명시된 구제 수단들은 계약 쌍방의 유일한 구제 수단에 속합니다.” -# +# # 5. 본 계약에 다음 조항들이 추가되었습니다. -# +# # “불가항력. 대금 지급 의무와 비공개에 관한 의무를 제외하고, 본 계약에 여하한 상반된 조항이 명시되어 있더라도 전쟁, 폭동, 천재지변, 파업 또는 그 외 동맹 파업(근로자 일부 내지 전원), 정부 또는 정부 기관(여하한 법원 또는 재판소를 포함)의 여하한 법률, 조례, 규칙 또는 명령을 포함해(이에 국한하지 않음) 계약 일방이 통제할 수 없는 불가항력적 원인으로 인해 여하한 조치를 취하거나 혹은 반드시 취해야 할 조치를 취하지 않은 경우 계약 쌍방은 그러한 취한 조치 혹은 취하지 않은 조치에 대해 책임을 지지 않습니다.” -# +# # “라이센시 데이터. 라이센시가 여하한 제품상의 요구 사항에 기하여 CA Europe에 여하한 개인 데이터를 전송할 경우, 라이센시는 (i) CA Europe에 개인 데이터를 제공할 적법한 권한이 본인에게 있을 뿐만 아니라 관련 법률을 준수하여 개인 데이터를 합법적으로 제공하고 있으며 (ii) CA Europe 및 CA 그룹사 내 여하한 법인(각각 “CA 법인”이라 한다) 또는 그 하도급자들이 의무를 이행할 목적에서 그러한 개인 데이터를 처리할 수 있고 (iii) CA Europe은 이러한 목적을 위해 여하한 CA 법인 및 그 하도급자들에게 그러한 데이터를 공개할 수 있으며 그러한 데이터를 발생 국가 밖의 나라로 전송할 수 있다는 점을 진술합니다. CA, Inc은 안전피난처(Safe Harbour) 인증을 받았으며 CA 법인은 관련 데이터 보호/개인정보 규정을 준수합니다.” -# +# # 6. 본 계약의 해석 및 적용 범위에 관한 준거법은 스위스법(제반 법률 조항의 상충은 제외)으로 합니다. 계약 쌍방은 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위가 스위스 취리히에 위치한 스위스 법원의 배타적 사법권의 독점 관할 하에 있음에 동의합니다. 국제물품매매계약에 관한 유엔 협약은 본 계약에 적용되지 않습니다. -# +# # 7. EMEA 지역에서 본 계약에 관한 모든 질의사항은 CA Europe Sàrl 사무소 소재지인 Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland(참조: 전세계 법무부서)로 문의하시기 바랍니다. -# +# # 아르헨티나 # 라이센스허여자에 해당하는 CA 자회사는 CA de Argentina S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 아르헨티나 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales de la Cuidad de Buenos Aires에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Argentina S.A, Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires(참조: 재무부서)로 문의하시기 바랍니다. -# -# 호주 -# 라이센스허여자에 해당하는 CA 자회사는 CA (Pacific) Pty. Ltd.입니다 (ABN 20 001 146 345). -# +# +# 호주 +# 라이센스허여자에 해당하는 CA 자회사는 CA (Pacific) Pty. Ltd.입니다 (ABN 20 001 146 345). +# # 제2조, 제3조 및 제10조의 마지막에 다음 내용이 추가됩니다. -# CA는 보증이 없다고 명시하고 있으나, 라이센시는 2010년 경쟁및소비자법과 여타 주/지방법에 따라 특정 권리(배제될 수는 없으나 제한은 가능함)를 보유할 수 있습니다.  법률에서 허용하는 최대 한도까지, CA는 본 계약의 명시적 조건에 명시적으로 기재되지 않은 모든 조건을 배제하며, 2010년 경쟁및소비자법과 여타 주/지방법에 의해 부과되는 조건을 해당 법률에서 허용하는 최대 한도까지 제한합니다. -# +# CA는 보증이 없다고 명시하고 있으나, 라이센시는 2010년 경쟁및소비자법과 여타 주/지방법에 따라 특정 권리(배제될 수는 없으나 제한은 가능함)를 보유할 수 있습니다.  법률에서 허용하는 최대 한도까지, CA는 본 계약의 명시적 조건에 명시적으로 기재되지 않은 모든 조건을 배제하며, 2010년 경쟁및소비자법과 여타 주/지방법에 의해 부과되는 조건을 해당 법률에서 허용하는 최대 한도까지 제한합니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 거래가 이행된 주 또는 지역의 법률이 본 계약을 규율합니다. -# +# # 제10조에 다음 내용이 추가됩니다. # CA가 2010년 경쟁및소비자법 또는 여타 주/지방법에서 부과한 조건 또는 보증을 위반하는 경우, CA의 책임은 상품에 대해서는 상품의 수리나 교체, 또는 상품 수리나 교체에 소요되는 비용으로 제한되며, 서비스에 대해서는 서비스를 다시 제공하거나, 서비스를 다시 제공하는 데 소요되는 비용으로 제한되고, 실제로 상품을 수리/교체하거나 서비스를 제공할 것인지, 아니면 이에 상응하는 비용을 부담할 것인지는 CA가 선택할 수 있습니다. 상품과 관련하여 상기 조건이나 보증이 판매권, 평온 점유 또는 완전한 소유권과 관련되거나, CA가 제공하는 상품이 개인, 국내 또는 가정용 또는 소비를 목적으로 정상적으로 취득된 경우에는 본 조항의 제한 사항이 적용되지 않습니다. -# -# 브라질 +# +# 브라질 # 라이센스허여자에 해당하는 CA 자회사는 CA Programas de Computador, Participaçðes e Serviços Ltda.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 브라질의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 São Paulo City Hall의 법원에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Programas de Computador, Participaçðes e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000(참조: 전세계 법무부서)으로 문의하시기 바랍니다. -# -# 캐나다 +# +# 캐나다 # 라이센스허여자에 해당하는 CA 자회사는 CA Canada Company입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 온타리오 주의 법률이 본 계약을 규율합니다. -# -# 칠레 +# +# 칠레 # 라이센스허여자에 해당하는 CA 자회사는 CA de Chile, S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 칠레의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Santiago에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Chile, S.A, Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago(참조: 재무부서)로 문의하시기 바랍니다. -# -# 중국 -# 라이센스허여자에 해당하는 CA 자회사는 CA (China) Co., Ltd.입니다. -# +# +# 중국 +# 라이센스허여자에 해당하는 CA 자회사는 CA (China) Co., Ltd.입니다. +# # 제6조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. -# 모든 수수료는 부가가치세가 포함된 금액입니다. -# +# 모든 수수료는 부가가치세가 포함된 금액입니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고 중화인민공화국의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 베이징에 소재한 관할법원에서 해결해야 합니다. -# +# # 콜롬비아 # 라이센스허여자에 해당하는 CA 자회사는 CA Software de Colombia S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 콜롬비아의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Bogotá에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Software de Colombia S.A, Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia(참조: 재무부서)로 문의하시기 바랍니다. -# +# # 홍콩 # 라이센스허여자에 해당하는 CA 자회사는 CA (Hong Kong) Limited이며, 이 회사의 본사 주소는 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 홍콩의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 홍콩 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제10조의 마지막에 다음 내용이 추가됩니다. 상기 책임 제한 및 최대 채무액은 물품매매 법령, 서비스 제공(묵시조항) 법령 또는 면세 관리 조항 관련 법령에 따른 라이센시의 법정 권리에 영향을 미치지 않으며, 전적으로 CA측 과실로 인해 야기된 사망이나 신체 상해에 대해 부담해야 하는 채무를 제한하거나 배제하지도 않습니다. -# +# # 인도 # 라이센스허여자에 해당하는 CA 자회사는 CA (India) Technologies Private Limited.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약 및 본 계약의 조건은 인도의 법률에 따라 규율 및 해석되어야 하며, 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 뭄바이 법원이 단독으로 전적인 관할권을 갖습니다. 전자적 방식으로 제품이 공급될 경우, CA는 앞서 언급한 본건 제품이 인도 이외의 국가에 위치한 서버에서 다운로드될 수 있도록 제공하여야 합니다. -# +# # 인도네시아(싱가포르를 참조할 것) -# +# # 일본 # 라이센스허여자에 해당하는 CA 자회사는 CA Japan, Ltd.입니다. -# +# # 제6조의 세 번째 문장은 삭제되고 다음으로 대체됩니다. -# 라이센시는 CA로부터 청구서를 수령하는 경우, 모든 정부 기관이 부과 또는 징수한 관세나 세금(CA가 납부해야 하는 세금은 예외)을 납부하기도 동의합니다. -# +# 라이센시는 CA로부터 청구서를 수령하는 경우, 모든 정부 기관이 부과 또는 징수한 관세나 세금(CA가 납부해야 하는 세금은 예외)을 납부하기도 동의합니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고, 일본의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 일본 도쿄에 소재한 도쿄지방법원에서 최종 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Japan, Ltd., 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan(참조: 전세계 법무부서)으로 문의하시기 바랍니다. -# +# # 대한민국 # 라이센스허여자에 해당하는 CA 자회사는 CA Korea Inc., Ltd.입니다. -# -# 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. +# +# 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고, 대한민국의 법률에 따라 규율 및 해석되어야 합니다. -# -# 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. +# +# 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 대한민국 서울특별시 강남구 삼성동 159-9, 도심공항타워 22층(우편번호: 135-973), 한국 CA Inc.(주)(참조: 전세계 법무부서)로 문의해야 합니다. -# +# # 말레이시아 # 라이센스허여자에 해당하는 CA 자회사는 CA (Malaysia) Sdn. Bhd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 말레이시아의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 말레이시아 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제10조에 다음 내용이 추가됩니다. # CA가 어떠한 여타 보증도 제공하지 않는다고 명시하고 있으나, 라이센시는 1999년 소비자보호법에 따라 특정 권리를 가지며, 해당 법률에서 허용하는 범위 내에서만 보증이 제한됩니다. -# -# 멕시코 +# +# 멕시코 # 라이센스허여자에 해당하는 CA 자회사는 CA Software de México S.A. de C.V.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 멕시코의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales de la Cuidad de México에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Software de México S.A. de C.V, Av. Miguel de Cervantes Saavedra 193, Suite 502, Col. Granada, Mexico City, MX 11500(참조: 재무부서)으로 문의하시기 바랍니다. -# +# # 뉴질랜드: # 라이센스허여자에 해당하는 CA 자회사는 CA Pacific (NZ) Ltd.입니다. -# +# # 제6조의 마지막 문장에도 불구하고, 라이센시가 지급하지 않은 청구서 금액에 대해 발생하는 이자율은 월 1.5%입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. -# 본 계약은 뉴질랜드의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생되는 분쟁과 관련하여 뉴질랜드 법원이 단독으로 전적인 관할권을 갖습니다. -# +# 본 계약은 뉴질랜드의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생되는 분쟁과 관련하여 뉴질랜드 법원이 단독으로 전적인 관할권을 갖습니다. +# # 제10조에 다음 내용이 추가됩니다. # CA는 보증이 없다고 명시하고 있으나, 라이센시는 1993년 소비자보장법 또는 여타 법률에 따라 특정 권리(배제 또는 제한될 수 없음)를 보유할 수 있습니다. 1993년 소비자보장법은 라이센시가 동 법에 정의된 바와 같이 사업 목적으로 물품 및 서비스를 취득하는 경우, CA가 제공하는 물품이나 서비스에 관련하여서는 적용되지 않습니다. 본건 제품을 1993년 소비자보장법에 정의된 바와 같이 사업 목적 상 취득한 경우가 아니면, 본 조에 명시된 제한사항은 동 법에 명시된 제한사항의 적용을 받습니다. -# +# # 제12조에 다음 내용이 추가됩니다. # 본 조항에 따른 CA의 권리는 라이센시의 청산 또는 해산을 목적으로 한 결의가 통과되거나 소송절차가 개시되는 경우에도 적용됩니다. -# +# # 페루 # 라이센스허여자에 해당하는 CA 자회사는 CA de Peru S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 페루의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de La Cuidad de Lima가 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Peru S.A, Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru(참조: 재무부서)로 문의하시기 바랍니다. -# +# # 필리핀 # 라이센스허여자에 해당하는 CA 자회사는 Philippine Computer Associates International Inc.입니다. -# +# # 제8조의 처음 8개 문장들은 삭제되고 다음으로 대체됩니다. # 본 제품 및 본 제품의 변경본에 대한 소유권은 CA에게 귀속됩니다. 본건 제품은 CA 또는 CA 라이센스허여자의 영업비밀이며 독점적 재산입니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 라이센시 및 그 직원들은 본건 제품 및 본 계약의 조건을 철저하게 기밀로 유지해야 합니다. 준거법에서 허용하는 최대 범위까지, 라이센스도입자는 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 달리 리버스 엔지니어링할 수 없습니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. -# 본 계약은 필리핀의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 마카티시티 법원이 단독으로 전적인 관할권을 갖습니다. -# +# 본 계약은 필리핀의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 마카티시티 법원이 단독으로 전적인 관할권을 갖습니다. +# # 제12조는 삭제되고 다음으로 대체됩니다. # 라이센시가 본 계약의 특정 조건을 위반하거나, 파산하거나, 파산 또는 재산관리 절차를 개시하거나, 동 절차가 라이센시를 상대로 제기되는 경우, CA는 통지를 수령하는 즉시, 본 계약에 따른 자신의 의무 이행을 보류 및/또는 본 계약을 해지할 수 있는 권리가 있으며, CA가 보유하는 여타 모든 권리에 추가하여, 본 계약에 따라 지급되어야 하는 모든 금액은 CA에게 즉시 지급되어야 합니다. -# -# 싱가포르 +# +# 싱가포르 # 라이센스허여자에 해당하는 CA 자회사는 CA (Singapore) Pte. Ltd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 싱가포르의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 싱가포르 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제9조의 마지막에 다음 내용이 추가됩니다. -# 준거법에서 허용되는 최대 범위까지, CA는 품질의 만족성 또는 특정 목적에의 적합성에 관한 모든 암묵적인 조건이나 보증을 부인합니다. -# +# 준거법에서 허용되는 최대 범위까지, CA는 품질의 만족성 또는 특정 목적에의 적합성에 관한 모든 암묵적인 조건이나 보증을 부인합니다. +# # 대만 # 라이센스허여자에 해당하는 CA 자회사는 CA (Taiwan) Ltd.이며, 이 회사의 등록사무소 주소는 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan입니다. -# +# # 제6조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. -# 모든 수수료는 부가가치세가 제외된 금액입니다. -# +# 모든 수수료는 부가가치세가 제외된 금액입니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 관할 법률 선택에 관한 조항에도 불구하고 대만의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 타이페이지방법원에서 해결해야 합니다. -# +# # 태국 # 라이센스허여자에 해당하는 CA 자회사는 CA (Thailand) Co., Ltd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 태국의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 태국 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 베네수엘라 # 라이센스허여자에 해당하는 CA 자회사는 Computer Associates (CA) de Venezuela, CA입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 베네수엘라의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Caracas에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 Computer Associates (CAI) de Venezuela, CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela(참조: 재무부서)로 문의하시기 바랍니다. -# -# 16. 본건 제품에 제3자 소프트웨어가 포함되어 있고, 라이센스허여자가 동 소프트웨어에 대한 특정 라이센스 조건을 본 계약에 통합하기를 요구하는 경우, 그러한 조건은 (본 계약에 의해 참조용으로 통합되며) 본 계약의 하기에 기재됩니다. -# +# +# 16. 본건 제품에 제3자 소프트웨어가 포함되어 있고, 라이센스허여자가 동 소프트웨어에 대한 특정 라이센스 조건을 본 계약에 통합하기를 요구하는 경우, 그러한 조건은 (본 계약에 의해 참조용으로 통합되며) 본 계약의 하기에 기재됩니다. +# # 라이센스도입자는 본 라이센스를 읽고 이해하였으며 [라이센스계약의 조건에 동의함]이라는 라디오 버튼을 선택하는 경우 상기 라이센스 조건을 수락하는 것임을 인정합니다. 또한, 라이센스도입자는 본 라이센스(본 계약, 및 하기에 명시된 제3자 소프트웨어 관련 조건이 명시된 주문양식 포함)가 본 주제와 관련하여 양 당사자 간의 완전한 합의를 구성한다는 점, 본 라이센스가 본 계약의 주제와 관련하여 라이센스도입자가 수령한 바 있는 모든 정보를 대체한다는 점(단, 하기 제3자 관련 조건을 제외하고 본 계약이 라이센스도입자 및 CA가 체결한 서면 계약(라이센스도입자가 제품 사용 라이센스를 허여받는 내용)에 의해 대체되는 경우는 예외로 함)에 동의합니다. 본 계약은 양 당사자의 수권 대표가 서명한 서면 계약에 의해서만 변경될 수 있습니다. -# +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# Last updated 2016-01-12 -# +# +# +# Last updated 2016-05-25 +# # 위에 기술된 이 계약의 조건에 동의하고 설치 과정을 진행하려면 아래에 "accept"를 입력하십시오. -# -# 설치 과정을 중단하려면 아래에 "reject"를 입력하십시오. -# -# CA-EULA에 대한 올바른 값은 다음과 같습니다: {accept, reject}. +# +# 설치 과정을 중단하려면 아래에 "reject"를 입력하십시오. +# +# CA-EULA에 대한 올바른 값은 다음과 같습니다: {accept, reject}. CA-EULA=accept diff --git a/enterprise-manager/eula-introscope/ca-eula.txt b/enterprise-manager/eula-introscope/ca-eula.txt index ad5d5fe..9bfb4a9 100644 --- a/enterprise-manager/eula-introscope/ca-eula.txt +++ b/enterprise-manager/eula-introscope/ca-eula.txt @@ -3,348 +3,341 @@ # CA End User License Agreement File # ############################################################################## -# +# # CA End User License Agreement (the "Agreement") for the CA software product that is being installed as well as the associated documentation and any SDK, as defined below, included within the product ("the Product"). -# +# # Carefully read the following terms and conditions regarding your use of the Product before installing and using the Product. Throughout this Agreement, you will be referred to as "You" or "Licensee." -# +# # By typing "accept" below, you are -# +# # (I) Representing that you are not a minor, and have full legal capacity and have the authority to bind yourself and your employer, as applicable, to the terms of this Agreement; # (II) Consenting on behalf of yourself and/or as an authorized representative of your employer, as applicable, to be bound by this Agreement. -# +# # By typing "reject" below, the installation process will cease. -# +# # 1. CA, Inc. (or the CA entity respectively identified after Section 15 below for the country / countries in which the Product is being supplied), ("CA") provides Licensee with one (1) copy of the Product, for use in accordance with such (a) quantity and (b) CA published criteria for measuring the usage of the Product (such as, but not limited to, MIPS, CPUs, tiers, servers, or users), designated as the authorized use limitation ("Authorized Use Limitation") on any Order Form (defined below) or CD sleeve included within the Product box. CA licenses the Product to Licensee on a limited, non-exclusive, non-transferable basis only for internal business use during the Term and other terms and conditions of (a) any CA Order Form or Registration Form which has been signed or otherwise contracted between Licensee and a CA affiliate; or (b) a License Program Certificate which is provided by CA to Licensee, as applicable, referencing and incorporating the terms of this Agreement (each hereafter referred to as the "Order Form"). -# +# # 2. If the Product is an alpha or beta version of the program, hereinafter referred to as the "beta program" or "beta version" and not generally available to date, CA does not guarantee that the generally available release will be identical to the beta program or that the generally available release will not require reinstallation. Licensee agrees that if it registers for support or if otherwise required by CA, Licensee shall provide CA with specific information concerning Licensee's experiences with the operation of the Product. Licensee agrees and acknowledges that the beta version of the Product (a) is to be used only for testing purposes and not to perform any production activities unless CA shall have otherwise approved in writing and (b) has not been tested or debugged and is experimental and that the documentation may be in draft form and will, in many cases, be incomplete. Licensee agrees that CA makes no representations regarding the completeness, accuracy or Licensee's use or operation of the beta version of the Product. BETA PRODUCTS ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR REPRESENTATIONS OF TITLE OR NON-INFRINGEMENT. If Licensee is also a tester of the beta version of the Product (as defined by the beta testing or pre-release testing agreement ("Beta Testing Agreement") that was agreed to by Licensee during the registration process before obtaining the beta version of the Product), Licensee agrees that the terms of this Agreement are in addition to, and do not supersede, the terms of the Beta Testing Agreement. -# +# # 3. If the Product is being licensed on a trial or evaluation basis, Licensee agrees to use the Product solely for evaluation purposes, in accordance with the usage restrictions set forth in Section 1, for a thirty-day evaluation period unless a different period is otherwise noted (the "Trial Period"). At the end of the Trial Period, Licensee's right to use the Product automatically expires and Licensee agrees to de-install the Product and return to CA all copies or partial copies of the Product or certify to CA in writing that all copies or partial copies of the Product have been deleted from Licensee's computer libraries and/or storage devices and destroyed. If Licensee desires to continue its use of the Product beyond the Trial Period, Licensee may contact CA or a CA affiliate to acquire a license to the Product for the applicable fee. LICENSEE'S USE OF THE PRODUCT DURING THE TRIAL PERIOD IS ON AN "AS IS" BASIS WITHOUT ANY WARRANTY, AND CA DISCLAIMS ALL WARRANTIES INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AS WELL AS ANY EXPRESS WARRANTIES PROVIDED ELSEWHERE IN THIS AGREEMENT. -# +# # 4. If the Product includes a Software Development Kit ("SDK"), the terms and conditions of this paragraph apply solely for the use of the SDK. The SDK may include software, APIs and associated documentation. The SDK is provided solely for Licensee's internal use to develop software that enables the integration of third party software or hardware with the Product, or to develop software that functions with the Product, such as an agent. Licensee's use of the SDK is restricted solely to enhance Licensee's internal use of the Product. No distribution rights of any kind are granted to Licensee regarding the Product. In addition to the limitations on use set forth in Section 8, below, Licensee may not reproduce, disclose, market, or distribute the SDK or the documentation or any applications containing any executable versions of the SDK to third parties, on the internet, or use such executables in excess of the applicable Authorized Use Limitation. If there is a conflict between the terms of this section and the terms of any other section in this Agreement, the terms of this section will prevail solely with respect to the use of the SDK. -# +# # TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, AND NOTWITHSTANDING ANYTHING CONTAINED HEREIN TO THE CONTRARY, THE SDK IS PROVIDED AND LICENSED "AS IS" WITHOUT WARRANTY OF ANY KIND. -# +# # 5. Payment of the fees specified on the Order Form or as agreed between Licensee and an authorized reseller of CA or any of the CA affiliates, shall entitle Licensee to use the Product for the term specified on the Order Form (the "Term"), which use may include the right to receive maintenance services therefore for the period set forth on the Order Form. All fees payable hereunder shall be payable as stated in the Order Form, or if not stated, shall be payable net thirty (30) days from the CA invoice date. Licensee will install each new release of the Product delivered to Licensee. After the initial Term, continued usage and/or maintenance of the Product as provided herein shall be subject to the payment by Licensee of the fees described on the Order Form. If You are acquiring licenses of the Product from an authorized CA reseller, the terms of this Agreement governing payments, pricing and discounts shall not apply as such terms are between You and your chosen CA reseller. Any terms that may appear on a Licensee purchase order (including without limitation pre-printed terms), or as part of Licensee's order with an authorized CA reseller, that conflict or vary from the terms and conditions of this Agreement shall not apply to the Product and shall be deemed null and void. Notwithstanding the foregoing, with respect to any Product that relies on continuous content updates, such as signature files and security updates, Licensee shall be entitled to such content updates for a period of one (1) year from the effective date of the license. -# +# # 6. If maintenance is provided by CA or a CA affiliate, it shall be renewed annually as specified in the Order form. All fees are net of applicable taxes. Licensee agrees to pay any tariffs, duties or taxes imposed or levied by any government or governmental agency including, without limitation, federal, state and local, sales, use, value added and personal property taxes, (other than franchise and income taxes for which CA is responsible) upon a presentation of invoices by CA or a CA affiliate, as applicable. Any claimed exemption from such tariffs, duties or taxes must be supported by proper documentary evidence delivered to CA. Any invoice which is unpaid by Licensee when due shall be subject to an interest charge equal to the lower of 1.5% per month or the highest applicable legal rate. -# +# # 7. Licensee may install and deploy the Product in the territory specified in the Order Form up to the Authorized Use Limitation. Licensee may permit its Authorized End Users access to the Product for Licensee's and its Affiliates' internal business wherever located, provided that Licensee hereby expressly agrees that a breach by an Authorized End User shall be considered to be a breach by and the responsibility of Licensee. Licensee may relocate the Product to a new Licensee location within the territory specified in the Order Form upon prior written notice. For purposes hereof, "Authorized End Users" means Licensee, its Affiliates and their employees and independent contractors (but excluding any outsourcer, facilities management providers, managed service provider, or application service provider) that are bound by terms and conditions no less restrictive than those contained herein and are acting on behalf of Licensee and not a third party; "Affiliate" with respect to Licensee means any legal entity in which the Licensee directly or indirectly Controls; and "Control" means ownership or control of greater than 50% of an entity's shares or control of the board of such entity by force of law or contract, or the equivalent. If Licensee desires to use the Product beyond such restrictions, it shall notify CA or the CA affiliate the Licensee has procured the Product from, and Licensee will be invoiced for and shall pay the applicable fees for such expanded use. -# +# # 8. The Product, including any source or object code that may be provided to Licensee hereunder, as well as documentation, appearance, structure and organization, is the proprietary property of CA and/or its licensors, if any, and may be protected by copyright, patent, trademark, trade secret and/or other laws. Title to the Product, or any copy, modification, translation, partial copy, compilation, derivative work or merged portion of any applicable SDK, shall at all times remain with CA and/or its licensors. Licensee agrees that CA may use any feedback provided by Licensee related to the Product for any CA business purpose, without requiring consent including reproduction and preparation of derivative works based upon such feedback, as well as distribution of such derivative works. Usage rights respecting the Product may not be exchanged for any other CA product. The Product is licensed as a single product. Its component parts may not be separated for use. Licensee and its Authorized End Users will keep the Product and the terms of this license strictly confidential and use its best efforts to prevent and protect the Product from unauthorized disclosure or use. Licensee may not (i) disclose, de-compile, disassemble nor otherwise reverse engineer the Product except to the extent the foregoing restriction is expressly prohibited under applicable law; (ii) create any derivative works based on the Product; (iii) use the Product to provide facilities management, outsourcing, service bureau, hosted services, cloud services, on demand services or like activity whereby Licensee, without a CA license authorizing such purpose, operates or uses the Product for the benefit of a third party; or (iv) permit the use of the Product by any third party, except as authorized by CA in writing. Licensee shall not release the results of any benchmark testing of the Product to any third party without the prior written consent of CA. Licensee will not transfer, assign, rent, lease, use, copy or modify the Product, in whole or in part, or permit others to do any of the foregoing with regard to the Product without CA's prior written consent, except to the extent the foregoing restriction is expressly prohibited under applicable law. Licensee will not remove any proprietary markings of CA or its licensors. Licensee may make a reasonable number of copies of the Product for disaster recovery "cold standby", backup and archival purposes; provided that use of such copies is limited to testing Licensee's disaster recovery procedures and effectiveness and as is necessary during any reasonable period subsequent to the occurrence of an actual disaster during which Licensee cannot operate the Product. If this license terminates for any reason, Licensee shall certify to CA in writing that all copies and partial copies of the Product have been deleted from all computers and storage devices and are returned to CA or destroyed and are no longer in use. Licensee acknowledges that the Product is subject to control under European and U.S. law, including the Export Administration Regulations (15 CFR 730-774) and agrees to comply with all applicable import and export laws and regulations. Licensee agrees that the Product will not be exported, reexported or transferred in violation of U.S. law or used for any purpose connected with chemical, biological or nuclear weapons or missile applications, nor be transferred or resold, if Licensee has knowledge or reason to know that the Product is intended or likely to be used for such purpose. The Product and any accompanying documentation have been developed entirely at private expense and are "commercial item(s)" and "commercial computer software" as those terms are defined in Federal Acquisition Regulation Subpart 2.101 "Definitions." The Product is exempt from disclosure under the Freedom of Information Act (FOIA), 5 U.S.C. §552(b) under one or more exemptions to that Act (or a similar U.S. state statute, as applicable). Any Product previously delivered to You may not be delivered again. Any Product not previously delivered to Licensee will be delivered to Licensee or its chosen reseller following receipt by CA of an acceptable order. The Product shall be delivered either by electronic delivery ("ESD") or, if CA or a CA affiliate respectively requires delivery in tangible media, CPT, as defined in INCOTERMS 2010, from CA's or such CA affiliate's shipping point. CA or the CA affiliate from which Licensee is procuring the Product agrees to be responsible for all customs duties and clearances and title to any CA hardware if included will pass upon point of delivery to carrier at CA's or such CA affiliate's shipping location. In the event of electronic delivery, no tangible personal property will be delivered. Such electronic delivery may not automatically provide for an exemption from applicable sales or use tax. Any operating system identified as "Generic" or "GA" denotes such operating systems for which the Product is made generally available by CA in accordance with CA current published specifications.. Acceptance is waived and deemed to have occurred at the earliest of point of physical shipment or delivery of keys/access codes for electronic delivery. CA Inc. is the manufacturer of the Product.CA reserves the right, on notice to You, to conduct an audit remotely or onsite of Licensee and/or Your Affiliates facilities to verify compliance by Licensee and its Authorized End Users with the terms of this Agreement. CA agrees that such audit shall be conducted during regular business hours at Your offices and CA shall endeavor to conduct such audit so as not to interfere unreasonably with Your activities and/or use an independent third party to conduct the audit subject to terms of non-disclosure if required. This Agreement shall be governed by and interpreted in accordance with the laws of the State of New York, without regard to its choice of law provisions, and any action arising under or relating to the Agreement shall lie within the exclusive jurisdiction of the State and Federal Courts located in Suffolk County, New York. -# +# # 9. CA warrants that it can enter into this Agreement and that it will indemnify Licensee, or, at its option, settle any third party claim that CA is not so authorized or that Licensee's use of the Product as authorized hereby infringes any United States patent or copyright within the jurisdictions where Licensee is authorized to use the Product at the time of delivery. CA also warrants that its distributed Product will operate materially in accordance with its published specifications set forth within the documentation for a period of ninety (90) days after delivery of the Product to Licensee, provided that CA's only responsibility will be to use reasonable efforts, consistent with industry standards, to cure any defect. If, within a reasonable time after receiving Licensee's written notice of breach of either of the above warranties, CA is unable to cause the Product to operate (a) without infringing a third party's intellectual property rights, or (b) materially in accordance with CA's written specifications, then CA may terminate the license and provide or arrange for a pro-rata refund to Licensee or its authorized CA reseller of the license fees and or the support and maintenance fees paid. In the event of such termination, the pro-rata refund shall be calculated on (i) the number of months left remaining on the Term of the applicable Order Form or (ii) if the Product is licensed under a perpetual license, using (only for purposes of a refund calculation) an amortization schedule of three (3) years. The warranties set forth in this Section do not apply to beta, trial, evaluation or demonstration versions of the Product, or to Software Development Kits. CA shall have no liability to indemnify or to remedy a warranty claim: (i) in the event the allegation of infringement or warranty claim is a result of a modification of the Product except a modification by CA, (ii) if the Product is not being used in accordance with CA's specifications, related documentation and guidelines, (iii) if the alleged infringement or warranty claim would be avoided or otherwise eliminated by the use of a CA published update or patch, (iv) if the alleged infringement or warranty claim is a result of use of the Product in combination with any third party product, or (v) if the applicable fees due for the Product have not been paid or Licensee is otherwise in breach of this Agreement. The indemnifications contained herein shall not apply and CA shall have no liability in relation to any Product produced by CA at the specific direction of Licensee. THE FOREGOING PROVISIONS STATE THE ENTIRE LIABILITY AND OBLIGATIONS OF CA REGARDING CLAIMS OF INFRINGEMENT, AND THE EXCLUSIVE REMEDY AVAILABLE TO LICENSEE WITH RESPECT TO ANY ACTUAL OR ALLEGED INFRINGEMENT OR MISAPPROPRIATION OF ANY INTELLECTUAL PROPERTY OR OTHER PROPRIETARY RIGHTS. -# +# # 10. EXCEPT AS SET FORTH ABOVE, TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW: -# +# # (I) NO OTHER WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE MADE BY CA; # (II) IN NO EVENT WILL CA BE LIABLE TO LICENSEE OR ANY OTHER PARTY FOR ANY CLAIM FOR LOSS, INCLUDING TIME, MONEY, GOODWILL, AND CONSEQUENTIAL OR INDIRECT DAMAGES, WHICH MAY ARISE FROM THE USE, OPERATION OR MODIFICATION OF THE PRODUCT, EVEN IF CA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN THE EVENT THAT THE ABOVE LIABILITY LIMITATION IS FOUND TO BE INVALID UNDER APPLICABLE LAW, THEN CA'S LIABILITY FOR SUCH CLAIM SHALL BE LIMITED TO THE AMOUNT OF THE LICENSE FEE ACTUALLY PAID FOR THE PRODUCT BY LICENSEE. NO THIRD PARTY, INCLUDING AGENTS, DISTRIBUTORS, OR AUTHORIZED CA RESELLERS IS AUTHORIZED TO MODIFY ANY OF THE ABOVE WARRANTIES OR MAKE ANY ADDITIONAL WARRANTIES ON BEHALF OF CA. CA DOES NOT WARRANT THAT THE PRODUCT WILL MEET LICENSEE'S REQUIREMENTS OR THAT USE OF THE PRODUCT WILL BE UNINTERRUPTED OR ERROR FREE. -# +# # 11. Licensee may assign this Agreement only if Licensee complies with CA's then prevailing policies respecting assignment of licenses, which includes a requirement that the scope of use of the Product not be expanded beyond the business of Licensee and the business of Licensee's majority-owned subsidiaries. -# +# # 12. If Licensee breaches any term of this Agreement or if Licensee becomes insolvent or if bankruptcy or receivership proceedings are initiated by or against Licensee, CA shall have the right to withhold its own performance hereunder and/or to terminate this Agreement immediately and, in addition to all other rights of CA, all amounts due or to become due hereunder, if any, will immediately be due and payable to CA or the CA affiliate the Licensee was procuring the Product from. -# +# # 13. If Licensee fails to pay the applicable maintenance fee, then Licensee may reinstate maintenance thereafter by paying to CA or the respective CA affiliate a fee equal to 150% of CA's then prevailing maintenance fee for each year for which the maintenance fee has not been paid. -# +# # 14. If a court holds that any provision of this Agreement to be illegal, invalid or unenforceable, the remaining provisions shall remain in full force and effect. No waiver of any breach of this Agreement shall be a waiver of any other breach, and no waiver shall be effective unless made in writing and signed by an authorized representative of the waiving party. Any questions concerning this Agreement should be referred to CA, Inc., One CA Plaza, Islandia, NY 11749, Attention: Worldwide Law Department. -# +# # 15. In the event Licensee acquires a license for the Product outside of the United States, the following Sections will apply to the use of the Product: -# +# # Notwithstanding the terms of the last sentence of Section 8, the laws of the country in which Licensee acquires a license for the Product shall govern this Agreement, except as otherwise provided below: -# +# # Europe, Middle East and Africa -# +# # 1. In EMEA the CA entity that is the licensor is CA Europe Sàrl ("CA Europe"). CA Europe Sàrl is the licensor for Products which have been made available to Licensee by way of license from CA Europe Sàrl through a local CA subsidiary in EMEA or through an authorized CA reseller. The CA support and maintenance, if any, is being provided by a local CA subsidiary or by an authorized CA reseller. -# +# # 2. EMEA means Europe, Middle East and Africa. -# +# # 3. Section 9, third sentence and fifth sentence shall only apply to third party rights infringement. Section 9, second sentence is deleted and replaced with: # "CA Europe also warrants that the Product will operate materially in accordance with the applicable specifications set forth within the documentation of the Product subject always to Licensee's compliance with the terms of this Agreement. If CA Europe has breached this warranty Licensee's remedy is for CA Europe, in consultation with Licensee, to either (i) use reasonable efforts consistent with industry standards to cure the defect, or (ii) replace the Product with one that materially complies with the documentation. If the defect cannot be cured within a reasonable period of time or if the rectification of the defect or replacement has finally failed, Licensee shall have (i) in case of a subscription license the right to reasonably reduce the fees agreed and/or terminate immediately for cause, if the legal or statutory requirements are met; (ii) in case of a perpetual license, at its option, the right (1) to rescind or reduce the fees agreed in the applicable transaction document and (2) claim damages or to claim reimbursement of futile expenditures. The right to claim damages or futile expenditures shall be subject to the limitations of liability set forth below in section 10. In case of a perpetual license the warranty claims stated herein shall become time-barred within ninety (90) days after delivery of the Product. Warranty remedies are conditioned upon (i) any error or defect complained of is reasonably reproducible by CA Europe, (ii) the Product is not modified and is being used in accordance with the documentation, and (iii) the breach is not attributable in whole or in part to any non-CA product(s) or service(s). The above warranties are the sole warranties provided by CA Europe. No other warranties, including that the Product is error free, whether express or implied, including, without limitation, the implied warranties of satisfactory quality, non-infringement, or suitability and/or the warranty of fitness for a particular purpose are made by CA Europe or its suppliers. If Licensee claims under this warranty section, Licensee is not entitled or eligible to seek the same warranty remedies from any other CA affiliate." -# +# # 4. Section 10 is deleted and replaced with: -# +# # "10.1 CA Europe's liability shall, regardless of the reason for the liability, be unlimited in cases of death or bodily injury or injury of health and damages caused by gross negligence or willful default of CA Europe or the grossly negligent or willful default of CA Europe's legal representatives or persons whom CA Europe occupies with the performance of its contractual obligations and in cases of liability under the Product Liability Act ("Produktehaftpflichtgesetz"). # 10.2 In case of slight negligence CA Europe shall, regardless of the reason for the liability, only be liable, if CA Europe violates an obligation, which is essential for the execution of the Agreement and in the fulfillment of which the other party regularly trusts. In this case, CA Europe's liability to Licensee will be limited to damages which have been foreseeable and which can typically arise in connection with this Agreement. # 10.3 Further to the above CA Europe's liability to the Licensee for indirect, special and consequential damages (including, without limitation, loss of profits, loss of business, loss of opportunity or loss of goodwill) shall be limited to damages which have been foreseeable and which can typically arise in connection with this Agreement. # 10.4 It is the parties' understanding that the foreseeable damages that can typically arise in connection with the licenses granted in this Agreement in the meaning of sections 10.2 and 10.3 above shall be limited to a maximum of the fees paid or owed for the then current initial or renewal Term for which the Licensee has procured the Product. # 10.5 The liability for loss of data shall be limited to the typical recovery efforts in the case of regular and adequate data back-up. # 10.6 The remedies provided in this Agreement are the exclusive remedies of the parties." -# +# # 5. The following sections are added to this Agreement: -# +# # "Force Majeure. Except for payment obligations and obligations pertaining to non-disclosure, notwithstanding any contrary provision in this Agreement, neither Party will be liable for any action taken, or any failure to take any action required to be taken, in the event and to the extent that the taking of such action or such failure arises out of causes beyond a party's control, including, without limitation, war, civil commotion, act of God, strike or other stoppage (whether partial or total) of labor, any law, decree, regulation or order of any government or governmental body (including any court or tribunal)." -# +# # "Licensee Data. If Licensee transfers any personal data to CA Europe as a requirement pursuant to any Product, then Licensee represents that (i) it is duly authorized to provide personal data to CA Europe and it does so lawfully in compliance with relevant legislation, (ii) CA Europe and any entity within the CA group of companies (each a "CA entity") or its subcontractors can process such data for the purposes of performing its obligations and (iii) CA Europe may disclose such data to any CA entity and its subcontractors for this purpose and may transfer such data to countries outside of the country of origin. CA, Inc. is Safe Harbour certified and the CA entities have committed to comply with relevant data protection/privacy legislation." -# +# # 6. The laws of Switzerland (excluding its conflict of laws provisions) shall govern the construction and enforceability of this Agreement. The parties agree that any action arising under or relating to this Agreement shall lie within the exclusive jurisdiction of the Swiss courts located in Zürich. The United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement. -# +# # 7. Any questions concerning this Agreement for EMEA should be referred to CA Europe Sàrl located at Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland, Attention: Worldwide Law Department. -# +# # Argentina # The CA subsidiary that is the licensor is CA Argentina S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Argentina. Any dispute hereunder shall be determined by the Tribunales de la Cuidad de Buenos Aires. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Argentina S.A, Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires – At.: Finance Department. -# +# # Australia # The CA subsidiary that is the licensor is CA (Pacific) Pty. Ltd (ABN 20 001 146 345). -# +# # The following is added to each of the end of Sections 2, 3 and 10: # Although CA specifies that there are no warranties, Licensee may have certain rights under the Competition and Consumer Act 2010 and other state and territory legislation which may not be excluded but may be limited. To the full extent permitted by law CA excludes all terms not expressly set out in the express terms of this Agreement, and limits any terms imposed by the Competition and Consumer Act 2010 and other state and territory legislation to the full extent permitted by the applicable legislation. -# +# # The last sentence of Section 8 is deleted and replaced with: # The laws of the State or Territory in which the transaction is performed govern this Agreement. -# +# # The following is added to Section 10: # Where CA is in breach of a condition or warranty implied by the Competition and Consumer Act 2010 or other state and territory legislation, CA's liability is limited, in the case of goods, to the repair or replacement of the goods, or payment for the repair or replacement of the goods, and in the case of services, the supplying of the services again or payment for the re-supply of the services, as CA may elect. Where that condition or warranty relates to a right to sell, quiet possession or clear title, in respect of goods or if the goods supplied by CA are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this Section apply. -# +# # Brazil # The CA subsidiary that is the licensor is CA Programas de Computador, Participações e Serviços Ltda. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Brazil. Any dispute hereunder shall be determined by a court of the São Paulo City Hall. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Programas de Computador, Participações e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000, At.: Worldwide Law Department. -# +# # Canada # The CA subsidiary that is the licensor is CA Canada Company. -# +# # The last sentence of Section 8 is deleted and replaced with: # The laws in the Province of Ontario shall govern this Agreement. -# +# # Chile # The CA subsidiary that is the licensor is CA de Chile, S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Chile. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Santiago. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Chile, S.A, Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago – At.: Finance Department. -# +# # China # The CA subsidiary that is the licensor is CA (China) Co., Ltd. -# +# # The second sentence of Section 6 is deleted and replaced with: # All fees are inclusive of VAT. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the People's Republic of China, without regard to its choice of law provisions. Any dispute hereunder shall be determined by a competent court located in Beijing. -# +# # Colombia # The CA subsidiary that is the licensor is CA Software de Colombia S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Colombia. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Bogotá. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Software de Colombia S.A, Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia – At.: Finance Department. -# +# # Hong Kong # The CA subsidiary that is the licensor is CA (Hong Kong) Limited which is also its principal place of business at Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Hong Kong. The courts of Hong Kong will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added at the end of Section 10: The aforementioned liability limitation and the aforementioned maximum liability amount will not affect or prejudice the statutory rights of the licensee under the sale of goods ordinance, the supply of services (implied terms) ordinance or the control of exemption sections ordinance, nor will they limit or exclude any liability for death or personal injury solely caused by CA's negligence. -# +# # India # The CA subsidiary that is the licensor is CA (India) Technologies Private Limited. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement and the terms hereof shall be governed and construed in accordance with the laws of India and the courts of Mumbai shall have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. In the event the Product is delivered electronically, the said Product shall be made available by CA for downloading from a server situated in a country other than India. -# +# # Indonesia (refer to Singapore) -# +# # Japan # The CA subsidiary that is the licensor is CA Japan, Ltd. -# +# # The third sentence of Section 6 is deleted and replaced with: # Licensee agrees to pay any tariffs, duties or taxes imposed or levied by any government or governmental agency other than the taxes for which CA is responsible upon a presentation of invoices by CA. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the country of Japan, without regard to its choice of law provisions. Any dispute hereunder shall finally be determined by Tokyo District Court located in Tokyo Japan. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Japan, Ltd., 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan, Attention: Worldwide Law Department. -# +# # Korea # The CA subsidiary that is the licensor is CA Korea Inc., Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Republic of Korea, without regard to its choice of law provisions. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Korea Inc., Ltd, City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea, Attention: Worldwide Law Department. -# +# # Malaysia # The CA subsidiary that is the licensor is CA (Malaysia) Sdn. Bhd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Malaysia. The courts of Malaysia will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to Section 10: # Although CA specifies that there are no other warranties, Licensee may have certain rights under the Consumer Protection Act 1999 and the warranties are only limited to the extent permitted by the applicable legislation. -# +# # Mexico # The CA subsidiary that is the licensor is CA Software de México S.A. de C.V. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of México. Any dispute hereunder shall be determined by the Tribunales de la Cuidad de México. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Software de México S.A. de C.V, Av. Miguel de Cervantes Saavedra 193, Suite 502, Col. Granada, Mexico City, MX 11500 – At.: Finance Department. -# +# # New Zealand # The CA subsidiary that is the licensor is CA Pacific (NZ) Ltd. -# +# # Notwithstanding the final sentence of Section 6, the applicable interest charge on invoices unpaid by Licensee is 1.5% per month. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of New Zealand. The courts of New Zealand will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to Section 10: # Although CA specifies that there are no warranties, Licensee may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods or services which CA supplies, if Licensee acquires the goods and services for the purposes of a business as defined in that Act. Where the Product is not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. -# +# # The following is added to Section 12: # CA's rights under this Section shall also apply if any resolution is passed or proceedings are commenced for the liquidation or winding up of Licensee. -# +# # Peru # The CA subsidiary that is the licensor is CA de Peru S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Peru. Any dispute hereunder shall be determined by the Tribunales Ordinarios de La Cuidad de Lima. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Peru S.A, Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru – At.: Finance Department. -# +# # Philippines # The CA subsidiary that is the licensor is Philippine Computer Associates International, Inc. -# +# # The first eight sentences of Section 8 are deleted and replaced with: # Title to the Product and all modifications thereto shall remain with CA. The Product is a trade secret and the proprietary property of CA or its licensors. Licensee agrees that CA may use any feedback provided by Licensee related to the Product for any CA business purpose, without requiring consent including reproduction and preparation of derivative works based upon such feedback, as well as distribution of such derivative works. Usage rights respecting the Product may not be exchanged for any other CA product. Licensee and its employees will keep the Product and the terms of this Agreement strictly confidential. To the maximum extent permitted by applicable law, Licensee will not disclose, de-compile, disassemble nor otherwise reverse engineer the Product. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the Philippines. The courts of Makati City will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # Section 12 is deleted and replaced with: # If Licensee breaches any term of this Agreement or if Licensee becomes insolvent or if bankruptcy or receivership proceedings are initiated by or against Licensee, CA shall have the right to withhold its own performance hereunder and/or to terminate this Agreement immediately upon notice and, in addition to all other rights of CA, all amounts due or to become due hereunder will immediately be due and payable to CA. -# +# # Singapore # The CA subsidiary that is the licensor is CA (Singapore) Pte. Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Singapore. The courts of Singapore will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to the end if Section 9: # To the full extent permitted by applicable law, CA disclaims all implied conditions or warranties of satisfactory quality or fitness for purpose. -# +# # Taiwan # The CA subsidiary that is the licensor is CA (Taiwan) Limited whose registered office is situated at 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan. -# +# # The second sentence of Section 6 is deleted and replaced with: # All fees are exclusive of VAT. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Taiwan, without regard to its choice of law provisions. Any dispute hereunder shall be determined by Taipei District Court. -# +# # Thailand # The CA subsidiary that is the licensor is CA Sales (Thailand) Co., Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Thailand. The courts of Thailand will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # Venezuela # The CA subsidiary that is the licensor is Computer Associates (CAI) de Venezuela, CA. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Venezuela. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Caracas. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to Computer Associates (CAI) de Venezuela, CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela – At.: Finance Department. -# +# # 16. If the Product contains third party software, and the licensor requires the incorporation of specific license terms and conditions for such software into this Agreement, those specific terms and conditions, which are hereby incorporated by this reference, are located below this Agreement. -# -# Licensee acknowledges that this license has been read and understood and by typing "accept" below, licensee accepts its terms and conditions. Licensee also agrees that this license (including any order form referencing this Agreement and any terms relating to third party software which are set forth below this Agreement) constitutes the complete Agreement between the parties regarding this subject matter and that it supersedes any information licensee has received relating to the subject matter of this Agreement, except that this Agreement (excluding the third party terms below) will be superseded by any written Agreement, executed by both licensee and CA, granting licensee a license to use the product. This Agreement may only be amended by a written Agreement signed by authorized representatives of both parties. -# +# +# Licensee acknowledges that this license has been read and understood and by typing "accept" below, licensee accepts its terms and conditions. Licensee also agrees that this license (including any order form referencing this Agreement and any terms relating to third party software which are set forth below this Agreement) constitutes the complete Agreement between the parties regarding this subject matter and that it supersedes any information licensee has received relating to the subject matter of this Agreement, except that this Agreement (excluding the third party terms below) will be superseded by any written Agreement, executed by both licensee and CA, granting licensee a license to use the product. This Agreement may only be amended by a written Agreement signed by authorized representatives of both parties. +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# Last updated 2016-01-12 -# +# +# +# Last updated 2016-05-25 +# # Type "accept" below to accept the terms and conditions of this Agreement as set forth above and proceed with the installation process. -# +# # Type "reject" below to halt the installation process. -# +# # The set of valid values for CA-EULA is: {accept, reject}. CA-EULA=accept diff --git a/enterprise-manager/eula-introscope/ca-eula.zh_CN.txt b/enterprise-manager/eula-introscope/ca-eula.zh_CN.txt index 6d65a8a..4ce98e3 100644 --- a/enterprise-manager/eula-introscope/ca-eula.zh_CN.txt +++ b/enterprise-manager/eula-introscope/ca-eula.zh_CN.txt @@ -3,348 +3,341 @@ # CA 最终用户软件使用许可协议 # ############################################################################## -# +# # 正在安装的 CA 软件产品的 CA 最终用户软件使用许可协议(“协议”)以及下面定义的相关文档和任何 SDK 都包含在本产品(“产品”)中。 -# +# # 在安装和使用本产品之前,请仔细阅读以下与您使用本产品有关的条款。在本协议中,您将被称为“您”或者“被许可人”。 -# -# 在下面输入 "accept",您 -# +# +# 在下面输入 "accept",您 +# # (I) 宣称自己并非未成年人,并且有完全的法定资格和能力使您自己和您的雇主接受本协议的条款 ; # (II) 代表您自己和/或在适当的情况下,作为您雇主的授权代表,同意受本协议的约束。 -# +# # 在下面输入 "reject",安装过程将会停止。 -# +# # 1. CA, Inc.(或在下面第 15 节后针对提供本产品的一个或多个国家/地区分别确定的 CA 实体)(“CA”)为被许可人提供 (1) 本产品的一份副本,供其根据在任何订货单(定义见下文)或本产品盒中所带光盘封套中指定作为授权使用限制的 (a) 数量和 (b) CA 发布用于衡量本产品使用的条件(例如但不限于 MIPS、CPU、层、服务器或用户)进行使用。CA 在有限、非独占、不可转让的基础上,为被许可人授予在许可期限内仅将本产品用于内部业务用途的权利,并且被许可人还须遵守 (a) 在被许可人与 CA 关联机构之间已签订或以其他方式约定的任何 CA 订货单或注册表;或 (b) 引用和加入本协议条款的任何 CA 提供给被许可人的许可程序证书(下面统称为“订货单”)。 -# +# # 2. 如果本产品是程序的一个 alpha 或者 beta 版(下方称为“beta 程序”或者“beta 版本”),且至今尚未普遍供应,则 CA 不保证普遍供应的版本会与 beta 程序完全相同,也不保证普遍供应的版本不需要重新安装。如果被许可人注册支持服务或经 CA 要求,则被许可人同意向 CA 提供有关被许可人使用本产品的具体信息。被许可人同意并且承诺产品的 beta 版本 (a) 仅用于测试目的,并且未经 CA 事先书面许可不得进行任何生产行为;(b) 尚未经过测试或调试,是试验性的,并且文件可能是草稿版本,在很多情况下是不完整的。被许可人同意 CA 对于 beta 版本的完整性、准确性或者被许可人对 beta 版本产品的使用或者操作不做任何保证。Beta 产品基于“现状”提供,并不包括任何明示的或者默示的保证或者陈述,包括但不限于对所有权或者非侵权的保证或者陈述。如果被许可人同时也是本产品 beta 版本的测试人 [根据被许可人在收到产品 beta 版本之前的注册过程中已经接受的 Beta 测试协议或预发行测试协议(“Beta 测试协议”)进行定义],被许可人同意,本协议条款为 Beta 测试协议条款的补充,而非替代 Beta 测试协议的条款。 -# +# # 3. 如果本产品是一个试用版或者评估版,被许可人同意仅为评估目的并按照上述第 1 条所规定的使用限制使用本产品,评估期间为三十天,除非约定了其他期间(“试用期间”)。试用期间结束后,被许可人使用产品的权利即终止,被许可人同意卸载产品并且将本产品所有版本退还给 CA,或以书面形式向 CA 保证本产品所有副本已从被许可人的计算机库和/或存储设备中删除并且销毁。如果被许可人希望在试用期间结束后继续使用本产品,被许可人可与 CA 或 CA 关联机构联系并支付相应费用以获得本产品的使用许可。在试用期间内,被许可人对本产品的使用应基于“现状”原则并不享有任何保证,CA 申明不作任何保证,包括但不限于对适销性、适用于特定目的默示保证以及本协议其他部分做出的任何明示的保证。 -# +# # 4. 如果产品包含 Software Development Kit(“SDK”),则本段的条款和条件仅适用于 SDK 的使用。SDK 可能包含软件、API 和相关文档。SDK 仅供被许可人内部使用,以开发软件来实现第三方软件或硬件与本产品的集成,或开发可使用本产品功能的软件,例如代理。被许可人对 SDK 的使用仅限于提高被许可人对本产品的内部使用。没有任何有关本产品的任何形式的分发权利在此授予被许可人。除下面第 8 节中所述对使用的限制外,被许可人还不能向第三方或在 Internet 上复制、公布、推销或分发 SDK 或包含 SDK 任何可执行文件版本的文档或任何应用,也不能将这些可执行文件用于超出适用的授权使用限制范围的用途。如果本段中的条款与本协议中任何其他部分的条款存在冲突,本段中的条款将优先适用,但仅限于 SDK 的使用方面。 -# +# # 在适用法律允许的最大范围内,不管本协议中是否包含任何冲突条款,SDK 均按“原样”提供和许可,不附带任何形式的保证。 -# +# # 5. 通过支付订货单中所约定的费用或者被许可人与 CA 或任何 CA 关联机构的授权经销商商定的费用,被许可人有权在订货单上指定的期限内(“期限”)使用本产品,上述使用应包括在订货单约定的时间内接受维护服务。以下应支付的所有费用应根据订货单中的说明进行支付,如订货单中没有说明,则应从 CA 开发票之日起三十 (30) 天内支付。被许可人将安装向其提供的本产品的每一个新版本。初始期限过后,如果被许可人希望继续使用本产品和/或享受维护服务,被许可人应支付订货单中约定的费用。如果您从授权 CA 经销商那里获取本产品的许可,则本协议中管制付款、定价和折扣的条款不适用,因为这些条款是在您与您选择的 CA 经销商之间签订的。任何在被许可人订单上显示的任何条款(包括但不限于印刷的条款),或被许可人向授权 CA 经销商下达的订单中包含的任何条款与本协议的条款和条件有冲突或不同时,则不适用于本产品,并且应视为无效。 虽然有上述约定,对于依靠持续内容更新的产品,例如签名文件和安全更新,被许可人有权自本许可生效日期起一(1)年内接受内容更新。 -# -# 6. 如果 CA 或 CA 关联 机构提供维护,用户需要按照订货单中的规定每年续订维护。所有费用均未包含适用税款。被许可人同意于 CA 或 CA 关联机构提供发票(如果适用)后支付任何政府或政府机关征收的关税或税收,包括但不限于国家/地区或地方政府所征收的营业税、使用税、增值税及个人财产税(但 CA 应付的特许费及所得税除外)。上述任何税赋的免除均须向 CA 提供适当的免税证明。对于任何被许可人逾期未付款,将被收取每月相当于 1.5% 或法令所许可的最高利息两者中的较低者作为利息。 -# +# +# 6. 如果 CA 或 CA 关联 机构提供维护,用户需要按照订货单中的规定每年续订维护。所有费用均未包含适用税款。被许可人同意于 CA 或 CA 关联机构提供发票(如果适用)后支付任何政府或政府机关征收的关税或税收,包括但不限于国家/地区或地方政府所征收的营业税、使用税、增值税及个人财产税(但 CA 应付的特许费及所得税除外)。上述任何税赋的免除均须向 CA 提供适当的免税证明。对于任何被许可人逾期未付款,将被收取每月相当于 1.5% 或法令所许可的最高利息两者中的较低者作为利息。 +# # 7. 被许可人可在订货单中规定的地区在授权使用限制范围内安装和部署本产品。被许可人可允许其授权最终用户访问产品以用于被许可人或其关联机构的内部业务,不管位于何处,只要被许可人在此明确同意授权最终用户的违反行为应被视为被许可人的违反行为,并承担相应的责任。被许可人在事先发出书面通知后,可以将产品重新安装到订货单中指定的地区内的一处被许可人的新位置。为此目的,“授权最终用户”是指被许可人、其关联机构和员工以及受到不低于本协议条款和条件协议约束的独立承包商(但不包括任何外包商、设备管理提供商、托管服务提供商或应用服务提供商),并且他们代表被许可人而不是第三方行事;被许可人的“关联机构”是指被许可人直接或间接控制的任何法律实体;“控制”是指所有权或控股大于该实体股票的 50%,或者通过法律、合同或等效的手段控制该实体的董事会。如果被许可人希望超出上述限制范围使用本产品,应通知 CA 或被许可人从其获取本产品的 CA 关联机构,然后将收到针对该扩展使用而产生的相关费用开具的发票,并且被许可人应支付该相关费用。 -# -# 8. 本产品(包括本处可能提供给被许可人的任何源代码或者目标代码以及文档、外观、结构和组织)是 CA 和/或其许可人的专属财产,并受版权、专利、商标、商业秘密和/或其他法律的保护。本产品与任何复制品、修改、翻译、部分复制品、编译、衍生作品或任何适用 SDK 的合并部分的所有权仍归属于 CA 和/或其许可人所有。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。本产品作为单一产品被许可使用。其组成部分不得分开使用。被许可人及其授权最终用户需严格确保本产品与本协议条款的机密性,并尽最大努力防止未经授权泄漏或使用本产品。被许可人不得 (i) 泄露、反向编译、分解或者对本产品进行逆向工程,除非相应法律明文禁止上述限制;(ii) 基于本产品开发任何衍生作品;(iii) 在未获得 CA 对相关用途的许可授权的情况下,将产品用于提供设施管理、外包、服务机构、托管服务、云服务、按需服务或通过被许可人进行的类似活动,或者为了第三方的利益操作或使用产品;或者 (iv) 未经 CA 事先书面许可允许任何第三方使用产品。未经 CA 事先书面许可,被许可人不得向任何第三方公布产品任何基准测试的结果。被许可人未经 CA 事先书面同意,不得转让、出租、租赁、使用、复制或修改本产品的全部或者部分,或者允许他人进行上述行为,除非相应法律明文禁止上述限制。被许可人不得移除 CA 或其许可人的任何专属标记。被许可人可为产品创建合理数量的副本以用于灾难恢复“冷待机”、备份和存档用途,前提是对这些副本的使用仅限于测试被许可人的灾难恢复程序和有效性,并且在发生致使被许可人无法操作产品的实际灾难后的任何合理期间内是必需的。如果本协议因任何理由终止,被许可人需以书面形式向 CA 保证,本产品的所有版本和副本已经从被许可人的计算机和储存设备中删除,并交还给 CA 或销毁并不再使用。被许可人确认产品受欧洲和美国法律的管辖,包括出口管理法规 (15 CFR 730-774),并且同意遵守所有适用的进口和出口法律及法规。被许可人同意不会违反美国法律出口、再出口或转让产品,或将产品用于与化学、生物或核武器或导弹等应用相关的用途,如果您知道或有理由认为产品将用于或可能用于此类用途,则不得进行转让或转售,即使相应的订货单明确约定允许您进行转让或转售。本产品以及所有附随文档均完全由许可人独立承担开发费用,并且是“商业物品”和“商业计算机软件”,《联邦采购条例》的 2.101 部分“定义”中对这些术语进行了定义。根据《信息自由法》(FOIA) 的一个或多个豁免项(或适用的类似美国州法令),本产品可免于遵守 5 U.S.C.§552(b) 对信息披露的要求。以前交付给您的任何产品不可再次交付。以前未交付给被许可人的任何产品将在 CA 收到可接受的订货单后,交付给被许可人或其选择的经销商。产品应以电子交付(“ESD”)的形式进行交付,或者如果 CA 或 CA 关联机构单独要求交付有形介质,则应按照 INCOTERMS 2010 中的定义从 CA 或该 CA 关联机构的发货地以 CPT 形式交付。CA 或被许可人从其获取产品的 CA 关联机构同意承担所有关税,并且任何相关 CA 硬件(如果包括)的许可和授权都会在 CA 或该 CA 关联机构的发货位置交付给承运人时一并授予。如果使用电子交付,则不会交付任何有形的动产。这种电子交付可能不会自动免除适用的销售税或使用税。任何标识为“通用”或“GA”的操作系统表示产品根据 CA 当前发布的规范在此类操作系统上通用。货一旦实际发出或以电子方式交付了密钥/访问代码,则在上述第一时间内,已被视为接受货物。CA Inc. 是本产品的制造商。CA 有权在事先通知您的情况下,通过远程方式或在被许可人和/或您的关联机构设施现场执行审核,以验证被许可人及其授权最终用户遵从本协议条款的情况。CA 同意这种审核应在您办公室的正常工作时间内进行,并且 CA 应尽力确保这种审核不会不合理地干扰您的活动,并/或根据需要使用独立的第三方来执行审核,以遵守非披露条款。不管是否有其他法律选择条款,本协议适用纽约州的法律,并据以解释,并且对于由本协议引起或与之相关的任何诉讼,将位于纽约苏福克郡的州和联邦法院作为唯一的司法裁决机构。 -# +# +# 8. 本产品(包括本处可能提供给被许可人的任何源代码或者目标代码以及文档、外观、结构和组织)是 CA 和/或其许可人的专属财产,并受版权、专利、商标、商业秘密和/或其他法律的保护。本产品与任何复制品、修改、翻译、部分复制品、编译、衍生作品或任何适用 SDK 的合并部分的所有权仍归属于 CA 和/或其许可人所有。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。本产品作为单一产品被许可使用。其组成部分不得分开使用。被许可人及其授权最终用户需严格确保本产品与本协议条款的机密性,并尽最大努力防止未经授权泄漏或使用本产品。被许可人不得 (i) 泄露、反向编译、分解或者对本产品进行逆向工程,除非相应法律明文禁止上述限制;(ii) 基于本产品开发任何衍生作品;(iii) 在未获得 CA 对相关用途的许可授权的情况下,将产品用于提供设施管理、外包、服务机构、托管服务、云服务、按需服务或通过被许可人进行的类似活动,或者为了第三方的利益操作或使用产品;或者 (iv) 未经 CA 事先书面许可允许任何第三方使用产品。未经 CA 事先书面许可,被许可人不得向任何第三方公布产品任何基准测试的结果。被许可人未经 CA 事先书面同意,不得转让、出租、租赁、使用、复制或修改本产品的全部或者部分,或者允许他人进行上述行为,除非相应法律明文禁止上述限制。被许可人不得移除 CA 或其许可人的任何专属标记。被许可人可为产品创建合理数量的副本以用于灾难恢复“冷待机”、备份和存档用途,前提是对这些副本的使用仅限于测试被许可人的灾难恢复程序和有效性,并且在发生致使被许可人无法操作产品的实际灾难后的任何合理期间内是必需的。如果本协议因任何理由终止,被许可人需以书面形式向 CA 保证,本产品的所有版本和副本已经从被许可人的计算机和储存设备中删除,并交还给 CA 或销毁并不再使用。被许可人确认产品受欧洲和美国法律的管辖,包括出口管理法规 (15 CFR 730-774),并且同意遵守所有适用的进口和出口法律及法规。被许可人同意不会违反美国法律出口、再出口或转让产品,或将产品用于与化学、生物或核武器或导弹等应用相关的用途,如果您知道或有理由认为产品将用于或可能用于此类用途,则不得进行转让或转售,即使相应的订货单明确约定允许您进行转让或转售。本产品以及所有附随文档均完全由许可人独立承担开发费用,并且是“商业物品”和“商业计算机软件”,《联邦采购条例》的 2.101 部分“定义”中对这些术语进行了定义。根据《信息自由法》(FOIA) 的一个或多个豁免项(或适用的类似美国州法令),本产品可免于遵守 5 U.S.C.§552(b) 对信息披露的要求。以前交付给您的任何产品不可再次交付。以前未交付给被许可人的任何产品将在 CA 收到可接受的订货单后,交付给被许可人或其选择的经销商。产品应以电子交付(“ESD”)的形式进行交付,或者如果 CA 或 CA 关联机构单独要求交付有形介质,则应按照 INCOTERMS 2010 中的定义从 CA 或该 CA 关联机构的发货地以 CPT 形式交付。CA 或被许可人从其获取产品的 CA 关联机构同意承担所有关税,并且任何相关 CA 硬件(如果包括)的许可和授权都会在 CA 或该 CA 关联机构的发货位置交付给承运人时一并授予。如果使用电子交付,则不会交付任何有形的动产。这种电子交付可能不会自动免除适用的销售税或使用税。任何标识为“通用”或“GA”的操作系统表示产品根据 CA 当前发布的规范在此类操作系统上通用。货一旦实际发出或以电子方式交付了密钥/访问代码,则在上述第一时间内,已被视为接受货物。CA Inc. 是本产品的制造商。CA 有权在事先通知您的情况下,通过远程方式或在被许可人和/或您的关联机构设施现场执行审核,以验证被许可人及其授权最终用户遵从本协议条款的情况。CA 同意这种审核应在您办公室的正常工作时间内进行,并且 CA 应尽力确保这种审核不会不合理地干扰您的活动,并/或根据需要使用独立的第三方来执行审核,以遵守非披露条款。不管是否有其他法律选择条款,本协议适用纽约州的法律,并据以解释,并且对于由本协议引起或与之相关的任何诉讼,将位于纽约苏福克郡的州和联邦法院作为唯一的司法裁决机构。 +# # 9. CA 保证其可以签订本协议,如因 CA 未经相应授权或被许可人在产品交付时有权使用产品的区域内使用产品而侵犯了任何美国专利或版权,则 CA 应向被许可人提供赔偿,或自行选择解决任何第三方索赔。CA 还保证自产品交付给被许可人后的九十 (90) 天内,其分发的产品将实质上符合文档中所述的发布规范,前提是 CA 的唯一责任是尽合理的努力并遵守行业标准来修复任何缺陷。在收到被许可人有关违反上述任一保证的书面通知后的合理时间内,如果 CA 无法使产品 (a) 不侵犯第三方的知识产权或 (b) 实质上符合 CA 的书面规范,则 CA 可以终止许可并向被许可人或其授权 CA 经销商按比例退还许可费或支持和维护费。如果出现此类终止情况,则应根据以下条件按比例退款:(i) 所适用订货单的期限内剩余的月数,或 (ii) 如果产品根据永久许可进行许可,则使用为期三 (3) 年的分期偿还时间表(仅用于计算退款)。本节所述保证不适用于产品的 Beta 版、试用版、评估版或演示版,也不适用于 Software Development Kit。在以下情况下,CA 没有任何责任来补偿或补救保证索赔:(i) 侵权或保证索赔的宣称是由于对产品进行修改引起的,而且该修改不是由 CA 进行的,(ii) 未按照 CA 的规范、相关文档和指导准则使用产品,(iii) 宣称的侵权或保证索赔本可通过使用 CA 发布的更新或修补程序避免或以其他方式消除,(iv) 宣称的侵权或保证索赔是由于将产品与任何第三方产品结合使用所致,或者 (v) 未支付适用的产品费用,或被许可人以其他方式违反本协议。对于 CA 按照被许可人的特定指示制造的任何产品,此处包含的赔偿不适用,并且 CA 不承担任何责任。前述条款陈述了 CA 关于侵权索赔的全部责任和义务,以及在任何实际或宣称的侵犯任何知识产权或其他专有权利的情况下,对被许可人的全部补救措施。 -# -# 10. 除前述的保证外,在适用法律允许的最大范围内: -# -# (I) CA 不做其他任何保证,无论是明示或默示,包括但不限于适销性和适用于特定用途的默示保证; +# +# 10. 除前述的保证外,在适用法律允许的最大范围内: +# +# (I) CA 不做其他任何保证,无论是明示或默示,包括但不限于适销性和适用于特定用途的默示保证; # (II) CA 不对被许可人或任何其他一方可能肇因于本产品的使用、操作或修改所导致的索赔或损失负责,包括时间、金钱、商誉以及间接的损害,即使 CA 被告知有这种损害的可能。如根据所适用的法律上述责任限制无效,则 CA 对这类索赔的责任将局限于被许可人已经实际支付的本产品许可费用的金额。任何第三方(包括代理、分销商或授权 CA 转售商)都无权修改以上任何保证,或代表 CA 添加任何保证。CA 不保证产品满足被许可人的需求,或者产品在使用中不发生错误或产生间断。 -# +# # 11. 仅当被许可人遵守 CA 有关许可转让的普遍适用政策,包括产品使用范围不可扩展到被许可人的业务和被许可人持有过半数股份的子公司的业务之外的要求,才可转让本协议。 -# +# # 12. 如果被许可人违反本协议的任何条款、无力偿还债务、进入破产或接管程序,CA 有权停止履行其义务及/或立即终止本协议,除 CA 享有的其他权利外,被许可人需立即向 CA 或被许可人从其获取产品的 CA 关联机构支付所有到期和即将到期的费用。 -# +# # 13. 如果被许可人未支付适用的维护费用,之后可通过向 CA 或相应的 CA 关联机构支付拖欠期间每年 150% 的维护费用重新取得维护服务。 -# -# 14. 如果法院认为本协议的任何条款为非法、无效或者不可执行,余下的条款应持续完全有效。对本协议的任何违约的弃权不构成对于任何其他违约的弃权,并且弃权需经书面做出并且经弃权方授权代表签字后方为有效。有关本协议的任何问题应交由 CA, Inc. 处理,地址:One CA Plaza, Islandia, NY 11749,收件人:全球法律部。 -# +# +# 14. 如果法院认为本协议的任何条款为非法、无效或者不可执行,余下的条款应持续完全有效。对本协议的任何违约的弃权不构成对于任何其他违约的弃权,并且弃权需经书面做出并且经弃权方授权代表签字后方为有效。有关本协议的任何问题应交由 CA, Inc. 处理,地址:One CA Plaza, Islandia, NY 11749,收件人:全球法律部。 +# # 15. 如果被许可人在美利坚合众国国境以外获得许可,对产品的使用适用下列条款: -# +# # 尽管第 8 节的最后一句有所约定,本协议应受被许可人为产品获取许可所在的国家/地区的法律之管辖,除非下方另有所述。 -# +# # 欧洲、中东和非洲 -# +# # 1. 在 EMEA 地区,作为许可人的 CA 实体是 CA Europe Sàrl(“CA 欧洲”)。CA Europe Sàrl 是 CA Europe Sàrl 通过在 EMEA 地区内的当地 CA 子公司或通过授权的 CA 经销商已提供给被许可人的产品的许可人。CA 支持和维护(如果有)将由当地 CA 子公司或授权 CA 经销商提供。 -# +# # 2. EMEA 地区是指欧洲、中东和非洲地区。 -# +# # 3. 第 9 节第三和第五句话仅适用于第三方侵权。 第 9 节第二句话已删除,并以下方内容代替: # “CA 欧洲还保证产品将实质上按照产品文档中所述的适用规范操作,这始终取决于被许可人对本协议条款的遵守情况。如果 CA 欧洲违反了本保证,则 CA 欧洲对被许可人的补救措施是与被许可人进行协商,以 (i) 通过符合行业标准的合理工作来修复缺陷,或 (ii) 将产品更换为实质上符合文档规范的产品。如果在合理的时间段内无法修复缺陷或者缺陷更正或更换最终失败,被许可人应具有以下权利:(i) 在订阅许可的情况下,如果符合法律或法规要求,有权合理降低约定的费用且/或因此立即终止协议;(ii) 在永久许可的情况下,自行选择 (1) 废除或降低在适用的交易文档中约定的费用以及 (2) 针对损害或无效开支进行索赔。针对损害或无效开支进行索赔的权利受下面第 10 节中所述责任限制的约束。在永久许可的情况下,此处所述的保证索赔应限于产品交付后的九十 (90) 天内。保证补救措施具有以下前提条件:(i) 所投诉的任何错误或缺陷可由 CA 欧洲合理地再现,(ii) 产品未经修改,并按照文档所述进行使用;(iii) 违反并非全部或部分归咎于任何非 CA 产品或服务。以上保证是 CA 欧洲提供的唯一保证。CA 欧洲或其供应商不提供其他任何保证(包括产品无错误),不管是明示还是默示,包括但不限于对质量满意度、非侵权、适用性和/或适用于特定用途的默示保证。如果被许可人据此保证一节进行索赔,则被许可人无权或没有资格从任何其他 CA 关联机构那里寻求同样的保证补救措施。” -# +# # 4.条款 10 删去,并以下方内容代替: -# +# # “10.1 在因 CA 欧洲的重大过失或故意违约或者 CA 欧洲的法律代表或 CA 欧洲凭借其履行合同义务的人员出现重大过失或故意违约,导致死亡、身体伤害或健康伤害和损害时,以及根据产品责任法(“Produktehaftpflichtgesetz”)应承担责任时,不管责任的原因为何,CA 欧洲的责任都是无限的。 # 10.2 在轻微疏忽的情况下,不管责任的原因为何,仅当 CA 欧洲违反某项义务,该义务对于协议的执行非常重要,并且另一方通常相信其实现时,CA 欧洲才应承担责任。在此情况下,CA 欧洲对被许可人承担的责任将限于可预见并且通常由本协议引起的损害。 # 10.3 除此之外,CA 欧洲因间接、特殊和后果性损害(包括但不限于利润损失、业务损失、机会损失或商誉损失)对被许可人的责任应限于可预见并且通常由本协议引起的损害。 # 10.4 双方了解在 10.2 和 10.3 两节中所述通常由本协议授予的许可引起的可预见损害应限于被许可人据其获取产品的当前初始或续订期限的已付或应付最大费用。 # 10.5 数据损失的责任应限于在定期进行充分的数据备份的情况下通常进行的恢复工作。 # 10.6 本协议中提供的补救措施是双方之间的排他性补救措施。” -# +# # 5.本协议添加了以下各节: -# +# # “不可抗力。除付款义务和有关不披露的义务外,不管本协议中的任何相反条款,如果由于一方不可控的原因,包括但不限于战争、民众骚乱、天灾、员工罢工或其他停工(不管是部分还是整体)、任何政府或政府机构(包括任何法院或裁决机构)的任何法律、法令、法规或命令,致使任何诉讼或未能提出任何所需的诉讼,则任一方都不应对此承担责任。” -# +# # “被许可人数据。如果被许可人按照任何产品的要求将任何个人数据转交给 CA 欧洲,则该被许可人表示 (i) 其获得充分授权将个人数据提供给 CA 欧洲,并且遵循相关法规合法地进行该行为,(ii) CA 欧洲和 CA 公司集团内的任何实体(每个公司都是一个“CA 实体”)或其转包商都可处理这些数据以用于履行其义务,(iii) CA 欧洲可以出于上述目的将这些数据披露给任何 CA 实体及其转包商,并且可以将此类数据转移到原产国之外的国家/地区。CA, Inc 已通过 Safe Harbour 认证且 CA 实体承诺遵守相关的数据保护/隐私法规。” -# +# # 6. 瑞士的法律(不包括其冲突的法律条款)适用于本协议的解释和实施。对于由本协议引起或与之相关的任何诉讼,双方同意将位于苏黎世的瑞士法院作为唯一的司法裁决机构。《联合国国际货物销售合同公约》将不适用于此协议。 -# -# 7. 关于针对 EMEA 地区的本协议的任何问题都应交由 CA Europe Sàrl 处理,地址:Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland,收件人:全球法律部。 -# +# +# 7. 关于针对 EMEA 地区的本协议的任何问题都应交由 CA Europe Sàrl 处理,地址:Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland,收件人:全球法律部。 +# # 阿根廷 # 作为许可人的 CA 子公司是 CA Argentina S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用阿根廷的法律,并据以解释。因此产生的任何争议应由 Tribunales de la Cuidad de Buenos Aires 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Argentina S.A 处理,地址:Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires,收件人:财务部。 -# -# 澳大利亚 +# +# 澳大利亚 # 作为许可人的 CA 子公司是 CA (Pacific) Pty.Ltd (ABN 20 001 146 345)。 -# +# # 条款 2、3 以及 10 之结尾处均添加下方内容: # 尽管 CA 约定不提供保证,被许可人基于竞争和消费者法 2010 以及其他州立法和地区立法的特定权利不得被排除,但是可能受到限制。在适用法律允许的最大范围内,CA 排除所有未在本协议明确条款中明确约定的条款,并且在相关法律允许的最大限度下,限制竞争和消费者法 2010 以及其他州立法和地区立法要求的任何条款。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议受执行该交易所在州或地区的法律的管辖。 -# +# # 条款 10 添加下方内容: # 如果 CA 违反竞争和消费者法 2010 以及其他州立法和地区立法中包含的一项条件或者保证,CA 的责任仅限于选择,在提供货物的情况下,修理或者更换货物,或者支付货物修理或者更换的费用,以及在提供服务的情况下,重新提供服务或者支付重新提供服务的费用。如果上述条件或者保证为有关货物的销售权利、不受干扰地拥有或者完全所有权,或者如果 CA 提供的货物属于通常提供给个人、家庭或者日常消费使用的货物,那么本条款的限制不适用。 -# -# 巴西 +# +# 巴西 # 作为许可人的 CA 子公司是 CA Programas de Computador, Participaçðes e Serviços Ltda。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用巴西的法律,并据以解释。因此产生的任何争议应由圣保罗市政厅的法院进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Programas de Computador 处理,地址:Participaçðes e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000,收件人:全球法律部。 -# -# 加拿大 +# +# 加拿大 # 作为许可人的 CA 子公司是 CA Canada Company。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议受安大略省的法律管辖。 -# -# 智利 +# +# 智利 # 作为许可人的 CA 子公司是 CA de Chile, S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用智利的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Santiago 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Chile, S.A 处理,地址:Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago,收件人:财务部。 -# -# 中国 +# +# 中国 # 作为许可人的 CA 子公司是 CA (China) Co., Ltd。 -# +# # 条款 6 的第二句删去,并以下方内容代替: -# 所有费用均包含增值税。 -# +# 所有费用均包含增值税。 +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用中华人民共和国的法律,并据以解释。因此产生的任何争议应由位于北京的有管辖权的法院进行裁决。 -# +# # 哥伦比亚 # 作为许可人的 CA 子公司是 CA Software de Colombia S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用哥伦比亚的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Bogotá 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Software de Colombia S.A 处理,地址:Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia,收件人:财务部。 -# +# # 香港 # 作为许可人的 CA 子公司是 CA (Hong Kong) Limited,其主要工作地点为 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用中国香港特别行政区的法律,并据以解释。对于本协议引起的任何争议,将香港的法院作为唯一的司法裁决机构。 -# +# # 在第 10 节末尾添加了以下内容:上述责任限制以及上述最高责任金额并不影响或者损害被许可人在货品售卖条例、服务提供(隐含条款)条例或者管制免责条款条例下的法定权利,亦不限制或者排除任何对于完全由 CA 的疏忽而导致的死亡或者人身伤害的责任。 -# +# # 印度 # 作为许可人的 CA 子公司是 CA (India) Technologies Private Limited。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议及其条款应按照印度的法律管辖和解释,并且对于本协议引起的任何争议,将孟买的法院作为唯一的司法裁决机构。 如果以电子方式交付本产品,则 CA 应使所述产品可从位于印度之外的国家/地区的服务器进行下载。 -# +# # 印度尼西亚(参阅新加坡) -# +# # 日本 # 作为许可人的 CA 子公司是 CA Japan, Ltd。 -# +# # 条款 6 的第三句删去,并以下方内容代替: # 被许可人同意于 CA 提供发票后支付任何政府或政府机关征收的关税或税收,CA 应承担的税收除外。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用日本的法律,并据以解释。因此产生的任何争议应由位于日本东京的东京地方法院进行最终裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Japan, Ltd. 处理,地址:2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan,收件人:全球法律部。 -# +# # 韩国 # 作为许可人的 CA 子公司是 CA Korea Inc., Ltd。 -# -# 条款 8 最后一句删去,并以下方内容代替: +# +# 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用韩国的法律,并据以解释。 -# -# 条款 14 最后一句删去,并以下方内容代替: +# +# 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Korea Inc., Ltd 处理,地址:City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea,收件人:全球法律部。 -# +# # 马来西亚 # 作为许可人的 CA 子公司是 CA (Malaysia) Sdn. Bhd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用马来西亚的法律,并据以解释。对于本协议引起的任何争议,将马来西亚的法院作为唯一的司法裁决机构。 -# +# # 条款 10 添加下方内容: # 尽管 CA 说明不做其他保证,但是被许可人在消费者保护法 1999 下可能享有特定权利,保证仅限于适用的立法许可的范围。 -# -# 墨西哥 +# +# 墨西哥 # 作为许可人的 CA 子公司是 CA Software de México S.A. de C.V。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用墨西哥的法律,并据以解释。因此产生的任何争议应由 Tribunales de la Cuidad de México 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Software de México S.A. de C.V, Av 进行处理, 地址:Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500,收件人:财务部。 -# +# # 新西兰 # 作为许可人的 CA 子公司是 CA Pacific (NZ) Ltd。 -# +# # 尽管条款 6 最后一句中有约定,被许可人未付款项应收的利息为月 1.5%。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用新西兰的法律,并据以解释。对于本协议引起的任何争议,将新西兰的法院作为唯一的司法裁决机构。 -# +# # 条款 10 添加下方内容: # 尽管 CA 说明不做担保,但是被许可方在消费者担保法 1993 下或者在其他立法下可能享有特定权利,该权利不得被排除或者限制。如果被许可人是为了消费者担保法 1993 中定义为商业的目的购买货物和服务,则消费者担保法 1993 对于 CA 提供的所有货物以及服务不适用。如果被许可人不是为了消费者担保法 1993 中定义为商业的目的购买本产品,则本条款中的限制受该法案的限制。 -# +# # 条款 12 添加下方内容: # 如果被许可人被决议清算或者解散,或者清算或解散被许可人的程序已经开始,CA 在本条款下的权利依然适用。 -# +# # 秘鲁 # 作为许可人的 CA 子公司是 CA de Peru S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用秘鲁的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de La Cuidad de Lima 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Peru S.A 处理,地址为:Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru,收件人:财务部。 -# +# # 菲律宾 # 作为许可人的 CA 子公司是 Philippine Computer Associates International, Inc。 -# +# # 删除了第 8 节的前八句,并以下方内容代替: # 本产品与任何修改的所有权仍归属于 CA 所有。本产品系属商业机密及 CA 或其许可人的专属财产。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。被许可人和其员工需严格确保本产品与本协议条款的机密性。在适用法律允许的最大范围内,被许可人不得泄露、反向编译、分解以及对本产品进行逆向工程。 -# +# # 条款 8 最后一句删去,并以下方内容代替: -# 本协议适用菲律宾的法律,并据以解释。对于本协议引起的任何争议,将马卡迪市的法院作为唯一的司法裁决机构。 -# +# 本协议适用菲律宾的法律,并据以解释。对于本协议引起的任何争议,将马卡迪市的法院作为唯一的司法裁决机构。 +# # 条款 12 删去,并以下方内容代替: # 如果被许可人违反本协议的任何条款、无力偿还债务、进入破产或接管程序,CA 有权在得知消息后立即停止履行其义务及/或终止本协议,除 CA 享有的其他权利外,被许可人需立即支付所有到期和即将到期的费用给 CA。 -# -# 新加坡 +# +# 新加坡 # 作为许可人的 CA 子公司是 CA (Singapore) Pte. Ltd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用新加坡的法律,并据以解释。对于本协议引起的任何争议,将新加坡的法院作为唯一的司法裁决机构。 -# +# # 第 9 条结尾处添加下方内容: # 在适用法律许可的情况下,CA 放弃对于品质满意或者适用性的全部默示条件或者保证。 -# +# # 台湾 # 作为许可人的 CA 子公司是 CA (Taiwan) Limited,其注册办公地址为 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan。 -# +# # 条款 6 的第二句删去,并以下方内容代替: # 所有费用均不含增值税。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用中国台湾的法律,并据以解释。因此产生的任何争议由台北地区法院进行裁决。 -# +# # 泰国 # 作为许可人的 CA 子公司是 CA Sales (Thailand) Co., Ltd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用泰国的法律,并据以解释。对于本协议引起的任何争议,将泰国的法院作为唯一的司法裁决机构。 -# +# # 委内瑞拉 # 作为许可人的 CA 子公司是 Computer Associates (CAI) de Venezuela, CA。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用委内瑞拉的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Caracas 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 Computer Associates (CAI) de Venezuela, CA 处理,地址:Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela,收件人:财务部。 -# +# # 16. 如果本产品包含第三方软件,并且许可人要求将该软件的特定许可条款和条件纳入本协议,这些特定条款和条件位于本协议下方,特此附录以供参考。 -# +# # 许可证持有人确认已阅读并理解该许可的内容,并通过在下面输入 "accept" 表示同意其条款和条件。被许可人也承认本协议(包括任何提及本协议的订货单和本协议的下方所列的任何有关第三方软件的条款)是各方之间关于这件主题事项的完全协议,并且本协议取代被许可人已经收到的有关本协议的主题事项的任何信息,除非有以下情况,即本协议(不包括下方的第三方条款)已经全部被另一个由被许可人和 CA 签字生效的授予被许可人使用本产品的许可的书面协议所取代。本协议只能通过有双方授权的代表签字的书面协议进行更改。 -# +# # = = = = = -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 最后更新日期 2016-01-12 -# -# +# +# +# 最后更新日期 2016-05-25 +# +# # 在下面输入 "accept" 可接受该协议中如上所述的条款和条件,然后继续进行安装过程。 -# +# # 在下面输入 "reject" 可停止安装过程。 -# +# # CA-EULA 的有效值集合为: {accept, reject}。 CA-EULA=accept diff --git a/enterprise-manager/eula-introscope/ca-eula.zh_TW.txt b/enterprise-manager/eula-introscope/ca-eula.zh_TW.txt index 8ab4d7b..dd8bf61 100644 --- a/enterprise-manager/eula-introscope/ca-eula.zh_TW.txt +++ b/enterprise-manager/eula-introscope/ca-eula.zh_TW.txt @@ -3,347 +3,340 @@ # CA 終端使用者授權合約檔案 # ############################################################################## -# +# # 所安裝 CA 軟體產品與相關文件以及 SDK (定義如下) 之 CA 使用者授權合約 (以下稱為「合約」) 已包含在產品 (以下稱為「產品」) 中。 -# +# # 安裝及使用產品前,請詳細閱讀下列與使用產品相關的條款與條件。台端在本合約將被稱為「貴用戶」或「使用人」。 -# -# 於以下鍵入 "accept" (接受) 後,表示貴用戶已同意以下事項: -# -# (I) 貴用戶已成年,具完全法定能力,可適當約束自我及雇主之行為以遵循本合約之條款; +# +# 於以下鍵入 "accept" (接受) 後,表示貴用戶已同意以下事項: +# +# (I) 貴用戶已成年,具完全法定能力,可適當約束自我及雇主之行為以遵循本合約之條款; # (II) 貴用戶本身及/或以貴用戶雇主之授權代表身分,受本合約之約束。 -# +# # 於以下鍵入 "reject" (拒絕) 後,安裝程序將終止。 -# +# # 1. CA, Inc. 或以下第 15 條之後所個別列出認可販售本產品之國家地區的 CA 實體 (以下稱為「CA」) 為使用人提供一 (1) 套產品供其依照以下條件使用:任何訂購單 (定義如下) 或產品包裝盒中的 CD 外盒上授權使用限制 (以下稱為「授權使用限制」) 所載明的 (a) 數量和 (b) CA 用來量測產品使用情形 (包括但不限於 MIPS、CPU、階層、伺服器或使用者) 的發佈準則。CA 以限制、非獨佔、不可轉讓為原則,將產品授權給使用人在「期限」內僅用於內部業務用途,另外也依據以下其他條款與條件:(a) 任何經使用人與 CA 附屬公司簽署或簽約之 CA 訂購單或註冊表格;或 (b) 任何由 CA 視需要提供給使用人之授權程式憑證,參照並納入本合約 (以下稱為「訂購單」) 的條款。 -# +# # 2. 如果產品為目前尚未正式發行之 alpha 版或試用版程式 (在下文中稱為「試用版程式」或「試用版軟體」),CA 不保證正式版本與試用版程式完全相同,亦不保證貴用戶不須重新安裝正式版本。使用人同意若註冊支援服務或經 CA 要求而註冊該服務,使用人應提供 CA 關於使用人對產品操作經驗之特定資訊。使用人同意並承認下列事項:(a) 產品試用版僅適用於測試,不做為任何生產用途,經 CA 書面同意者不在此限;以及 (b) 產品試用版未經測試或偵錯,純粹做為實驗用途,其文件僅供參考,且多有不完整之處。使用人同意 CA 不保證產品試用版之完整性、正確性或使用人之使用或操作。試用版產品係以「原有形式」提供,不提供任何明示或默示之承諾或擔保,其包含但不限於對於產品之所有權或未侵權之任何承諾或擔保。如果使用人同時為試用版產品的測試人員 (依照使用人在取得試用版產品前於註冊程序中同意之試用版測試或發行前版本測試合約 (以下稱為「試用版測試合約」) 所定義),使用人同意本授權合約之條款為「試用版測試合約」之附加內容,而非使取代該合約。 -# +# # 3. 若產品獲授權為試用或評估之用,使用人同意產品僅用於評估,並在 30 天 (除非另外註明期限) 的評估期 (以下稱為「試用期」) 中確實遵守第 1 條之使用限制。試用期結束後,使用人之產品使用權自動失效,使用人同意解除安裝產品,並將全部或部份產品歸還 CA,或以書面方式向 CA 證明已從使用人電腦資料庫及/或儲存裝置中刪除與銷毀全部或部份產品。若使用人希望在試用期滿後繼續延伸其產品使用權,使用人可與 CA 或 CA 附屬公司聯繫並支付費用以取得產品之授權。使用人在試用期間僅以「原有形式」使用產品,不具任何瑕疵責任擔保,CA 亦不負責全部瑕疵責任擔保,包括但不限於適售性之默示擔保及特定用途之適用性,亦不負責本合約他處明示之任何瑕疵責任擔保。 -# +# # 4. 如果產品包含軟體開發套件 (以下稱為「SDK」),本段之條款與條件僅適用於 SDK 的使用層面。SDK 可能包括軟體、API 和相關文件。SDK 僅供使用人內部使用,以開發整合產品與協力廠商軟硬體之軟體,或開發與產品共同使用之軟體 (例如代理程式)。使用人對 SDK 之使用僅限於幫助產品的內部使用。使用人不具有任何關於產品之散發權利。除了下述第 8 條中提及之使用限制之外,使用人不得複製、揭露、銷售,或將 SDK 或文件,或任何含有 SDK 可執行版之應用程式散佈給第三方,亦不得置於網際網路,或在超過授權使用限制所規定的範圍外,使用上述可執行程式。本條款與本合約中其他條款有所衝突時,以本條款中關於 SDK 之使用方面之條款為優先採用。 -# +# # 在適用法律的最大許可下,即使與此處條文內容有任何違背之處, SDK 係以「原有形式」加以提供與授權,不具瑕疵擔保責任。 -# +# # 5. 支付訂購單中所載明或使用人與 CA 或任何 CA 附屬公司授權經銷商之間所協議之費用,可使使用人具有在訂購單載明之期限 (以下稱為「期限」) 內使用產品之權利,其中可能包括在訂購單所示期限內接受維護服務之權利。全部費用均須依訂購單中的指定支付,或若未指定,則應於 CA 發票日起淨三十 (30) 天內支付。使用人將可安裝產品的每一個新版本。最初期限結束後,使用人須支付訂購單載明之費用,始得繼續使用產品及/或維護服務。如果貴用戶是從 CA 授權經銷商取得產品授權,則本合約中管理付款、定價和折扣的條款將不適用,因為此等條款是貴用戶與所選 CA 經銷商之間的協定。針對可能出現在使用人採購單 (包括但不限於預印條款),或出現為使用人與 CA 授權經銷商訂單的一部份,但與本合約之條款與條件相牴觸或有所差異的任何條款,將不適用於本產品且應視為無效。 關於任何內容需要持續更新的產品 (例如簽名檔和安全性更新),使用人可在授權生效日期起算一 (1) 年內享有此類內容更新,不受上述規定之限制。 -# +# # 6. 如係由 CA 或 CA 附屬公司提供維護,則需依據所簽訂之訂購單所示,每年重新續約。全部費用均不含稅。使用人同意在收到 CA 或 CA 附屬公司 (若適用) 發出之發票後,支付政府徵收或公家機關代收之任何關稅或稅金,包含但不限於聯邦稅、州稅與地方稅、營業稅、使用稅、加值稅及個人財產稅 (不包含 CA 應付之加盟及所得稅)。上述關稅或稅金之免稅聲明須提供 CA 相關文件證明。使用人逾期未償付之發票,每月衍生之利息至少 1.5%,至多則依照聯邦法定利率。 -# +# # 7. 使用人可以在訂購單中指定的授權地區安裝與部署本產品,數量上限依授權使用限制所規定。使用人可以同意其授權使用者在任何地方針對使用人及其附屬公司的內部業務用途存取本產品,前提是使用人在此明確同意授權使用者的違反行為應視為是使用人的違反行為和責任。經事先書面通知之後,使用人得將本產品的使用地點改到訂購單中指定之授權地區內的新使用人地點。在這份文件中,「授權使用者」是指使用人、其附屬公司和所屬員工,以及所應遵守的條款與條件的限制程度不下於本文的條款與條件,並代表使用人而非第三方行為的獨立承包商 (但任何外包商、設備管理供應商、委外服務供應商或應用程式服務供應商除外);使用人相關「附屬公司」是指使用人直接或間接控制的任何法律實體;而「控制」是指擁有或控制大於 50% 實體股份,或依法律效力或合約 (或相等實力) 控制此等實體的董事會。若使用人欲在上述限制之外使用產品,須告知 CA 或 CA 附屬公司,使用人採購本產品的來源並開立發票及支付延伸使用之費用。 -# +# # 8. 產品 (包括任何可能提供給使用人之來源或目的碼) 以及文件、外觀、結構和組織,均為 CA 及/或其授權人之專利財產,並可能受到著作權、專利、註冊商標、商標、商業機密及/或其他法律之保護。SDK 產品所有權或其任何複製、修改、轉譯、部分複製、組譯、衍生物件或合併之程式歸 CA 及/或其授權人所有。 使用人同意 CA 在無需獲得使用人同意的情況下,使用由其所提供且與本產品相關的任何意見反應,作為任何 CA 商業用途使用,包括以此等意見反應為依據的衍生作品重製與準備,以及此等衍生作品的散佈。產品之相關使用權不得替換為其它任何 CA 產品。產品僅做為單一產品進行授權。其組件不得分開單獨使用。貴用戶與其授權使用者須將產品及本授權之條款視為極機密,極力避免產品遭受未經授權的公開和使用。貴用戶不得 (i) 揭露、反組譯或分解產品,亦不得進行產品之還原工程,但若準據法律明文禁止上述限制者,則不在此限;(ii) 建立任何產品之衍生物件;(iii) 將產品用於提供設備管理、外包、服務機構、裝載服務、雲端服務、隨選服務,或在使用人沒有授權此等目的之 CA 授權的情況下,操作或將本產品用於第三方以牟利的類似活動;或 (iv) 准許任何第三方使用本產品,已由 CA 書面授權者除外。使用人未獲 CA 書面同意前,不得向任何第三方揭露產品之任何基準測試結果。使用人不得轉送、讓渡、出租、使用、複製或修改全部或部份產品,或在未獲 CA 書面同意下准許他人對產品進行以上各項行為,但若準據法律明文禁止為上述限制者,則不在此限。使用人不得移除 CA 或其授權人之任何所有權標記。使用人可以針對災難復原「冷待命」、備份及封存等目的,製作合理數量的本產品副本;前提是此類副本的使用僅限於測試使用人的災難復原程序和效率,且必要時僅限實際災難發生之後,使用人無法操作本產品的任何合理期間。若此授權因任何原因而終止,使用人應向 CA 提出書面證明,證明全部或部份產品已從全部電腦及儲存裝置中刪除,並已歸還 CA 或銷毀,將不再使用。使用人同意本產品受歐洲和美國法律約束,包括「出口管理規則 (Export Administration Regulations)」(15 CFR 730-774),並同意遵守所有適用之進出口法律和規定。使用人同意不會在違反美國法律的情況下出口、再出口或傳輸本產品,或將本產品用於任何化學、生化或核子武器或飛彈應用等相關目的,若使用人瞭解或有原因知道計劃或有可能將本產品用於此等目的,也不會傳輸或轉售本產品。本產品及相關文件係完全由私人開發完成,並屬於美國聯邦採購法規 (Federal Acquisition Regulation,FAR) 分篇 2.101 「定義」中所定義的「商業產品」和「商業電腦軟體」。本產品得不依資訊公開法 (FOIA) 5 U.S.C. 之規定向大眾提供。§552(b) 在該法令的一或多項豁免下 (或類似的美國州法,若適用)。任何先前提供給貴用戶的產品可能無法重複提供。在 CA 收到可接受訂單之後,任何先前未提供給使用人的產品將提供給使用人或其選定的經銷商。本產品應以電子交付形式 (“ESD”) 交貨,或如果 CA 或 CA 附屬公司分別要求從 CA 或此等 CA 附屬公司的出貨點,以有形媒體、CPT (如 INCOTERMS 2010 中所定義) 的形式交貨。使用人採購本產品的 CA 或 CA 附屬公司同意負責所有的關稅和結關,且任何 CA 硬體 (若包含) 的所有權會在 CA 或此等 CA 附屬公司的出貨地點,於交貨時間點轉讓給貨運業者。若是採用電子交付,將不會提供有形的個人所有物。此類電子交付形式可能無法自動提供適用稅額或使用稅之免除。認定為「泛型」或「GA」的任何作業系統表示 CA 按照 CA 目前發佈的規格向大眾提供的本產品,適用於此等作業系統。在最早的實體運輸點或電子形式交貨時授權碼/使用程式碼的傳遞即視為完成交貨。CA Inc. 是本產品的製造商。CA 保留在通知貴用戶後遠端或駐站稽核使用人和 (或) 其附屬公司設施的權利,以查證使用人及其授權使用者是否遵循本合約條款。CA 同意應在貴用戶辦公室的正常工作時間內進行此等稽核,且 CA 在進行此等稽核時,應盡力避免以不合理的方式干擾貴用戶的活動,和 (或) 視需要使用受保密條款約束的獨立第三方進行稽核。本合約應遵守美國法律,並依據美國法律作出解釋,不必顧及其選擇的法律規定,且任何與本合約內容或相關的行動都必須以紐約蘇福克郡的聯邦上訴法院的專屬管轄權為準。 -# +# # 9. CA 保證簽署本合約,並保證賠償或選擇解決 CA 未經授權、或使用人在經授權情況下使用產品,但侵害任何美國專利或交貨時授權使用人使用本產品之所在司法管轄區著作權的任何第三方的主張。CA 亦保證自產品交付使用人起九十 (90) 天內,其分散式產品會符合其說明文件中所列示之發佈規格運作,前提是 CA 的唯一責任為盡力使產品與業界標準達成一致,以避免任何缺失。在收到使用人針對上述擔保之書面違約通知後合理期限內,若 CA 無法使產品之操作 (a) 符合第三方智慧財產權或 (b) 確實符合 CA 之書面規格,CA 得以終止此授權,並根據授權費用及 (或) 已支付的支援與維護費用,提供或安排按比例退費給使用人或其 CA 授權經銷商。若有此等終止情形,按比例退費應根據 (i) 適用訂購單期限內剩餘的月份數,或 (ii) 如果本產品是以永久授權的方式進行授權,使用 (僅限用於退費計算用途) 三 (3) 年的分期償還計畫表進行計算。本條文中所列示的保固內容並不適用於本產品的測試版、試用版、評估或展示版本,或是軟體開發套件。CA 針對下列情況不具賠償或補償保固聲明的責任:(i) 如果侵權或保固聲明的主張是因為修改產品所致,CA 所做的修改除外,(ii) 如果未遵守 CA 的規格、相關說明文件及指導方針使用本產品,(iii) 如果主張的侵權或保固聲明可因使用 CA 發佈的更新或修補程式而避免或消除,(iv) 如果主張的侵權或保固聲明是因為結合使用本產品與任何第三方產品所致,或 (v) 如果尚未支付應付的產品相關費用,或使用人違反本合約。此處所提及的賠償將不適用,且 CA 不負與 CA 所生產的任何產品在使用人明確指導下有關的責任。上述條款說明 CA 有關侵權聲明的所有責任和義務,以及針對任何實際或主張的侵權或侵佔任何智慧財產權或其他所有權,提供給使用人的專有補救措施。 -# -# 10. 除上述規定外,尚須符合下列法律規定: -# -# (I) CA 不提供任何明示或默示之保證,其包括但不限於適售性之默示保證及任何特定用途之適用性; +# +# 10. 除上述規定外,尚須符合下列法律規定: +# +# (I) CA 不提供任何明示或默示之保證,其包括但不限於適售性之默示保證及任何特定用途之適用性; # (II) 在任何情況下,對貴用戶或其它任何人因使用、操作或修改產品造成之損失,包括時間、金錢、商譽及衍生性損害或間接損害,即使 CA 曾被告知此等損害之可能性,CA 均無須負責。在上述之責任限制與法律牴觸時,CA 之責任僅限於使用人實際支付之授權費用。包括代理商、經銷商或授權零售商在內之第三方,均無權修改上述擔保,或代表 CA 提供其它擔保。CA 不保證本產品將符合使用人的要求,亦不保證該產品之使用不會中斷或完全沒有錯誤。 -# +# # 11. 使用人在同意 CA 所提出與授權合約相關之政策時,包括產品使用範圍不得超出使用人及使用人所屬子公司產業,始簽署本合約。 -# +# # 12. 若使用人違反本合約任一條款,或使用人無償付能力,或使用人宣告會被宣告破產或受破產管理人管理,CA 有權據此中斷服務並且/或者立即終止本合約。除 CA 其它所有權利之外,全部應支付或即將支付之費用 (若有的話) 必須立即支付給使用人採購本產品的 CA 或 CA 附屬公司。 -# +# # 13. 若使用人未支付維護費用,須支付 CA 或個別 CA 附屬公司相當於 150% 的年度維護費用,始得恢復維護服務。 -# +# # 14. 如果法院認為本合約的任何條款為違法、無效或不可執行,剩餘的其它條款仍保有完全效力與效果。任何違反本合約責任的免除不代表對其它違反本合約責任的免除,免除責任將為無效,除非由免除責任一方之授權代表以書面簽署。關於本合約之任何問題,請洽詢 CA, Inc. 全球法律部,地址為 One CA Plaza, Islandia, NY 11749。 -# +# # 15. 使用人若在美國以外地區取得產品之授權,須遵循下列使用產品之條款: -# -# 本合約受使用人取得產品授權之所在國家法律管轄,不受第 8 條最後條款限制,但以下情形除外: -# +# +# 本合約受使用人取得產品授權之所在國家法律管轄,不受第 8 條最後條款限制,但以下情形除外: +# # 歐洲、中東和非洲 -# +# # 1. 在 EMEA,授權人 CA 實體為 CA Europe Sàrl (以下稱為「CA Europe」)。CA Europe Sàrl 是產品授權人,透過 CA Europe Sàrl 授權,經由 EMEA 的當地 CA 子公司或經由 CA 授權經銷商將產品提供給使用人使用。CA 支援與維護 (若有的話) 會由當地 CA 子公司或由 CA 授權經銷商提供。 -# +# # 2. EMEA 代表歐洲、中東和非洲。 -# +# # 3. 第 9 條的第 3 及第 5 個條款僅適用於第三方侵權。 第 9 條第二句已刪除,並以下列條文取代: # 「CA Europe 也保證本產品將以符合產品說明文件中所列示之適當規格確實操作,但前提是使用人必須遵守本合約條款。如果 CA Europe 違反此保證,在諮詢使用人的情況下,CA Europe 必須 (i) 執行符合業界標準的適當工作來解決此瑕疵,或 (ii) 以確實遵守說明文件的產品取代原先的產品,作為使用人的補救措施。如果無法在合理期限內解決此瑕疵,或如果此瑕疵的矯正或替換最終失敗,使用人應擁有 (i) 在訂閱授權的情況下,如果符合法律或法令要求,合理降低協定之費用和 (或) 因故立即終止的權利;(ii) 在永久授權的情況下,選擇 (1) 撤銷或降低適用交易文件中協定之費用,及 (2) 針對損害或無效支出補償之索賠權利。損害或無效支出的索賠權利應受下方第 10 條中所載明的責任限制。在永久授權的情況下,此處所提及之保固聲明在交付產品後的九十 (90) 天內會開始計算時效。保證補救措施受限於 (i) CA Europe 能夠適度重現所申訴之錯誤或瑕疵,(ii) 本產品未經修改且遵照說明文件進行使用,且 (iii) 違約並非全是或部份是任何非 CA 的產品或服務所致。上述保證是 CA Europe 自行提供的保證。無論是明示或默示,CA Europe 或其供應商不提供包括產品完全沒有錯誤之其他保證,包括但不限於品質滿意、不侵權或適用性的默示保證,及 (或) 適用於特定目的之保證。如果使用人據此保證條文提出索賠,使用人無權或無資格從任何其他 CA 附屬公司尋求相同保證補救措施。」 -# +# # 4.第 10 條已刪除,並以下列條文取代: -# +# # 「10.1 因 CA Europe 之重大過失或故意違約,或因 CA Europe 法律代表或 CA Europe 負責其合約義務執行的個人之重大過失或故意違約,而造成死亡或身體傷害或健康受傷及損害,以及發生 Product Liability Act (以下稱為「Produktehaftpflichtgesetz」) 中所列之責任事件時,CA Europe 的責任 (無論責任原因為何) 將不受限制。 # 10.2 在些微過失的情況下,如果 CA Europe 違反執行本合約的必要義務,以及違反另一方通常信任的履行義務,則 CA Europe (無論責任原因為何) 必需對此負責。在此情況下,CA Europe 對使用人的責任將限於可預見的損害,以及執行本合約時通常會發生的損害。 # 10.3 進一步說明上述 CA Europe 對使用人的責任,針對間接、特殊及衍生性損害 (包括但不限於利益損失、業務損失、機會損失或商譽損失) 方面的責任應限於可預見的損害,以及執行本合約時通常會發生的損害。 # 10.4 可預見的損害通常在執行本合約中的授予授權時發生,雙方應同意上述第 10.2 和 10.3 條的定義,將可預見的損害限於使用人採購本產品當時之最初或續約期限的最高已付或欠下的費用。 # 10.5 在定期和適當資料備份的案例中,資料遺失的責任僅限於典型的復原工作。 # 10.6 本合約中所提供的補救措施為雙方的專有補救措施。」 -# +# # 5.下列條款將附加於本合約: -# +# # 「不可抗力因素。除了付款義務和保密相關義務之外,無論本合約有任何相反條文,在採取此類行動或因超出任一方所能控制而引起此類失敗的情況下,包括但不限於戰爭、內亂、天災、罷工或其他勞工停工 (無論是局部或全面),或任何政府或政府組織 (包括任何法院或法庭) 的任何法律、法令、法規、命令,任一方均不須對任何採取的行動或任何無法成功採取的必要行動負責」。 -# +# # 「使用人資料。如果使用人將任何個人資料傳至 CA Europe,作為根據任何產品的必要項目,則使用人表示 (i) 其已正式授權將個人資料提供給 CA Europe,且其行為合法並遵守相關法規,(ii) CA Europe 與 CA 公司集團 (每個公司皆為「CA 實體」) 內的任何實體或其轉包商可以處理此等資料,以履行其義務,且 (iii) CA Europe 可就此目的將此等資料提供給任何 CA 實體與其轉包商,並可將此等資料轉移到原始國家地區之外的地方。CA, Inc. 已獲「資料保密」(Safe Harbor) 認證且 CA 實體已承諾遵守相關資料保護/隱私權法規。」 -# +# # 6. 本合約之構成與強制執行應受瑞士法律 (本合約條文與法律牴觸者除外) 管轄。雙方同意根據本合約所衍生或與其相關的任何行動,應受位於蘇黎世的瑞士法院獨有管轄。本合約不受「聯合國國際貨物銷售合約公約」(United Nations Convention on Contracts for the International Sale of Goods) 之約束。 -# +# # 7. EMEA 地區關於本合約之任何問題,請洽詢 CA Europe Sàrl 全球法律部,地址為 Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland。 -# +# # 阿根廷 # 授權人 CA 子公司為 CA Argentina S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守阿根廷法律。據此任何爭議由布宜諾斯艾利斯地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Argentina S.A 財務部,地址為 Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires。 -# -# 澳洲 +# +# 澳洲 # 授權人 CA 子公司為 CA (Pacific) Pty.Ltd (ABN 20 001 146 345)。 -# +# # 下列條款將附加於第 2、3 及 10 條之後: # 雖然 CA 指明不擔負任何擔保,但是使用人在 Competition and Consumer Act 2010 與其它州及地方法律之下,可以擁有不得排除但是可能受到限制的特定權利。在法律的完全許可下,CA 排除本合約中所有未明確說明於明示條款的條款,並在適用法律的完全許可下,限制 Competition and Consumer Act 2010 與其它州及地方法律強制的任何條款。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約受進行交易的州或地方法律管轄。 -# +# # 下列條款將附加於第 10 條: # 當 CA 違反 Competition and Consumer Act 2010 或其它州及地方法律默示的條件或擔保時,CA 的責任受到限制。就貨物而言,CA 可決定修復或更換貨物,或者支付貨物修復或更換之費用;就服務而言,CA 可決定再次提供服務或是支付重新提供服務之費用。在條件或擔保係關於關貨物銷售權利、秘密擁有或確實所有權時,或者如果 CA 提供的貨物屬於個人、國內或家用或消費等普遍取得的類型,則本條的任何限制不適用。 -# -# 巴西 +# +# 巴西 # 授權人 CA 子公司為 CA Programas de Computador, Participaçðes e Serviços Ltda。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守巴西法律。據此任何爭議由聖保羅市政府法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Programas de Computador, Participaçðes e Serviços Ltda. 全球法律部,地址為 Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000。 -# -# 加拿大 +# +# 加拿大 # 授權人 CA 子公司為 CA Canada Company。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約受安大略省法律管轄。 -# -# 智利 +# +# 智利 # 授權人 CA 子公司為 CA de Chile, S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守智利法律。據此任何爭議由聖地牙哥地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Chile, S.A 財務部,地址為 Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago。 -# -# 中國 +# +# 中國 # 授權人 CA 子公司為 CA (China) Co., Ltd.。 -# +# # 第 6 條第二句已刪除,並以下列條文取代: -# 全部費用均含加值稅。 -# +# 全部費用均含加值稅。 +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循中華人民共和國之法律,不論其法律條款之選擇為何。據此任何爭議由位於北京之管轄法院仲裁。 -# +# # 哥倫比亞 # 授權人 CA 子公司為 CA Software de Colombia S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守哥倫比亞法律。據此任何爭議由波哥大地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Software de Colombia S.A 財務部,地址為 Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia。 -# +# # 香港 # 授權人 CA 子公司為 CA (Hong Kong) Limited,也是其主要營業地點,地址為 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守香港法律。香港法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條之後:上述之責任限制與上述之責任上限,並無影響貴用戶依商品銷售法、服務提供 (默示條款) 法,或免除條款控制法所得享有之法定權利,亦不限制或排除任何純因 CA 之過失所導致之死亡或個人傷害責任。 -# +# # 印度 # 授權人 CA 子公司為 CA (India) Technologies Private Limited。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約及以下條款之管轄與構成須遵守印度法律,並且孟買法院獨有仲裁本合約所引起任何爭議之司法管轄權。 若產品是以電子形式交付,CA 應該讓該產品能從印度以外國家的伺服器進行下載。 -# +# # 印尼 (請參閱新加坡) -# +# # 日本 # 授權人 CA 子公司為 CA Japan, Ltd.。 -# +# # 第 6 條第三句已刪除,並以下列條文取代: # 使用人同意在收到 CA 發出之發票後,支付政府徵收或公家機關代收之任何關稅或稅金,不包含 CA 應付之稅金。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循日本之法律,不論其法律條款之選擇為何。據此任何爭議最終由位於日本東京之東京地區法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Japan, Ltd. 全球法律部,地址為 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan。 -# +# # 韓國 # 授權人 CA 子公司為 CA Korea Inc., Ltd.。 -# -# 第 8 條最後一句已刪除,並以下列條文取代: +# +# 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循大韓民國之法律,不論其法律條款之選擇為何。 -# -# 第 14 條最後一句已刪除,並以下列條文取代: +# +# 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Korea Inc., Ltd. 全球法律部,地址為 City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea。 -# +# # 馬來西亞 # 授權人 CA 子公司為 CA (Malaysia) Sdn. Bhd。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守馬來西亞法律。馬來西亞法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條: # 雖然 CA 指明未擔保任何瑕疵責任,使用人根據 Consumer Protection Act 1999 擁有特定權利,且擔保僅限於適用法律之許可範圍。 -# -# 墨西哥 +# +# 墨西哥 # 授權人 CA 子公司為 CA Software de México S.A. de C.V。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守墨西哥法律。據此任何爭議由墨西哥地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Software de México S.A. de C.V, Av.財務部,地址為 Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500。 -# +# # 紐西蘭 # 授權人 CA 子公司為 CA Pacific (NZ) Ltd.。 -# +# # 即使鑑於第 6 條最後一句,使用人逾期未償付之發票每月衍生利息 1.5%。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守紐西蘭法律。紐西蘭法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條: # 雖然 CA 指明未擔保任何瑕疵責任,使用人根據 Consumer Guarantees Act 1993 或其它不得排除或限制的法律擁有特定權利。如果使用者將貨物與服務使用於 Consumer Guarantees Act 1993 所定義之商業目的,Consumer Guarantees Act 1993 將不適用於 CA 所提供之任何貨物或服務。若產品不使用於 Consumer Guarantees Act 1993 所定義之商業目的,本條之限制受到 Consumer Guarantees Act 1993 限制。 -# +# # 下列條款將附加於第 12 條: # 根據本條之 CA 權利亦適用於任何已通過的決議案,或者針對使用人清算或解散所開始之訴訟程序。 -# +# # 秘魯 # 授權人 CA 子公司為 CA de Peru S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守秘魯法律。據此任何爭議由利馬地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Peru S.A 財務部,地址為 Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru。 -# +# # 菲律賓 # 授權人 CA 子公司為 Philippine Computer Associates International, Inc.。 -# +# # 第 8 條前八句已刪除,並以下列條文取代: # 產品所有權及全部修改歸 CA 所有。產品為商業機密,且為 CA 或其授權人之專利財產。使用人同意 CA 在無需獲得使用人同意的情況下,使用由其所提供且與本產品相關的任何意見反應,作為任何 CA 商業用途使用,包括以此等意見反應為依據的衍生作品重製與準備,以及此等衍生作品的散佈。產品之相關使用權不得替換為其它任何 CA 產品。使用人與其雇員須將產品及本合約之條款視為極機密。在適用法律的最大許可下,使用人不得揭露、反組譯或分解,亦不得進行產品之還原工程。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: -# 本合約之管轄與解釋須遵守菲律賓法律。馬卡迪市法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# 本合約之管轄與解釋須遵守菲律賓法律。馬卡迪市法院獨有仲裁本合約所引起任何爭議之司法管轄權。 +# # 第 12 條已刪除,並以下列條文取代: # 若使用人違反本合約任一條款,或使用人無償付能力,或使用人宣告會被宣告破產或受破產管理人管理,CA 有權據此中斷服務並且/或者在告知時立即終止本合約。 除 CA 其它所有權之外,全部應支付或即將支付之費用必須立即支付給 CA。 -# -# 新加坡 +# +# 新加坡 # 授權人 CA 子公司為 CA (Singapore) Pte. Ltd.。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守新加坡法律。新加坡法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 9 條之後: # 在適用法律的完全許可下,CA 放棄全部品質滿意與特定用途之適用性的全部默示條件與擔保。 -# +# # 台灣 # 授權人 CA 子公司為 CA (Taiwan) Limited,其登記辦公室位於 105 台灣省台北市敦化北路 167 號 17 樓 B 座。 -# +# # 第 6 條第二句已刪除,並以下列條文取代: # 全部費用均不含加值稅。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循台灣之法律,不論其法律條款選擇為何。據此任何爭議由台北地方法院仲裁。 -# +# # 泰國 # 授權人 CA 子公司為 CA Sales (Thailand) Co., Ltd.。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守泰國法律。泰國法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 委內瑞拉 # 授權人 CA 子公司為 Computer Associates (CAI) de Venezuela, CA。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守委內瑞拉法律。據此任何爭議由卡拉卡斯地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 Computer Associates (CAI) de Venezuela, CA 財務部,地址為 Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela。 -# +# # 16. 如果產品含有第三方之軟體,且授權人需為此類軟體在本合約中加入特定授權條款與條件時,這些特定條款與條件併入本合約,構成本合約之一部份,請參閱本合約最後部份。 -# -# 貴用戶同意其已閱讀並瞭解本授權,並且在以下鍵入 "accept" (接受) 後,表示接受其條款及條件。貴用戶亦同意本授權 (包括參照本合約之任何訂購單及在本合約後方所載明之第三方軟體之相關條款) 構成雙方針對本合約事項之完整協議,並同意本授權將取代貴用戶就本合約事項已取得之任何資訊,但本合約 (不包含下列第三人條款) 得以被授權人與 CA 共同簽署之書面合約取代之,以授與貴用戶使用產品之授權。本合約僅得由雙方授權代表所簽署之書面合約加以修改。 -# +# +# 貴用戶同意其已閱讀並瞭解本授權,並且在以下鍵入 "accept" (接受) 後,表示接受其條款及條件。貴用戶亦同意本授權 (包括參照本合約之任何訂購單及在本合約後方所載明之第三方軟體之相關條款) 構成雙方針對本合約事項之完整協議,並同意本授權將取代貴用戶就本合約事項已取得之任何資訊,但本合約 (不包含下列第三人條款) 得以被授權人與 CA 共同簽署之書面合約取代之,以授與貴用戶使用產品之授權。本合約僅得由雙方授權代表所簽署之書面合約加以修改。 +# # = = = = = -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 上次更新時間 2016-01-12 -# +# +# +# 上次更新時間 2016-05-25 +# # 於以下鍵入 "accept" (接受),以接受上述之本合約條款及條件,並開始進行安裝程序。 -# +# # 於以下鍵入 "reject" (拒絕) 以停止安裝程序。 -# +# # CA-EULA 的有效值組合為:{accept, reject}。 CA-EULA=accept diff --git a/enterprise-manager/run-default-em-container.sh b/enterprise-manager/run-default-em-container.sh index 359b0eb..5c75f9f 100755 --- a/enterprise-manager/run-default-em-container.sh +++ b/enterprise-manager/run-default-em-container.sh @@ -9,4 +9,4 @@ docker run -d \ -v ~/git/docker-introscope/transfer/xmltv:/transfer/xmltv \ -v ~/git/docker-introscope/transfer/modules:/transfer/modules \ --name=apm-em \ - apm-em + apm-em:10.3 diff --git a/webview/Dockerfile b/webview/Dockerfile index f87dc23..ac91bbb 100644 --- a/webview/Dockerfile +++ b/webview/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER guenter.grossberger@ca.com WORKDIR /opt/introscope-install ### For new Introscope version you must change the following variables -ENV INTROSCOPE_VERSION=10.2.0.27 +ENV INTROSCOPE_VERSION=10.3.0.15 ### End for new Introscope version ENV INTROSCOPE_HOME=/opt/CA/Introscope diff --git a/webview/README.md b/webview/README.md index 4ca5376..2293afc 100644 --- a/webview/README.md +++ b/webview/README.md @@ -1,10 +1,10 @@ # docker-introscope-webview manager -A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for an Introscope enterprise manager webview in version 10.2. It is meant to be used in combination with the docker image docker-introscope-enterprisemanager (https://github.com/stefansiegl/docker-introscope-enterprisemanager), which provides the enterprise manager. +A docker (https://www.docker.com/) image build for the APM solution of CA Technologies (CA APM). This project build a docker image for an Introscope enterprise manager webview in version 10.3. It is meant to be used in combination with the docker image docker-introscope-enterprisemanager (https://github.com/stefansiegl/docker-introscope-enterprisemanager), which provides the enterprise manager. Note that due to licensing reasons, it is not possible to package the installation files and the license in this image. Please read the usage which file you have to put where. ## Necessary configuration prior to building -The docker image needs the installation files from CA Wily Introscope. Simply copy the file ``introscope10.2.0.27otherUnix.jar`` (installer of the enterprise manager) +The docker image needs the installation files from CA Wily Introscope. Simply copy the file ``introscope10.3.0.15otherUnix.jar`` (installer of the enterprise manager) It goes without saying that you need docker installed. If you are on Windows (like me) or Mac, you can use boot2docker - I works perfectly for me. diff --git a/webview/SampleResponseFile.Introscope.txt b/webview/SampleResponseFile.Introscope.txt index 83bfa9b..8d85c87 100644 --- a/webview/SampleResponseFile.Introscope.txt +++ b/webview/SampleResponseFile.Introscope.txt @@ -3,7 +3,7 @@ # Introscope Silent Installation Response File # # Sample Response File -# CA Wily Introscope(R) Version 10.2.0 Release 10.2.0.27 +# CA Wily Introscope(R) Version 10.3.0 Release 10.3.0.15 # Copyright (c) 2016 CA. All Rights Reserved. # Introscope(R) is a registered trademark of CA. # @@ -66,11 +66,11 @@ ca-eulaFile=eula-introscope/ca-eula.txt # Example Unix install directory: /IntroscopeSilentInstall/ # Left blank, this property will default to one of the following values: # On Windows... -# C:\\Program Files\\CA APM\\Introscope10.2.0.27\\ +# C:\\Program Files\\CA APM\\Introscope10.3.0.15\\ # (Exact name and drive letter of program files directory may vary # depending on OS configuration) # On Unix... -# /root/Introscope10.2.0.27/ +# /root/Introscope10.3.0.15/ # (Under the logged-in-end-user's home directory. Exact directory may vary # depending on user account.) USER_INSTALL_DIR=/opt/CA/Introscope @@ -269,18 +269,6 @@ shouldEnableCAAPMForSharePointPortal=false #CA APM for Web Servers shouldEnableCAAPMForWebServers=false -#CA APM for Oracle WebLogic Server -shouldEnableCAAPMForWebLogic=false - -#CA APM for Oracle WebLogic Portal -shouldEnableCAAPMForWebLogicPortal=false - -#CA APM for IBM WebSphere Application Server for Distributed Environments -shouldEnableCAAPMForWebSphere=false - -#CA APM for IBM WebSphere Portal -shouldEnableCAAPMForWebSpherePortal=false - #CA APM for IBM WebSphere MQ and IBM WebSphere Message Broker shouldEnableCAAPMForWebSphereMQandMB=false @@ -296,12 +284,6 @@ shouldEnableCAAPMForIBMzOSExtension=false #CA Cross-Enterprise Application Performance Management shouldEnableSysview=false -#CA APM for CA SiteMinder Web Access Manager -shouldEnableCAAPMForSiteMinder=false - -#CA APM for CA SiteMinder SNMP Collector -shouldEnableCAAPMForSiteMinderSNMP=false - #CA APM for Oracle Service Bus shouldEnableCAAPMForOSB=false @@ -311,9 +293,6 @@ shouldEnableCAAPMForTibcoBW=false #CA APM for TIBCO Enterprise Message Service shouldEnableCAAPMForTibcoEMS=false -#CA APM for IBM WebSphere Process Server/Business Process Management -shouldEnableCAAPMForWPSandWESB=false - #CA APM for webMethods Broker shouldEnableCAAPMForWMBroker=false @@ -389,37 +368,45 @@ emAsServiceDisplayName=Introscope Enterprise Manager chosenDatabaseIsPostgres=true chosenDatabaseIsOracle=false -# PostgreSQL properties (set these if you are using PostgreSQL database) +# APM Database (on PostgreSQL) details (set these if you are using PostgreSQL database) # The APM database can be installed on Linux, Solaris and Windows platforms. -# Set the following set of properties when pointing to an existing APM database -# and when installing PostgreSQL database. - -dbHost=DATABASE_URL +# If you are pointing to an existing database, enter the details of that database here +dbHost=127.0.0.1 dbPort=5432 dbName=cemdb dbUser=admin dbPassword=wily -# Set the following set of properties when installing the database (in addition to properties above). +# Enter the PostgreSQL superuser name and password +# You can skip these two properties if you are pointing to an existing database +dbAdminUser=postgres +dbAdminPassword=C@wilyapm90 + +# PostgreSQL install directory. You can enter an absolute path or a path relative to APM install Directory +# $defaultDatabaseDir$ defaults to /opt/PostgreSQL- on Linux, Solaris and C:\Program Files\CA APM\PostgreSQL- on Windows +# If you are running CA APM, it is recommended that you put the APM database on its own disk or partition. +# If you are upgrading APM Database, enter the location of existing PostgreSQL home. +# databaseDir=$defaultDatabaseDir$ -# database install dir for Windows. For Linux and Solaris set default to /opt/database -# If you are running CA APM, it is recommended that you put -# the APM database on its own disk or partition. -#databaseDir=database -#dbAdminUser=postgres -#dbAdminPassword=C@wilyapm90 +# Set the following property if you are upgrading APM Database. You can enter an absolute path or a path relative to APM install Directory +# APM sometimes bundles a newer version of PostgreSQL, which must reside in a different directory (if it differs by Major version like 8.4 and 9.2.x). +# If PostgreSQL differs by minor version (eg: 9.2.4 and 9.2.15) then the old PostgreSQL directory is used and this property is ignored. +# Please enter a directory which is different from the existing PostgreSQL install directory or upgrade process will fail. +# $defaultDatabaseDir$ defaults to /opt/PostgreSQL- on Linux, Solaris and C:\Program Files\CA APM\PostgreSQL- on Windows +# newPgInstallDir=$defaultDatabaseDir$ -# For PostgreSQL DB installation on Windows platform only -# Set the DB install script execution timeout wait time (in milliseconds) -#dbInstallScriptTimeoutInMillis=240000 -# Set validateDatabase to true if you want to validate the existing APM database and -# create new schema. -validateDatabase=false +# For PostgreSQL DB installation on Windows platform only. +# Set the DB install script execution timeout wait time (in milliseconds). +dbInstallScriptTimeoutInMillis=240000 -# set upgradeSchema to true if you want to upgrade schema from 4.5.0 or 5.0.0 to 9.0.5 +# Set validateDatabase to true if you already have a PostgreSQL installed and are going to create new APM database or if you are upgrading your database. +# Set validateDatabase to false if you are installing PostgreSQL. +# validateDatabase=true + +# set upgradeSchema to true only if you want to upgrade APM Database. # Schema can be upgraded only on Linux and Windows. -upgradeSchema=false +# upgradeSchema=true # Oracle properties (set these if you are using Oracle database.) # Set 'useExistingSchemaForOracle' property to true if the schema already exists @@ -445,6 +432,7 @@ wvEmHost=EM_HOST_MARKER wvEmPort=EM_PORT_MARKER wvEmWebPort=EM_WEB_PORT_MARKER + ########################################## # WebView As Windows Service Settings #------------------------------------ diff --git a/webview/build-image.sh b/webview/build-image.sh index 58a5a00..e6e13f0 100755 --- a/webview/build-image.sh +++ b/webview/build-image.sh @@ -1,9 +1,7 @@ #!/bin/sh errors=false -INTROSCOPE_VERSION=10.2.0.27 -INTROSCOPE_BUILD=10.2.0-ISCP/build-990300\(${INTROSCOPE_VERSION}\) -TRUSS_URL=http://truss.ca.com/builds/InternalBuilds +INTROSCOPE_VERSION=10.3.0.15 INTROSCOPE_TAR=introscope${INTROSCOPE_VERSION}other.tar INTROSCOPE_BIN=introscope${INTROSCOPE_VERSION}otherUnix.jar @@ -11,12 +9,13 @@ if [ ! -e $INTROSCOPE_BIN ] ; then if [ -e ../enterprise-manager/$INTROSCOPE_BIN ]; then cp ../enterprise-manager/$INTROSCOPE_BIN . else - wget ${TRUSS_URL}/${INTROSCOPE_BUILD}/introscope${INTROSCOPE_VERSION}/introscope${INTROSCOPE_VERSION}other.tar -# tar xvopf introscope${INTROSCOPE_VERSION}other.tar ${INTROSCOPE_BIN} - fi + if [ ! -e $INTROSCOPE_BIN ] ; then + echo "$INTROSCOPE_BIN is missing. Please download $INTROSCOPE_TAR from support.ca.com and place it in this directory." + fi + fi fi if [ "$errors" = false ] ; then echo "Starting the build" - docker build -t apm-webview:10.2 . + docker build -t apm-webview:10.3 . fi diff --git a/webview/eula-introscope/ca-eula.ja.txt b/webview/eula-introscope/ca-eula.ja.txt index eb74933..ee71013 100644 --- a/webview/eula-introscope/ca-eula.ja.txt +++ b/webview/eula-introscope/ca-eula.ja.txt @@ -3,348 +3,341 @@ # CA エンドユーザー使用許諾契約ファイル # ############################################################################## -# +# # インストールするCAソフトウェア製品、および当該製品に含まれる関連ドキュメント、および以下に定義されるSDK(以下、併せて「本製品」と表記します)用の CA エンド ユーザ ライセンス契約(以下、「本契約」または「ライセンス契約」と表記します)。 -# +# # 本製品をインストールして使用する前に、本製品の使用に関する以下の契約条件をよくお読みください。本使用条件では、お客様は「ライセンス契約者」と表記されます。 -# -# 最終行に「accept」と入力することで、以下のことを承認したことになります。 -# -# (I) 成人であり、完全な法的能力を持ち、ライセンス契約者本人およびその雇用主(該当する場合)を本契約に拘束する権限があることを表明し、 +# +# 最終行に「accept」と入力することで、以下のことを承認したことになります。 +# +# (I) 成人であり、完全な法的能力を持ち、ライセンス契約者本人およびその雇用主(該当する場合)を本契約に拘束する権限があることを表明し、 # (II) ライセンス契約者本人、またはライセンス契約者の雇用者から権限を委任された代表者(該当する場合)、あるいはその両者が本使用条件を遵守することに同意したものとみなされます。 -# +# # 最終行に「reject」と入力することで、インストールが停止します。 -# +# # 1. CA, Inc.または以下の第15項以降に本製品が供与される国において個別に特定されるCAグループ企業(以下、「CA」と表記します)は、ライセンス契約者に対して本製品を1部供与します。本製品1部は、認定された使用制限(以下、「認定使用制限」と表記します)に定められた(a)制限数および(b)CAが公表する製品使用状況の判定基準(MIPS、CPU数、階層数、サーバ数、ユーザ数などを含むがこれらに限定しない)に基づいて使用できます。認定使用制限は、注文書(以下に定義します)または製品ボックスに同梱されるCDケースに定められています。CAは期間中ライセンス契約者に対して本製品のライセンスを内部業務での使用のみを目的として限定的、非独占的、譲渡不能なライセンスとして供与します。また、このライセンスには、本契約条件に加えて(a)ライセンス契約者およびCA関連会社との間で署名または契約が交わされたすべてのCA注文書またはお客様登録用紙に記載されているその他の契約条件、または(b)CAが必要に応じてライセンス契約者に供与する、本契約を言及または包含する、ライセンスプログラム証書に記載されているその他の契約条件が適用されます。(以下、(a)および(b)を「注文書」と表記します)。 -# +# # 2. 本製品がプログラムのアルファ バージョンもしくはベータ バージョン(以下、「ベータ プログラム」または「ベータ バージョン」と表記します)であり、その時点で完成版ではない場合、CA は完成版リリースがベータ プログラムと同一であること、および完成版リリースが再インストールを必要としないことを保障するものではありません。ライセンス契約者は、サポートに登録した場合、またはその他にCAが必要であると認めた場合、本製品の使用経験に関する特定の情報をCAに対して提供することに同意するものとします。ライセンス契約者は、本製品のベータ バージョンが(a)テスト目的にのみ使用され、CAが書面にて承諾した場合を除き本番稼働されないこと、(b)テストおよびデバッグが完了していない試験的なプログラムであり、付属する文書が最終版でない場合も多くあることに同意し、この事実を承諾するものとします。ライセンス契約者は、本製品のベータ バージョンの完全性、正確性、およびライセンス契約者による使用または操作に関して、CAが一切の表明を行わないことに同意するものとします。本製品のベータ バージョンは「現状有姿」の状態で供与されます。本製品のベータ バージョンに対しては、あらゆる権原または不侵害に対するすべての保証や表明を含むがそれらに限定しない、明示または黙示のいかなる保証または表明も行われません。ライセンス契約者が本製品のベータ バージョンのテスター(本製品のベータ バージョン入手前の登録時に同意したベータ テストまたはリリース前テスト用の契約条件(以下、「ベータ テスト契約」と表記します)に定められています)である場合、ライセンス契約者は、本契約条件がベータ テスト契約の追加条件であり、ベータ テスト契約が本契約条件よりも優先して適用されることに同意するものとします。 -# +# # 3. 本製品のライセンスが試用版または評価版として供与された場合、ライセンス契約者は、第1項で定めた制限に従って、30日間または別途定められた日数の試用期間(以下、「試用期間」と表記します)の間、本製品を評価目的でのみ使用することに同意するものとします。ライセンス契約者の本製品を使用する権利は、試用期間の終了と共に自動的に失効します。また、ライセンス契約者は試用期間の終了と同時に本製品をアンインストールし、本製品の部分的コピーを含むすべてのコピーをCAに返却するか、ライセンス契約者のコンピュータ ライブラリまたは記憶装置(あるいはその両方)から本製品の部分的コピーを含むすべてのコピーが削除および廃棄された旨をCAに対して書面にて保証することに同意するものとします。ライセンス契約者が試用期間の終了後も本製品の使用継続を希望する場合は、CAまたはCAの関連会社に連絡し所定の料金を支払って、本製品のライセンスを取得するものとします。試用期間中にライセンス契約者が本製品を使用する場合、本製品は「現状有姿」の状態で提供されるものとし、いかなる保証もされません。またCAは、試用期間中の本製品に関して、商品性ならびに特定用途に対する適合性に関する黙示の保証、および本契約で明示に定められているすべての保証を含むがそれらに限定しない、すべての保証から免責されます。 -# +# # 4. 本製品にソフトウェア開発キット(以下、「SDK」と表記します)が含まれる場合、本段落の条項のみが SDK の使用に適用されます。SDKには、ソフトウェア、API、および関連ドキュメントが含まれる場合があります。ライセンス契約者は、提供されたSDKを、ライセンス契約者の内部的な目的にのみ使用できます。ここで言う内部的な目的とは、本製品をサード パーティ製のソフトウェアまたはハードウェアと統合するためのソフトウェアを開発するか、または本製品と連携して機能するソフトウェア(エージェントなど)を開発することを指します。SDKは、ライセンス契約者による本製品の内部的な使用を拡張する目的でのみ、ライセンス契約者に提供されます。ライセンス契約者に対して、本製品を配布する権利はいっさい付与されません。下記の第8項に定める制限に加えて、ライセンス契約者は、SDK、関連ドキュメント、およびSDKの実行可能なバージョンを含むいかなるアプリケーションも、第三者に対して、またはインターネット上で、コピー、開示、取引、または配布してはならず、また認定使用制限に抵触する形で使用してはなりません。本項に定める条件が、本使用条件に定められている他の条件と矛盾する場合は、SDKの使用に限り、本項の条件が優先して適用されます。 -# +# # 本使用条件に定められている他の規定にかかわらず、準拠法によって許容される範囲内で、SDKは「現状有姿」の状態で提供されライセンスされるものとし、いかなる保証もなされません。 -# +# # 5. 注文書に記載された料金、またはライセンス契約者と(CAまたはCA関連会社の)認定再販業者との間で合意された料金を支払うことによって、注文書に記載された期間(以下、「本期間」と表記します)にわたり本製品を使用する権利がライセンス契約者に供与されます。本製品を使用する権利には、注文書にあらかじめ定められた期間内にメンテナンスを受ける権利が含まれる場合があります。本契約による支払いの条件は、すべて注文書に記載されるものとします。注文書に記載がない場合は、CAの請求日から30日以内に支払われるものとします。ライセンス契約者は、ライセンス契約者に供与される本製品の新バージョンをすべてインストールするものとします。本期間の終了後、本契約に定める本製品の使用または保守(あるいはその両方)を継続する場合、ライセンス契約者は注文書に記載された継続する場合の料金を支払うものとします。本製品のライセンスをCAの認定再販業者から取得した場合は、支払い、価格、および割引に関する契約条項はライセンス契約者とライセンス契約者の選択したCA再販業者との間で交わされたものとなるため、本契約でそれらについて定めた条項は適用されません。ライセンス契約者のライセンス発注書(事前印刷されている条項を含むがそれに限定されない)またはライセンス契約者から認定CA再販業者への注文の一部として記載された契約条項で、本契約の条項と矛盾するかまたは異なっている条項は本製品には適用されず無効と見なされます。 上記にかかわらず、本製品が継続的な更新(ウィルス定義ファイルやセキュリティ更新ファイルなど)を必要とする場合、ライセンス契約者は本使用条件に同意してから1年間に限り、その継続的な更新サービスを受けることができます。 -# +# # 6. CAまたはCA関連会社によってメンテナンスが提供される場合、メンテナンス契約は注文書に記載されているとおり年次で更新されるものとします。? すべての料金は税抜きで明記されます。ライセンス契約者は、連邦税、州税、地方税、消費税、使用税、付加価値税、および動産税など、政府または政府の関連機関より課せられるすべての関税および税金を、CAまたはCA関連会社より提示される請求書に基づき支払うことに同意するものとします(ただし営業税や所得税など、支払い義務がCAに課せられるものを除きます)。これら諸税の免除を要求する場合は、CAに対して適切な証拠書類を提出するものとします。請求書に記載されている料金がライセンス契約者によって期限までに支払われなかった場合は、当該料金に対する利息(月1.5%または法的に許容される最高利率のいずれか低い方)が発生するものとします。 -# +# # 7. ライセンス契約者は注文書で特定する地域において、認定使用限度の範囲内で本製品をインストールおよび設置できるものとします。ライセンス契約者は、ライセンス契約者およびその子会社の内部業務での使用を目的とし、ラインセンス契約者が承認するエンドユーザ(以下、「承認エンドユーザ」と表記します)に対して業務の行われる場所に関わりなく本製品にアクセスする許可を与えることができます。ただしこれは本契約のライセンス契約者が、承認エンドユーザによる契約違反がライセンス契約者自身による契約違反と看做され、ライセンス契約者の責任となることについて、本契約により明示的に同意している場合に限ります。ライセンス契約者は、事前に書面で通知することによって、注文書に指定された地域内において本製品を別の設置場所に移動することができるものとします。本契約書において、「承認エンドユーザ」とは、ライセンス契約者、ライセンス契約者の子会社、およびそれらの従業員ならびに契約社員(外注委託業者、施設管理業者、管理サービス プロバイダまたはアプリケーション サービス プロバイダを除く)であり、本契約書に定められた条件と同等以上に厳格な条件の適用を受け、第三者の業務ではなくライセンス契約者の業務を実施するユーザを指します。本契約におけるライセンス契約者の「子会社」とは、ライセンス契約者が直接または間接的に支配している法人を意味します。また「支配」とは、その法人の株式の過半数を保有または支配しているか、法律または契約により当該法人の取締役会を支配しているか、またはそれに相当するものを意味します。ライセンス契約者がこの制限を超えて本製品を使用することを希望する場合、ライセンス契約者は本製品の購入先であるCAまたはCA関連会社に対してその旨を通知すると共に、使用範囲の拡張に対して請求される所定の料金を支払うものとします。 -# +# # 8. 本製品(本使用条件に従ってライセンス契約者に提供される場合があるソース コードおよびオブジェクト コードを含みます)、関連ドキュメント、外観、構造、および構成は、CAまたはライセンス提供者、あるいはその両者の専有する財産であり、著作権、特許権、商標権、営業秘密、その他の法律によって保護されています。本製品の権利、および該当するSDKによってコピー、改変、翻訳、部分的コピー、生成、派生、または融合することで作成したソフトウェアのすべての権利は、例外なくCAまたはライセンス提供者、あるいはその両者に帰属します。 ライセンス契約者は、CAがライセンス契約者から受け取る本製品に関するあらゆるフィードバックを、当該フィードバックに基づいた派生物の複製および作成、ならびにこれらの配布を含め、CAの任意の業務のために承諾なくCAが使用できることに同意するものとします。本製品の使用権を他のCA製品と交換することはできません。本製品は単一の製品としてライセンス契約されます。本製品の構成要素を分離して使用することはできません。ライセンス契約者および承認エンドユーザは、本製品および本製品のライセンス条件を厳に機密として保持し、また権限のない者に開示または使用されないように本製品を保護するため最善の努力を講じるものとします。ライセンス契約者は、(i)準拠法が以下の制限を明示的に禁じている場合を除き、本製品を開示、逆コンパイル、分解、その他リバース エンジニアリングしてはならず、(ii)本製品に基づいた派生物を作成してはならず、(iii)CAから適切なライセンスを取得することなく、本製品を使用してファシリティ マネジメント、アウトソーシング、サービス ビューロー、ホスト サービス、クラウド サービス、オンデマンド サービス、またはそれに類する業務を提供するなど、第三者の利益のために本製品を使用してはならず、また、(iv)CAから事前に書面にて承諾を得ずに、第三者に対して本製品の使用を許可してはなりません。ライセンス契約者は本製品のいかなるベンチマーク テストに関する情報も、CAから事前に書面にて承諾を得ずに第三者に開示してはなりません。準拠法が以下の制限を明示的に禁じている場合を除き、ライセンス契約者は、CAから事前に書面にて承諾を得ずに、本製品の全体または一部を譲渡、委譲、貸与、賃貸、使用、コピー、改変するか、または第三者に本製品に関して上記を許可してはなりません。ライセンス契約者は、CAまたはCAへのライセンス提供者の知的財産権に関する表示を削除してはなりません。ライセンス契約者は「コールドスタンバイ」による災害復旧、バックアップ、アーカイブのために本製品の適切な数量のコピーを作成することができます。ただしこれらのコピーは、ライセンス契約者の災害復旧の手順や有効性を検証する目的、および実際の災害発生後にライセンス契約者が本製品を使用できない場合に、妥当な期間内、必要に応じて使用する目的に限って使用できるものとします。ライセンス契約者は、何らかの理由でライセンス契約が失効した場合に、本製品の部分的コピーを含むすべてのコピーがすべてのコンピュータおよび記憶装置から削除され、本製品の部分的コピーを含むすべてのコピーが破棄またはCAに返却されそれらの使用が完全に停止されたことを、CAに対して書面にて保証するものとします。ライセンス契約者は、本製品が米国輸出規制(15 CFR 730-774)をはじめとするヨーロッパおよび米国の法律の規制対象となることを認識し、適用される全ての輸出入に関する法律および規制を遵守することに同意するものとします。ライセンス契約者は、米国の法律に反して本プロダクトを輸出、再輸出、移転しないこと、化学兵器、生物兵器、核兵器、ミサイルでの活用に結び付くいかなる目的にも使用しないこと、また本製品がそのような目的のために使用されるか、使用される可能性があることをライセンス契約者が知っているか知り得る理由がある場合に本製品の移転または再販売を行わないことに同意するものとします。本製品および本製品に付属するすべての文書は、CAの費用のみによって開発されたものであり、連邦調達規則2.101「Definitions」に定められている「commercial item(s)」および「commercial computer software」に相当します。本製品は、情報公開法(FOIA), 5 U.S.C.§552(b)(または該当する場合は類似の米国州法)に定められる免責事項に従い、開示を免除されます。ライセンス契約者に過去に納品された製品が再度納品されることはありません。ライセンス契約者に過去に納品されていない製品は、受理可能な注文書をCAが受領した後に、ライセンス契約者またはライセンス契約者が選択した再販業者に提供されます。本製品は電子配送(「ESD」)、または、有形メディアの場合はCPT(CAまたはCA関連会社の出荷地からの輸送費込み条件:インコタームズ2010の定義に基づく)のいずれかCAまたはCA関連会社それぞれが適切と見なした方法で出荷されるものとします。ライセンス契約者が本製品を購入するCAまたはCA関連会社は、関税および通関手続きにおいて責任を負うことに同意します。本製品にCAのハードウェアが含まれる場合、当該ハードウェアの所有権はCAまたはCA関連会社の出荷地にて運送人への引渡しをもってお客様に移転するものとします。電子配送の場合、有形媒体は引き渡されないものとします。当該電子配送によって、適用される消費税その他の税金を自動的に控除されるものではありません。オペレーティングシステムに「汎用」または「GA」と指定されている場合、それはCAの既存の仕様に従ってCAがそのオペレーティングシステムに向けて本製品を提供していることを示しています。検収は放棄され、物理的な製品出荷、または電子納品のためのキー/アクセス コードの配信のうち、いずれか早い方が発生時点とみなされます。本製品の製造者はCA Inc.です。CAは、ライセンス契約者に通知をしたうえで、ライセンス契約者もしくはライセンス契約者の子会社の施設内において、または施設外からの連絡により、ライセンス契約者が本契約の条件を遵守していることを確認する目的で監査を行う権利を留保します。CAはこのような監査をライセンス契約者のオフィスの通常営業時間内に実施し、このような監査の実施によってライセンス契約者の業務を不当に妨げないように努めるものとします。また必要であれば、独立の第三者機関によって秘密保持契約に従い監査を行うものとします。本契約は、その準拠法選択の条項にかかわりなく、米国ニューヨーク州法が適用され、それに従って解釈されます。また、 本契約の下で、あるいは本契約に関連して発生した行為が、ニューヨーク州サフォーク郡の州および連邦裁判所の司法権に独占的に管轄されるものとします。 -# +# # 9. CAは、CAが本契約を締結することができることを保証します。またCAは、CAに本契約を締結する権限がないという第三者による申し立て、およびライセンス契約者が本契約に従って本製品を使用したことで、ライセンス契約者が本製品の入手時点で使用を許可された地域内において米国の特許権、著作権を侵害したという第三者による申し立てによって生じる損害からライセンス契約者を免責し、自己の選択により和解することを保証します。同時にCAは、ライセンス契約者への本製品の引き渡し後90日間は、配布された製品がドキュメントに記載されている公開された仕様に従って実質的に動作することを保証します。ただし、CAが負うべき責任は、業界標準に鑑みて欠陥を是正するために合理的な努力をすることに限定されます。CAがライセンス契約者から書面にて上記保証の不履行に関する申し立てを受領してから、合理的に相当な期間内に(a)第三者の知的所有権を侵害せずに、または(b)CAの仕様書に従って、実質的に本製品を動作させることができない場合、CAは当該ライセンスを解除し、ライセンス契約者または認定CA再販業者に対して、支払われたライセンス料金および(または)サポートおよび保守料金を比例配分により返金する手続きを行うことができるものとします。かかる解除が行われた場合、返金額は(i)該当する注文書に記載されている本期間の残り月数に基づく比例配分によって計算するか、(ii)本製品が無期限でライセンス契約されている場合は、(返金額の算出目的に限り)3年償却ベースの比例配分によって計算します。本項で定めた保証は、本製品のベータ版、試用版、評価版、デモバージョン、またはSDKには適用されません。以下の場合、CAは保証の要求に対して補償または救済を行う義務を負わないものとします。(i)申し立てられた侵害または保証の要求が本製品の改変の結果生じたものであり、その改変がCAによるものではない場合。(ii)本製品がCAの仕様書、関連ドキュメント、ガイドラインに則って使用されていない場合。(iii)CAが提供するアップデートまたはパッチを使用することにより、申し立てられた侵害または保証の要求が回避できるか除去できる場合。(iv)申し立てられた侵害または保証の要求が、本製品を何らかの第三者製品と組み合わせて使用したことによる結果である場合。(v)本製品の所定の料金が期日を過ぎても支払われていないか、ライセンス契約者が本契約に違反している場合。ライセンス契約者の特定の指示に基づいてCAが作成した製品に関しては、本書に記載された免責は適用されず、CAはいかなる責任も負わないものとします。上に述べられた規定は、侵害の申し立てに対するCAの責任と義務の全てであり、また実際の侵害や侵害の申し立て、または知的財産やその他財産権の不正使用に関連してライセンス契約者に対して使用できる唯一の救済手段です。 -# +# # 10. 上記を除き、準拠法で許容される範囲内においては、下記の通りです。 -# +# # (I)CAは、商品性および特定用途への適合性に関する黙示の保証など、明示または黙示の保証を一切行いません。 # (II)本製品の使用、操作、または改変によって発生した時間的損害、金銭的損害、のれん代の損害、結果としての損害、または間接的損害を含むあらゆる損害について、当該損害が生じる可能性について報告を受けていたとしても、CAはライセンス契約者または第三者が申し立てた損害賠償請求から免責されるものとします。上記の責任に関する制限が、準拠法に鑑みて無効であると認められた場合、CAが負う損害賠償責任はライセンス契約者が本製品に対して実際に支払ったライセンス料の金額を超えないものとします。代理店、卸業者、CA認定再販業者を含むすべての第三者は、CAに代わって上記の保証条件を改変したり、追加の保証を提供してはなりません。CAは、本製品がライセンス契約者の要求を満たしていること、または本製品の使用が中断しないこと、または欠陥がないことを保証しません。 -# +# # 11. ライセンス契約者は本使用条件を譲渡できますが、ライセンスの譲渡について定めたその時点で有効なCAの方針にライセンス契約者が従う場合に限ります。当該方針には、本製品の使用範囲がライセンス契約者の事業およびライセンス契約者が過半数の株式を所有する子会社の事業を超えないという条件が含まれます。 -# +# # 12. ライセンス契約者が本契約の規定に違反した場合、ライセンス契約者が支払い不能になった場合、ライセンス契約者に対する破産手続きまたは財産管理手続きが開始された場合、CAは本契約に定める自らの義務の履行を保留する権利および本契約をただちに解約する権利を持つものとします。またその場合、CAの他のすべての権利に加えて、本契約に基づくすべての支払はその期限の利益を喪失し、CA、またはライセンス契約者が本製品を購入したCA関連会社に対してただちに支払期限を迎えるものとします。 -# +# # 13. ライセンス契約者が該当するメンテナンス料を支払わなかった場合、メンテナンスを再開するためには、メンテナンス料が支払われなかった各年に対して、その時点で有効なCAのメンテナンス料の150%をライセンス契約者がCAまたは各CA関連会社に対して支払う必要があるものとします。 -# +# # 14. 裁判所によって本契約のいずれかの条件規定が違法、無効、または執行不能だと判断された場合も、その他の条件規定はすべて完全な執行力および効力を持つものとします。本使用条件のいずれかの契約条件への違反に対する権利を放棄しても、当該契約条件以外の条件への違反に対する権利を放棄したことにはならず、また当該権利の放棄は当該権利を放棄する当事者から権限を与えられた代表者が書面にて行わないかぎり無効とします。本契約に関するご質問は、CA, Inc.の Worldwide Law Department、One CA Plaza, Islandia, NY 11749までお問い合わせ下さい。 -# +# # 15. ライセンス契約者が本製品のライセンスを米国外で取得した場合、本製品の使用に以下の各項が適用されます。 -# +# # 第8項の最後の1文の規定にかかわらず、本契約はライセンス契約者が本製品のライセンスを取得した国の法律が適用され、それに従って管理されます(以下に別途規定がある場合を除きます)。 -# +# # ヨーロッパ、中東およびアフリカ -# +# # 1. EMEAでは、CAグループ企業CA Europe S?rl(「CA Europe」)がライセンス提供者です。CA Europe S?rlは、CA Europe S?rlからEMEAにおける地域のCA子会社または認定CA再販業者を経由してライセンス契約者にライセンスとして提供された製品のライセンス提供者です。CAのサポートおよび保守(該当する場合)は、ローカルのCA子会社または認定CA再販業者によって提供されます。 -# +# # 2. EMEA とはヨーロッパ、中東およびアフリカを指します。 -# +# # 3. 第9項の3番目および5番目の文は第三者の権利の侵害にのみ適用されます。 第9項の2番目の文が下記の文で置き換えられます。 # 「CA Europeはまた、ライセンス契約者が本契約の条項に従う限りにおいて、本製品が本製品のドキュメントに記載された仕様に従って実質的に動作することを保証します。CA Europeがこの保証に違反した場合、ライセンス契約者の救済は、ライセンス契約者と協議の上、CA Europeが以下のいずれかを行うものとします。(i)欠陥を是正するために業界標準に鑑みて妥当と思われる努力をする。または(ii)ドキュメントに実質的に準拠した製品で本製品を置き換える。合理的な期間内に欠陥が修復できないか、欠陥の是正または置き換えがなされなかった場合、ライセンス契約者は、(i)サブスクリプションライセンスの場合、法的要件が満たされれば、合意による妥当な料金の減額を受けるか、正当な理由によって直ちに解除を行う権利を有する。(ii)無期限ライセンスの場合、自由裁量により、(1)該当する取引書面で合意された料金の取り消しまたは減額を受ける権利を有するか、(2)損害賠償を請求するか、または不要な出費に対する補償を要求する権利を有する。損害賠償の請求または不要な出費に対する補償の要求の権利は、以下10項に記載の責任の制限に従うものとします。無期限ライセンスの場合、本契約書に述べられる保証要求は、製品の提供後90日で効力を失うものとします。保証救済手段が適用されるのは次の場合に限られます。(i)申し立てられているエラーまたは欠陥をCA Europeが合理的に再現可能であり、(ii)本製品が改変されておらず、本製品のドキュメントに従って使用されており、(iii)違反の原因の全てまたは一部がCA以外の製品またはサービスによるものでない。上記保証がCA Europeによって提供される唯一の保証です。CA Europeまたはそのサプライヤは、黙示か明示かを問わず、本製品に一切エラーがないことを保証するものではありません。この保証には、十分な品質、非違法性、特定の目的に対する適合性に関する黙示の保証を含みますがこれらに限定されるものではありません。ライセンス契約者がこの保証条項のもとで保証の要求を行う場合、ライセンス契約者はその他のCA関連会社から同様の保証救済を求めることはできません。」 -# +# # 4.第10項が下記の文で置き換えられます。 -# +# # 「10.1 責任の理由の如何に関わらず、CA Europeによる重大な過失や故意の怠慢、またはCA Europeの法的代表者またはCA Europeによってその契約義務の履行を委託されている担当者による重大な過失や故意の怠慢に起因する死亡、肉体的損傷、または健康被害や損害が発生した場合、また製造物責任法(「Produktehaftpflichtgesetz」)の下での責任の場合、CA Europeの責任の範囲は制限されないものとします。 # 10.2 軽微な過失の場合、責任の理由の如何に関わらず、CA Europeは、本契約の遂行におよび相手方の通常の期待を履行する上で必要不可欠な義務の遂行を怠った場合にのみ責任を負うものとします。この場合、ライセンス契約者に対するCA Europe の責任範囲は、予測可能で、本契約に関連して通常発生しうる損害に限定されます。 # 10.3 上記に加え、ライセンス契約者に対するCA Europe の間接損害、特殊損害、結果損害(利益の損失、取引上の損失、機会の損失、信用の損失を含むがこれらに限定されない)についての責任範囲は、予測可能で、本契約に関連して通常発生しうる損害に限定されます。 # 10.4 上記10.2および10.3において、本契約において許諾されたライセンスに関連して通常発生しうることが予測可能な損害とは、ライセンス契約者が本製品を購入した最初もしくは更新された期間のその時点で支払われたかまたは支払われる予定の料金の範囲内に限定されると理解されるものとします。 # 10.5 データ損失に対する責任範囲は、通常の適切なデータバックアップにおける標準的な復旧作業に限定されるものとします。 # 10.6 本契約で提供される救済措置は、当事者の唯一の救済措置です。」 -# +# # 5.本契約に以下の条項が追加されました。 -# +# # 「不可抗力。 支払いの義務および情報の非公開に関連する義務を除き、本契約のいかなる定めにもかかわらず、当事者が取る行為、または取るべき行為の不履行が、戦争、騒乱、天災、ストライキ、その他(部分的か全体的かにかかわらず)労働、法律、法令、規制の停止、政府または政府組織(裁判所を含む)による命令など、当事者の制御を超えた原因によって発生したものである限り、いずれの当事者もそれらに対する責任を負わないものとします。」 -# +# # 「ライセンスデータ。ライセンス契約者が製品に準拠した義務としてCA Europeに個人情報を提供する場合、ライセンス契約者は、(i) 自らが当該個人情報をCA Europeに提供することができる正当な権限を具備し、準拠すべき法令に則ってその提供を行うこと、(ii) CA EuropeおよびCAの企業グループに属する企業(以降「CAグループ企業」と表記)またはそれらの各社の下請事業者が、各自の義務を履行する目的によってそれらの情報を使用することができること、また、(iii) CA Europeは、上記の目的により、それらの情報をCAグループ企業および下請事業者に開示することができるほか、その出所元の国以外の国に転送することができることを、事実として表明するものとします。CA, IncはSafe Harbour 認定を受けており、本CA企業は関係する情報の保護/プライバシー関連の法律に従うことを誓約します。」 -# +# # 6. 本契約の解釈と実施可能性はスイスの法律が規定します(法の抵触を除外する)。当事者は、本契約の下で、あるいは本契約に関連して発生した行為が、チューリッヒのスイス裁判所の司法権に独占的に管轄されることに同意するものとします。国連国際物品売買条約は本契約に適用されないものとします。 -# +# # 7. EMEA用の本契約に関するご質問は、CA Europe S?rlのWorldwide Law Department、Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerlandまでお問い合わせ下さい。 -# +# # アルゼンチン # CA関連子会社CA Argentina S.A.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、アルゼンチン共和国の法律に従って管理および解釈されます。本使用条件に関する争議は、すべてTribunales de la Cuidad de Buenos Airesによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Argentina S.AのFinance Department、Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Airesまでお問い合わせ下さい。」 -# -# オーストラリア +# +# オーストラリア # CA関連子会社CA (Pacific) Pty.Ltd (ABN 20 001 146 345) がライセンス提供者です。 -# +# # 第2項、第3項、および第10項の末尾に次の文が追加されます。 -# 「CAから保証が提供されないと明記されていても、ライセンス契約者にはCompetition and Consumer Act 2010、その他の州または特別地域の法律によって特定の権利が与えられている場合があり、それらの権利は制限されますが除外されません。法律により許容される範囲内で、CAは本契約の条項に明示されていないすべての条件を除外します。また、Competition and Consumer Act 2010、その他の州または特別地域の法律によって課せられるすべての条項を、適用される法律によって許容される範囲内で制限します。」 -# +# 「CAから保証が提供されないと明記されていても、ライセンス契約者にはCompetition and Consumer Act 2010、その他の州または特別地域の法律によって特定の権利が与えられている場合があり、それらの権利は制限されますが除外されません。法律により許容される範囲内で、CAは本契約の条項に明示されていないすべての条件を除外します。また、Competition and Consumer Act 2010、その他の州または特別地域の法律によって課せられるすべての条項を、適用される法律によって許容される範囲内で制限します。」 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、商取引が発生した州または特別地域の法律が適用されます。」 -# +# # 第10項に以下の文が追加されます。 # 「Competition and Consumer Act 2010、その他の州または特別地域の法律で黙示に定められている条項をCAが履行しなかった場合、CAが負う物品に関する責任は、当該物品の修理または交換、あるいは当該物品の修理または交換に要する費用の支払いに限定され、CAが負うサービスに関する責任は、サービスの再提供またはサービスの再提供に要する費用の支払いに限定され、これらのいずれが選択されるかはCAが決定できるものとします。条項が物品の販売権、瑕疵のない所有権、または瑕疵のない権限に関連する場合、あるいはCAによって供与される物品が通常は個人または家庭での使用または消費を目的に調達される場合、本項の制限はいずれも適用されません。」 -# -# ブラジル +# +# ブラジル # CA関連子会社CA Programas de Computador, Participa??es e Servi?os Ltda.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ブラジル連邦共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議はすべてサンパウロ市当局(Sao Paulo City Hall)の法廷で裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、Computador, Participa??es e Servi?os Ltda.のWorldwide Law Department、Avenida das Na??es Unidas, 12901 6 andar Torre Norte S?o Paulo SP, 04578-000までお問い合わせ下さい。」 -# -# カナダ +# +# カナダ # CA関連子会社CA Canada Companyがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、オンタリオ州の法律が適用されます。」 -# -# チリ +# +# チリ # CA関連子会社CA de Chile, S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、チリ共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Santiagoによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Chile, S.AのFinance Department、Avenida Providencia 1760, piso 15 Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiagoまでお問い合わせ下さい。」 -# -# 中国 +# +# 中国 # CA関連子会社CA (China) Co., Ltd.がライセンス提供者です。 -# +# # 第6項の2番目の文が下記の文で置き換えられます。 -# すべての料金は付加価値税を含みます。 -# +# すべての料金は付加価値税を含みます。 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、中華人民共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて管轄権を有する北京の裁判所によって裁決されます。」 -# +# # コロンビア # CA関連子会社CA Software de Colombia S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、コロンビア共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Bogot?によって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA Software de Colombia S.AのFinance Department、Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - N? 99-53 - Bogot? D.C. - Colombiaまでお問い合わせ下さい。」 -# +# # 香港 # CA関連子会社CA (Hong Kong) Limited(Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kongを主たる事業所とする)がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、香港特別行政区の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、香港特別行政区の裁判所が専属的管轄権を持つものとします。」 -# +# # 第10項の末尾に次の1文が追加されます。「上記の責任の制限および責任の限度額は、物品販売の法令、サービスの供与の法令(黙示の条項)、または控除管理の法令に関するライセンス契約者の制定法上の権利を損なうものではなく、CAの過失のみによって人員が死傷した場合のCAの責任を制限または除外するものでもありません。」 -# +# # インド # CA関連子会社CA (India) Technologies Private Limitedがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件およびその契約条件はインドの法律が適用され、それに従って解釈され、本使用条件に関する争議が発生した場合、ムンバイの裁判所が専属的管轄権を持つものとします。」 本製品が電子配送される場合は、CAは当該製品をインド以外の国に置かれたサーバからダウンロード可能にすることができるものとします。 -# +# # インドネシア(シンガポールを参照) -# +# # 日本 # CA関連子会社日本CA株式会社がライセンス提供者です。 -# +# # 第6項の3番目の文が以下の文で置き換えられます。 -# 「ライセンス契約者は、政府または政府の関連機関より課せられるすべての関税および税金を、CAより提示される請求書に従って支払うことに同意するものとします(ただし、支払い義務がCAに課せられる税金を除きます)。」 -# +# 「ライセンス契約者は、政府または政府の関連機関より課せられるすべての関税および税金を、CAより提示される請求書に従って支払うことに同意するものとします(ただし、支払い義務がCAに課せられる税金を除きます)。」 +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、日本国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて東京地方裁判所によって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、郵便番号102-0093、東京都千代田区平河町2-7-9、日本CA株式会社の法務部までお問い合わせ下さい。」 -# +# # 韓国 # CA関連子会社CA Korea Inc., Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、準拠法選択の条項に関わりなく、大韓民国の法律が適用され、それに従って解釈されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本使用条件に関するご質問は、CA Korea, Inc., Ltd. の Worldwide Law Department、City Air Tower (22nd Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea までお問い合わせ下さい。」 -# +# # マレーシア # CA関連子会社CA (Malaysia) Sdn. Bhd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、マレーシアの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マレーシアの裁判所が専属的管轄権を持つものとします。」 -# +# # 第10項に以下の文が追加されます。 # 「CAから保証が提供されないと明記されていても、ライセンス契約者には消費者保護法1999(Consumer Protection Act 1999)によって特定の権利が与えられている場合があり、保証は準拠法によって許容される範囲でのみ制限されます。」 -# -# メキシコ +# +# メキシコ # CA関連子会社CA Software de M?xico S.A. de C.V.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、メキシコ合衆国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales de la Cuidad de M?xicoによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 本契約に関するご質問は、CA Software de M?xico S.A. de C.VのFinance Department、Av.Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500までお問い合わせ下さい。 -# +# # ニュージーランド # CA関連子会社CA Pacific (NZ) Ltd.がライセンス提供者です。 -# +# # 第6項の最後の1文にかかわらず、ライセンス契約者が請求書の支払いを怠った場合、月1.5%の利息が加算されます。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 -# 「本使用条件は、ニュージーランドの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、ニュージーランドの裁判所が専属的管轄権を持つものとします。」 -# +# 「本使用条件は、ニュージーランドの法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、ニュージーランドの裁判所が専属的管轄権を持つものとします。」 +# # 第10項に以下の文が追加されます。 # Although CA specifies that there are no warranties, Licensee may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited.ライセンス契約者が、消費者保証法1993に定められている営業用途でCAの物品またはサービスを調達した場合、当該物品またはサービスに対して消費者保証法1993は適用されません。本製品が消費者保証法1993に定められている営業用途以外の目的で調達された場合、本項の制限は消費者保証法1993の制限に従います。 -# +# # 第12項に以下の文が追加されます。 # 「ライセンス契約者の清算手続きまたは解散手続きが決議または開始された場合も、本項に定めるCAの権利が適用されます。」 -# +# # ペルー # CA関連子会社CA de Peru S.Aがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ペルー共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de La Cuidad de Limaによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、CA de Peru S.AのFinance Department、Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peruまでお問い合わせ下さい。」 -# +# # フィリピン # CA関連子会社Philippine Computer Associates International, Inc.がライセンス提供者です。 -# +# # 第8項の1~8番目の文が下記で置き換えられます。 # 「本製品およびそれを改変したものについての権利は、CAに帰属します。本製品はCAまたはCAライセンス提供者の営業秘密および所有財産です。ライセンス契約者は、CAがライセンス契約者から受け取る本製品に関するあらゆるフィードバックを、当該フィードバックに基づいた派生物の複製および作成、ならびにこれらの配布を含め、CAの任意の業務のために承諾なくCAが使用できることに同意するものとします。本製品の使用権を他のCA製品と交換することはできません。ライセンス契約者およびライセンス契約者の被雇用者は、本製品および本製品の契約条件を機密情報として管理するものとします。ライセンス契約者は準拠法によって許容される範囲を超えて本製品を開示、逆コンパイル、分解、またはリバース エンジニアリングしてはなりません。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 -# 「本使用条件は、フィリピン共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マカティ市の裁判所のみが司法権を持つものとします。」 -# +# 「本使用条件は、フィリピン共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、マカティ市の裁判所のみが司法権を持つものとします。」 +# # 第12項が下記の文で置き換えられます。 # 「ライセンス契約者が本使用条件の規定に違反した場合、ライセンス契約者が支払い不能になった場合、ライセンス契約者に対する破産手続きまたは財産管理手続きが開始された場合、CAは本使用条件に定める自らの義務の履行を保留する権利および本使用条件を書面による通知をもってただちに破棄する権利を持つものとします。またその場合、CAのすべての権利に加えて、本使用条件に定めるすべての支払はただちに支払期限を迎えるものとします。」 -# -# シンガポール +# +# シンガポール # CA関連子会社CA (Singapore) Pte. Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、シンガポール共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、シンガポール共和国の裁判所のみが司法権を持つものとします。」 -# +# # 第9項の末尾に下記の文が追加されます。 -# 「準拠法によって許容される範囲で、CA は品質または特定用途への適合性に関する黙示の条件または保証から免責されます。」 -# +# 「準拠法によって許容される範囲で、CA は品質または特定用途への適合性に関する黙示の条件または保証から免責されます。」 +# # 台湾 # CA関連子会社CA (Taiwan) Limitedがライセンス提供者です。登記された事業所の所在地は17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwanです。 -# +# # 第6項の2番目の文が下記の文で置き換えられます。 # すべての料金は付加価値税を含みません。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 本契約は、準拠法選択の条項に関わりなく、台湾の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべて台北地方裁判所(Taipei District Court)によって裁決されます。」 -# +# # タイ # CA関連子会社CA Sales (Thailand) Co., Ltd.がライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、タイ王国の法律が適用され、それに従って解釈されます。本使用条件に関する争議が発生した場合、タイ王国の裁判所のみが司法権を持つものとします。」 -# +# # ベネズエラ # CA関連子会社Computer Associates (CAI) de Venezuela, CAがライセンス提供者です。 -# +# # 第8項の最後の1文が下記の文で置き換えられます。 # 「本使用条件は、ベネズエラ共和国の法律が適用され、それに従って解釈されます。本使用条件に関する争議は、すべてTribunales Ordinarios de la Cuidad de Caracasによって裁決されます。」 -# +# # 第14項の最後の1文が下記の文で置き換えられます。 # 「本契約に関するご質問は、Computer Associates (CAI) de VenezuelaのFinance Department、CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuelaまでお問い合わせ下さい。」 -# +# # 16. 本製品にサード パーティ製のソフトウェアが含まれており、そのソフトウェアのライセンス提供者から特定のライセンス条件を本使用条件に追加するよう要求された場合は、それらのライセンス条件が本使用条件の末尾に追加されています。 -# -# ライセンス契約者はこのライセンス契約書を最後まで読み、内容を理解した上で、最終行に「accept」と入力することで契約条件に同意したものと認めます。またライセンス契約者は、本使用条件の主旨に関してCAおよびライセンス契約者が完全に合意したことを本使用条件(本使用条件または本使用条件に定めるサード パーティ製ソフトウェアに関する条件を記載した注文書を含む)が示していることに同意するものとします。加えてライセンス契約者は、本使用条件の主旨に関する情報を入手した場合、その情報よりも本使用条件が優先されることに同意するものとします。ただし、ライセンス契約者に対して本製品のライセンス使用を許可する書面をCAおよびライセンス契約者の双方が交わした場合、本使用条件(下記のサード パーティ製品に関する契約条件を除く)は無効になるものとします。本使用条件を修正するには、CAおよびライセンス契約者双方の権限を委任された代表者同士が書面にて合意する必要があるものとします。 -# +# +# ライセンス契約者はこのライセンス契約書を最後まで読み、内容を理解した上で、最終行に「accept」と入力することで契約条件に同意したものと認めます。またライセンス契約者は、本使用条件の主旨に関してCAおよびライセンス契約者が完全に合意したことを本使用条件(本使用条件または本使用条件に定めるサード パーティ製ソフトウェアに関する条件を記載した注文書を含む)が示していることに同意するものとします。加えてライセンス契約者は、本使用条件の主旨に関する情報を入手した場合、その情報よりも本使用条件が優先されることに同意するものとします。ただし、ライセンス契約者に対して本製品のライセンス使用を許可する書面をCAおよびライセンス契約者の双方が交わした場合、本使用条件(下記のサード パーティ製品に関する契約条件を除く)は無効になるものとします。本使用条件を修正するには、CAおよびライセンス契約者双方の権限を委任された代表者同士が書面にて合意する必要があるものとします。 +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 最終更新日 2016-01-12 -# -# 上記の使用条件の契約条件に同意する場合は、最終行に「accept」と入力し、インストール処理を進めてください。 -# +# +# +# 最終更新日 2016-05-25 +# +# 上記の使用条件の契約条件に同意する場合は、最終行に「accept」と入力し、インストール処理を進めてください。 +# # インストール処理を中止する場合は、最終行に「reject」と入力してください。 -# +# # CAエンドユーザライセンス使用許諾書の有効な値: {accept, reject} CA-EULA=accept diff --git a/webview/eula-introscope/ca-eula.ko.txt b/webview/eula-introscope/ca-eula.ko.txt index c3e95e5..1675ee5 100644 --- a/webview/eula-introscope/ca-eula.ko.txt +++ b/webview/eula-introscope/ca-eula.ko.txt @@ -3,348 +3,341 @@ # CA End User License Agreement File # ############################################################################## -# +# # 현재 설치 중인 CA 소프트웨어 제품(이하 "본건 제품"이라 함), 본건 제품 내에 포함된 관련 문서 및 소프트웨어개발키트(이하 "SDK"라 함)에 관한 최종사용자라이센스계약(이하 "본 계약"이라 함) -# -# 본건 제품을 설치 및 사용하기 전, 본건 제품 사용과 관련한 하기 조건을 주의 깊게 읽으십시오. 본 계약에서 여러분이라 함은 "귀하" 또는 "라이센시"를 의미합니다. -# -# 입력 아래, 당신이 "동의 함" -# -# (I) 귀하가 미성년자가 아니며, 귀하 자신 및 (해당하는 경우) 귀하의 고용주가 본 계약의 조건을 준수하도록 할 수 있는 완전한 법적 자격과 권한을 가지고 있음을 진술하는 것이며, -# (II) 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표를 대신하여, 또는 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표의 자격으로 본 계약에 구속된다는 것에 동의하는 것입니다. -# +# +# 본건 제품을 설치 및 사용하기 전, 본건 제품 사용과 관련한 하기 조건을 주의 깊게 읽으십시오. 본 계약에서 여러분이라 함은 "귀하" 또는 "라이센시"를 의미합니다. +# +# 입력 아래, 당신이 "동의 함" +# +# (I) 귀하가 미성년자가 아니며, 귀하 자신 및 (해당하는 경우) 귀하의 고용주가 본 계약의 조건을 준수하도록 할 수 있는 완전한 법적 자격과 권한을 가지고 있음을 진술하는 것이며, +# (II) 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표를 대신하여, 또는 귀하 자신 및/또는 (해당하는 경우) 귀하의 고용주의 수권 대표의 자격으로 본 계약에 구속된다는 것에 동의하는 것입니다. +# # 입력하면 "거부"아래의 설치 프로세스가 중단됩니다 -# +# # 1. CA, Inc.(또는 본건 제품이 공급되는 1개 이상의 국가에 소재하는 법인으로서 제15조 이후에 각각 기재된 CA 법인)(이하 “CA”)은 라이센시에게 본건 제품의 사본 1부를 주문 양식(하기 정의됨) 또는 본건 제품 포장 내에 포함된 CD 재킷에 허가된 사용 제한수(이하 "허가된사용제한수"라고 함)로 명시된 바와 같이 (a)해당 수량과 (b) 본건 제품(예를 들면 MIPS, CPU, 계층, 서버 또는 사용자를 포함하며 이에 국한하지 않음)의 사용을 평가하기 위해 CA가 게시한 기준을 준수하여 사용하도록 제공합니다. CA는 계약 기간 중 오로지 내부 업무를 위한 사용을 목적으로 제한되고 배타적이지 않으며 양도불가능하다는 계약 조건에 따라 본건 제품의 라이센스를 라이센시에게 허여하며, 그 외에도 (a) 라이센시와 CA 계열회사 간에 체결했거나 혹은 다른 식으로 약정한 모든 CA 주문 양식 또는 등록 양식 또는 (b) CA가 라이센시에게 제공한 자료로서 (해당되는 경우) 본 계약의 제반 조건을 인용 및 포함하고 있는 라이센스프로그램인증서(이하 각각 “주문 양식”이라 한다)에 각각 수록된 기타 계약 조건에 따라 상기의 목적으로 본건 제품의 라이센스를 라이센시에게 허여합니다. -# +# # 2. 본건 제품이 프로그램의 알파 또는 베타 버전(이하 "베타 프로그램" 또는 "베타 버전"이라 함)이며 현재까지 일반에게 공개되지 않은 경우, CA는 일반 공개 릴리스가 베타 프로그램과 동일하다거나 일반 공개 릴리스를 재설치할 필요가 없다는 것을 보증하지 않습니다. 라이센시가 지원을 위해 등록하거나 CA가 달리 요청하는 경우, 라이센시는 본건 제품의 운영 경험과 관련한 특정 정보를 CA에게 제공하기로 동의합니다. 라이센시는 본건 제품의 베타 버전이 (a) CA가 서면으로 달리 승인하는 경우를 제외하고는, 테스트 목적에 한하여 사용되어야 하고 생산 업무를 수행할 수 없으며, (b) 테스트 또는 디버깅 되지 않았고, 실험용으로 사용되며, 문서는 초안 형태일 수 있고, 대부분의 경우 불완전한 상태일 것이라는 점을 인정하고 이에 동의합니다. 라이센시는 CA가 본건 제품 베타 버전의 완벽함 또는 정확성, 또는 라이센시에 의한 동 베타 버전의 사용이나 운영과 관련하여 어떠한 진술도 제공하지 않는다는 것에 동의합니다. 베타 제품은 어떠한 보증 또는 어떠한 종류의 진술, 명시적이거나 묵시적인 보증, 어떠한 제한, 타이틀 또는 불침해에 대한 어떠한 보증이나 진술 없이 “있는 그대로” 제공됩니다. 라이센시는 (본건 제품의 베타 버전을 획득하기 전 등록 과정에서 라이센시가 동의한 베타 테스팅 계약 또는 사전 릴리스 테스팅 계약(이하 "베타테스팅계약"이라 한다)에 의해 정의된 바와 같이) 본건 제품의 베타 버전의 검사자이기도 한 바, 라이센시는 본 계약의 조건이 베타테스팅계약에 추가될 뿐이며 베타테스팅계약을 대체하는 것은 아니라는 것에 동의합니다. -# -# 3. 시험판 또는 평가판 형식으로 본건 제품의 라이센스가 허여되는 경우, 별도의 기간이 달리 명시되지 않는 경우, 라이센시는 제1조에 명시된 사용 제한에 따라 30일의 평가 기간 동안(이하 "시험기간"이라 함) 본건 제품을 평가 목적에 한하여 사용하기로 동의합니다. 시험기간 종료 시, 라이센시가 본건 제품을 사용할 수 있는 권리는 자동으로 만료되며, 라이센시는 본건 제품을 제거하고 본건 제품의 전체 또는 일부 사본을 CA로 반납하거나 또는 본건 제품의 전체 또는 일부 사본이 라이센시의 컴퓨터 라이브러리 및/또는 저장 장치에서 삭제되었으며 파기되었음을 서면으로 CA에게 입증하기로 합니다. 라이센시가 시험 사용 기간 이후에도 본건 제품을 계속 사용하고자 하는 경우, CA 또는 CA 계열회사로 연락하여 해당 수수료를 지급하고 본건 제품의 라이센스를 취득할 수 있습니다. 시험 사용 기간 중 라이센시는 본건 제품을 어떠한 보증도 없이 "있는 그대로" 사용하며, CA는 상품성 및 특정 목적에의 적합성에 대한 암묵적 보증 뿐만 아니라 본 계약의 여타 부분에 제시된 명시적 보증을 포함하여 모든 보증을 부인합니다. -# -# 4. SDK(Software Development Kit)가 본건 제품에 포함되는 경우, 본 항의 조건이 SDK의 사용에만 적용됩니다. SDK에는 소프트웨어, API 및 관련 문서가 포함될 수 있습니다. SDK는 라이센시가 대리인 자격으로, 제3자 소프트웨어 또는 하드웨어를 본건 제품과 통합시키는 소프트웨어를 개발한다거나 본건 제품과 함께 작동하는 소프트웨어를 개발하기 위해 자체 내부적으로 사용하기 위한 목적에 한하여 제공됩니다. 라이센시는 본건 제품을 내부적으로 보다 효과적으로 사용하고자 할 때에만 SDK를 사용해야 합니다. 본건 제품과 관련하여 라이센시에게 어떠한 종류의 배포 권한도 부여되지 않습니다. 하기 제8조에 명시된 제한 사항 이외에도, 라이센시는 SDK, 관련 문서, 또는 SDK의 실행 버전이 포함된 응용프로그램을 제3자에게 또는 인터넷 상으로 복제, 공개, 판매 또는 배포할 수 없으며, 상기 실행 파일을 허가된사용제한수를 초과하여 사용할 수 없습니다. 본 조항 및 본 계약에 포함된 여타 조항이 상충할 경우, SDK의 사용과 관련된 경우에만 본 조항의 조건이 우선합니다. -# -# 준거법에서 허용하는 최대 한도까지, 그리고 본 계약에 상반된 취지의 조항이 포함되어 있음에도 불구하고, SDK는 어떠한 종류의 보증도 없이 "있는 그대로" 제공되고 라이센스가 허여됩니다. -# -# 5. 주문양식에 기재되어 있거나, CA 혹은 여하한 CA 계열회사가 허가한 재판매업자와 라이센시 간 합의에 의해 지정된 수수료를 지급함으로써, 라이센시는 주문양식에 지정된 기간("계약기간") 동안 본건 제품을 사용할 권리를 갖게 되며, 이러한 권리에는 주문양식에 명시된 기간 동안 본건 제품에 대해 유지보수 서비스를 받을 수 있는 권리가 포함됩니다. 본 계약에 따라 지급해야 하는 모든 수수료는 주문 양식에 명시된 바와 같이 지급해야 하며, 명시되어 있지 않을 경우에는 CA 송장일로부터 30일 이내에 지급해야 합니다. 라이센시는 납품받은 본건 제품의 최신 릴리스를 설치해야 합니다. 최초 계약기간 이후에 본 계약에 규정된 바와 같이 본건 제품을 지속적으로 사용하거나 유지보수 서비스를 받기 위해서는, 라이센시는 주문양식에 명시된 수수료를 지급해야 합니다. 귀하가 CA가 허가한 재판매업자로부터 본건 제품의 라이센스를 취득할 경우, 대금 지급, 가격 및 할인 관련 사항은 귀하와 귀하가 선택한 CA 재판매업자 간에 체결하는 계약 조건에 의하고, 위 사항을 규율하는 본 계약의 조건은 적용되지 않습니다. 라이센시 구매 주문서에 명시할 수 있는 여하한 약정 조건(미리 인쇄된 약정 조건을 포함하며 이에 국한하지 않음)이거나 CA가 허가한 재판매업자를 대상으로 작성된 라이센시의 주문서에 수록되어 있는 약정 조건으로서 본 계약의 제반 조건과 상충하거나 차이를 보이는 여하한 약정 조건은 제품에 적용하지 않으며 효력이 없는 것으로 간주합니다. 전술 사항에도 불구하고, 서명 파일 및 보안 업데이트와 같이 컨텐츠가 지속적으로 업데이트되어야 하는 본건 제품의 경우, 라이센시는 라이센스 유효일자로부터 1년간 상기 컨텐츠 업데이트를 사용할 권리를 갖습니다. -# -# 6. CA 또는 CA 계열회사가 유지보수 서비스를 제공하는 경우, 주문양식에 기재된 바와 같이 매년 갱신되어야 합니다.  모든 수수료에는 세금이 포함되어 있지 않습니다. 라이센시는 CA 또는 (해당하는 경우) CA 계열회사로부터 청구서를 수령하는 경우 연방/주/지방세, 판매세, 사용세, 부가가치세 및 개인 재산세(CA가 납부해야 하는 면허세 및 소득세는 제외함)를 포함한, 모든 정부 기관이 부과 또는 징수하는 관세나 세금을 납부하는 것에 동의합니다. 상기 관세나 세금에 대한 면세 청구 시, CA에게 적절한 증빙 자료를 제출해야 합니다. 라이센시가 청구서에 기재된 금액을 지급일에 지급하지 않는 경우, 월 1.5% 또는 최고 법정 이자율 중 보다 낮은 이자율로 이자가 발생됩니다. -# -# 7. 라이센시는 허가된사용제한수 한도까지 주문 양식에 명시된 지역에서 본건 제품을 설치 및 배포할 수 있습니다. 라이센시는 라이센시 본인과 그 계열회사의 내부 업무를 목적으로 권한이 있는 최종 사용자들이 각자 위치한 모든 장소에서 본건 제품에 액세스하도록 허용할 수 있습니다. 단, 라이센시는 권한이 있는 최종 사용자의 계약 위반을 라이센시 본인의 계약 위반 및 책임으로 간주한다는 것에 명시적으로 동의합니다. 라이센시는 사전 서면 통지가 있을 경우에 주문 양식에 명시된 지역 내에 위치한 라이센시의 새로운 장소로 본건 제품을 재배치할 수 있습니다. 본 계약의 목적상, “권한이 있는 최종 사용자”란 라이센시와 그 계열회사 및 계열회사 직원들을 가리킬 뿐만 아니라, 본 계약에 수록된 당사자들과 똑같이 제한적인 계약 조건을 따라야 하며 제3자가 아닌 라이센시를 대리하는 독립 계약자들(단, 여하한 아웃소서, 시설 관리 제공업자 또는 애플리케이션 서비스 제공업자는 제외)도 가리킵니다. 라이센시와 관련해 “계열회사”는 라이센시가 직간접적으로 경영권을 행사하는 여하한 법인을 의미하며, “경영권”이란 법률 또는 계약 혹은 그에 준하는 약정에 의거해 어떤 법인 지분의 50%를 초과하여 소유 또는 지배하거나 그러한 법인의 이사회를 지배하는 것을 의미합니다. 라이센시가 상기 제한을 벗어나서 본건 제품을 사용하고자 하는 경우, 라이센시는 본인에게 본건 제품을 조달한 CA 또는 CA 계열회사에 그러한 사항을 통보하여야 하고, 이러한 확대 사용에 대한 청구서를 수령한 후에는 해당 요금을 지급해야 합니다. -# -# 8. 본건 제품(본 계약에 따라 라이센시에게 제공될 수 있는 소스코드나 목적 코드, 그리고 문서, 외관, 구조 및 구성 포함)은 CA 및/또는 (존재하는 경우) CA에게 라이센스를 허여한 자(이하 "CA 라이센스허여자"라 함)의 독점적 재산이며, 저작권, 특허, 상표, 영업비밀 및/또는 여타 법률에 의해 보호받을 수 있습니다. 본건 제품 자체, 또는 해당 SDK의 사본, 수정본, 번역본, 부분 사본, 컴파일본, 파생본이나 병합 부분에 대한 소유권은 언제나 CA 및/또는 CA 라이센스허여자에게 귀속됩니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 본건 제품은 단일 제품으로서 라이센스가 허여됩니다. 본건 제품의 구성부품은 분리하여 사용할 수 없습니다. 라이센시 및 그로부터 권한을 획득한 최종 사용자들은 본건 제품 및 본 라이센스의 조건을 철저하게 기밀로 유지해야 하며, 본건 제품이 무단 공개 또는 사용되지 않도록 최선의 노력을 다해야 합니다. 라이센시는 (i) 준거법에서 명시적으로 달리 금지하는 경우를 제외하고는, 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 리버스 엔지니어링할 수 없으며, (ii) 본건 제품을 기반으로 파생물을 생성할 수 없고, (iii) 시설 관리, 아웃소싱, 서비스 부서, 호스트 서비스, 클라우드 서비스, 주문형 서비스 또는 유사 업무를 목적으로 라이센시가 그러한 목적에 따른 사용을 허가하는 CA 라이센스 없이 제3자의 이익을 위해 본건 제품을 운영 또는 사용할 수 없으며, (iv) CA가 사전에 서면 허가를 하지 않는 한, 제3자에게 본건 제품의 사용을 허용할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이 본건 제품의 벤치마크 테스트 결과를 제3자에게 공개할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이는 제품의 일부 또는 전부를 양도, 이전, 대여, 임대차, 복사 또는 수정할 수 없으며, 타인에게 상기 행위를 하도록 허용할 수도 없으나, 단, 전술한 제한사항이 준거법에 따라 명시적으로 금지되는 경우는 예외로 합니다. 라이센시는 CA 또는 CA 라이센스허여자의 소유권 표시를 제거할 수 없습니다. 라이센시는 재해 복구 “콜드 스탠바이”, 백업 및 아카이빙을 목적으로 본건 제품의 사본을 적정한 수만큼 만들 수 있습니다. 단, 그러한 사본은 라이센시의 재해 복구 절차 및 효과를 테스트할 경우에 한해 사용해야 하며, 라이센시가 본건 제품을 운영할 수 없는 실제 재해가 발생한 이후의 여하한 적정 기간 동안 필요할 경우에 한해 사용해야 합니다. 어떤 이유로든 본 라이센스가 해지되는 경우, 라이센시는 본건 제품의 전체 및 일부 사본이 모든 컴퓨터와 저장 장치에서 삭제되었으며 CA로 반납 또는 파기되어 더 이상 사용되지 않음을 서면으로 CA에 입증해야 합니다. 라이센시는 본건 제품이 수출관리규정(15 CFR 730-774)을 포함해 유럽법 및 미국법에 따른 규제 대상에 포함된다는 점을 인지하며, 모든 해당 수출입 관련 법규를 준수하기로 동의합니다. 라이센시는 미국법을 위반하여 본건 제품을 수출, 재수출 또는 이전하지 않을 것이며 화학 무기, 생물학 무기 또는 핵무기나 그러한 성격의 미사일 용도와 관련된 여하한 목적으로 본건 제품을 사용하지 않기로 동의합니다. 또한 본건 제품이 그러한 목적으로 사용되도록 고안되거나 그러한 목적으로 사용될 수 있다는 점을 라이센시가 이미 인지하거나 합리적으로 인지할 수 있는 경우, 본건 제품을 이전 또는 재판매하지 않기로 동의합니다. 본건 제품 및 모든 부속 문서는 전액 민간 비용으로 개발된 것이며, 미국 연방조달하위규정(“Federal Acquisition Regulation Subpart”) 2.101 “정의”에 명시된 바와 같이 “상업용 품목” 및 “상업용 컴퓨터 소프트웨어”에 해당합니다. 본건 제품은 미국연방법전 제5편 552조 (b)항 정보공개법(FOIA - Freedom of Information Act)(또는 해당하는 경우, 그에 준하는 미국 각 주의 주법)에 명시된 1건 이상의 면책 조건에 따라 동법에 의거한 공개 대상에서 제외됩니다. 이전에 귀사에 공급한 모든 제품은 다시 공급할 수 없습니다. 이전에 라이센시에게 공급하지 않은 모든 제품은 CA가 적절한 주문을 접수함으로써 라이센시 또는 그가 선택한 재판매업자에게 공급됩니다. 본건 제품은 전자 전송(약칭 “ESD”) 방식으로 제공해야 하며 CA 또는 CA 계열회사가 유형의 매체로 제품을 제공할 것을 요구할 경우에는 인코텀스 2010에 정의된 바와 같이 CA 또는 그러한 CA 계열회사의 선적지에서부터 CPT로 공급해야 합니다. 라이센시가 본건 제품을 조달하는 출처에 해당하는 CA 또는 CA 계열회사는 여하한 CA 하드웨어에 대한 모든 관세 및 통관에 대해 책임을 지기로 동의하며, 제품 인도 시점에 CA 또는 그러한 CA 계열회사의 선적지에서 여하한 CA 하드웨어의 권원(포함된 경우)을 운송업자에게 인도합니다. 전자 전송의 경우, 어떠한 유형의 개인 재산도 전달되지 않습니다. 그러한 전자 전송은 해당 판매세 또는 사용세에 대한 면제 혜택을 자동으로 지원하지 않을 수 있습니다. “일반” 또는 “GA”로 구분된 모든 운영 체제는 CA가 최근 발표한 사양에 따라 본건 제품을 일반적으로 사용할 수 있도록 공급할 때 그 대상에 해당하는 운영 체제들을 가리킵니다.  승인은 포기되며, 물리적 선적 시점 또는 전자 전송을 위한 키/액세스 코드의 전송 시점 중 가장 빠른 시점에 승인이 발생한 것으로 간주됩니다. CA Inc.은 본건 제품의 제조업체입니다. CA는 라이센시 및 그로부터 권한을 획득한 최종 사용자들이 본 계약의 제반 조건을 준수하는지 여부를 확인하기 위해 귀사에 통보하여 라이센시 및/또는 귀사의 계열회사 시설을 대상으로 원격 감사 혹은 현장 감사를 실시할 권리가 있습니다. CA는 귀사의 사무소에서 정규 업무 시간 중에 그러한 감사를 실시하며 귀사의 제반 활동에 불합리한 지장을 주지 않는 방향으로 그러한 감사를 실시하기 위해 노력하는 한편, 필요하다면 비공개 계약 조건에 따라 감사를 실시하기 위해 독립적인 제3자를 사용하는 데 동의합니다. 본 계약은 섭외사법의 법리에 구애받지 않고 뉴욕주의 법률에 따라 규율 및 해석되어야 하며, 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위는 뉴욕주 서포크 카운티에 위치한 연방 법원 및 주 법원의 배타적 사법권의 독점 관할 하에 있습니다. -# +# +# 3. 시험판 또는 평가판 형식으로 본건 제품의 라이센스가 허여되는 경우, 별도의 기간이 달리 명시되지 않는 경우, 라이센시는 제1조에 명시된 사용 제한에 따라 30일의 평가 기간 동안(이하 "시험기간"이라 함) 본건 제품을 평가 목적에 한하여 사용하기로 동의합니다. 시험기간 종료 시, 라이센시가 본건 제품을 사용할 수 있는 권리는 자동으로 만료되며, 라이센시는 본건 제품을 제거하고 본건 제품의 전체 또는 일부 사본을 CA로 반납하거나 또는 본건 제품의 전체 또는 일부 사본이 라이센시의 컴퓨터 라이브러리 및/또는 저장 장치에서 삭제되었으며 파기되었음을 서면으로 CA에게 입증하기로 합니다. 라이센시가 시험 사용 기간 이후에도 본건 제품을 계속 사용하고자 하는 경우, CA 또는 CA 계열회사로 연락하여 해당 수수료를 지급하고 본건 제품의 라이센스를 취득할 수 있습니다. 시험 사용 기간 중 라이센시는 본건 제품을 어떠한 보증도 없이 "있는 그대로" 사용하며, CA는 상품성 및 특정 목적에의 적합성에 대한 암묵적 보증 뿐만 아니라 본 계약의 여타 부분에 제시된 명시적 보증을 포함하여 모든 보증을 부인합니다. +# +# 4. SDK(Software Development Kit)가 본건 제품에 포함되는 경우, 본 항의 조건이 SDK의 사용에만 적용됩니다. SDK에는 소프트웨어, API 및 관련 문서가 포함될 수 있습니다. SDK는 라이센시가 대리인 자격으로, 제3자 소프트웨어 또는 하드웨어를 본건 제품과 통합시키는 소프트웨어를 개발한다거나 본건 제품과 함께 작동하는 소프트웨어를 개발하기 위해 자체 내부적으로 사용하기 위한 목적에 한하여 제공됩니다. 라이센시는 본건 제품을 내부적으로 보다 효과적으로 사용하고자 할 때에만 SDK를 사용해야 합니다. 본건 제품과 관련하여 라이센시에게 어떠한 종류의 배포 권한도 부여되지 않습니다. 하기 제8조에 명시된 제한 사항 이외에도, 라이센시는 SDK, 관련 문서, 또는 SDK의 실행 버전이 포함된 응용프로그램을 제3자에게 또는 인터넷 상으로 복제, 공개, 판매 또는 배포할 수 없으며, 상기 실행 파일을 허가된사용제한수를 초과하여 사용할 수 없습니다. 본 조항 및 본 계약에 포함된 여타 조항이 상충할 경우, SDK의 사용과 관련된 경우에만 본 조항의 조건이 우선합니다. +# +# 준거법에서 허용하는 최대 한도까지, 그리고 본 계약에 상반된 취지의 조항이 포함되어 있음에도 불구하고, SDK는 어떠한 종류의 보증도 없이 "있는 그대로" 제공되고 라이센스가 허여됩니다. +# +# 5. 주문양식에 기재되어 있거나, CA 혹은 여하한 CA 계열회사가 허가한 재판매업자와 라이센시 간 합의에 의해 지정된 수수료를 지급함으로써, 라이센시는 주문양식에 지정된 기간("계약기간") 동안 본건 제품을 사용할 권리를 갖게 되며, 이러한 권리에는 주문양식에 명시된 기간 동안 본건 제품에 대해 유지보수 서비스를 받을 수 있는 권리가 포함됩니다. 본 계약에 따라 지급해야 하는 모든 수수료는 주문 양식에 명시된 바와 같이 지급해야 하며, 명시되어 있지 않을 경우에는 CA 송장일로부터 30일 이내에 지급해야 합니다. 라이센시는 납품받은 본건 제품의 최신 릴리스를 설치해야 합니다. 최초 계약기간 이후에 본 계약에 규정된 바와 같이 본건 제품을 지속적으로 사용하거나 유지보수 서비스를 받기 위해서는, 라이센시는 주문양식에 명시된 수수료를 지급해야 합니다. 귀하가 CA가 허가한 재판매업자로부터 본건 제품의 라이센스를 취득할 경우, 대금 지급, 가격 및 할인 관련 사항은 귀하와 귀하가 선택한 CA 재판매업자 간에 체결하는 계약 조건에 의하고, 위 사항을 규율하는 본 계약의 조건은 적용되지 않습니다. 라이센시 구매 주문서에 명시할 수 있는 여하한 약정 조건(미리 인쇄된 약정 조건을 포함하며 이에 국한하지 않음)이거나 CA가 허가한 재판매업자를 대상으로 작성된 라이센시의 주문서에 수록되어 있는 약정 조건으로서 본 계약의 제반 조건과 상충하거나 차이를 보이는 여하한 약정 조건은 제품에 적용하지 않으며 효력이 없는 것으로 간주합니다. 전술 사항에도 불구하고, 서명 파일 및 보안 업데이트와 같이 컨텐츠가 지속적으로 업데이트되어야 하는 본건 제품의 경우, 라이센시는 라이센스 유효일자로부터 1년간 상기 컨텐츠 업데이트를 사용할 권리를 갖습니다. +# +# 6. CA 또는 CA 계열회사가 유지보수 서비스를 제공하는 경우, 주문양식에 기재된 바와 같이 매년 갱신되어야 합니다.  모든 수수료에는 세금이 포함되어 있지 않습니다. 라이센시는 CA 또는 (해당하는 경우) CA 계열회사로부터 청구서를 수령하는 경우 연방/주/지방세, 판매세, 사용세, 부가가치세 및 개인 재산세(CA가 납부해야 하는 면허세 및 소득세는 제외함)를 포함한, 모든 정부 기관이 부과 또는 징수하는 관세나 세금을 납부하는 것에 동의합니다. 상기 관세나 세금에 대한 면세 청구 시, CA에게 적절한 증빙 자료를 제출해야 합니다. 라이센시가 청구서에 기재된 금액을 지급일에 지급하지 않는 경우, 월 1.5% 또는 최고 법정 이자율 중 보다 낮은 이자율로 이자가 발생됩니다. +# +# 7. 라이센시는 허가된사용제한수 한도까지 주문 양식에 명시된 지역에서 본건 제품을 설치 및 배포할 수 있습니다. 라이센시는 라이센시 본인과 그 계열회사의 내부 업무를 목적으로 권한이 있는 최종 사용자들이 각자 위치한 모든 장소에서 본건 제품에 액세스하도록 허용할 수 있습니다. 단, 라이센시는 권한이 있는 최종 사용자의 계약 위반을 라이센시 본인의 계약 위반 및 책임으로 간주한다는 것에 명시적으로 동의합니다. 라이센시는 사전 서면 통지가 있을 경우에 주문 양식에 명시된 지역 내에 위치한 라이센시의 새로운 장소로 본건 제품을 재배치할 수 있습니다. 본 계약의 목적상, “권한이 있는 최종 사용자”란 라이센시와 그 계열회사 및 계열회사 직원들을 가리킬 뿐만 아니라, 본 계약에 수록된 당사자들과 똑같이 제한적인 계약 조건을 따라야 하며 제3자가 아닌 라이센시를 대리하는 독립 계약자들(단, 여하한 아웃소서, 시설 관리 제공업자 또는 애플리케이션 서비스 제공업자는 제외)도 가리킵니다. 라이센시와 관련해 “계열회사”는 라이센시가 직간접적으로 경영권을 행사하는 여하한 법인을 의미하며, “경영권”이란 법률 또는 계약 혹은 그에 준하는 약정에 의거해 어떤 법인 지분의 50%를 초과하여 소유 또는 지배하거나 그러한 법인의 이사회를 지배하는 것을 의미합니다. 라이센시가 상기 제한을 벗어나서 본건 제품을 사용하고자 하는 경우, 라이센시는 본인에게 본건 제품을 조달한 CA 또는 CA 계열회사에 그러한 사항을 통보하여야 하고, 이러한 확대 사용에 대한 청구서를 수령한 후에는 해당 요금을 지급해야 합니다. +# +# 8. 본건 제품(본 계약에 따라 라이센시에게 제공될 수 있는 소스코드나 목적 코드, 그리고 문서, 외관, 구조 및 구성 포함)은 CA 및/또는 (존재하는 경우) CA에게 라이센스를 허여한 자(이하 "CA 라이센스허여자"라 함)의 독점적 재산이며, 저작권, 특허, 상표, 영업비밀 및/또는 여타 법률에 의해 보호받을 수 있습니다. 본건 제품 자체, 또는 해당 SDK의 사본, 수정본, 번역본, 부분 사본, 컴파일본, 파생본이나 병합 부분에 대한 소유권은 언제나 CA 및/또는 CA 라이센스허여자에게 귀속됩니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 본건 제품은 단일 제품으로서 라이센스가 허여됩니다. 본건 제품의 구성부품은 분리하여 사용할 수 없습니다. 라이센시 및 그로부터 권한을 획득한 최종 사용자들은 본건 제품 및 본 라이센스의 조건을 철저하게 기밀로 유지해야 하며, 본건 제품이 무단 공개 또는 사용되지 않도록 최선의 노력을 다해야 합니다. 라이센시는 (i) 준거법에서 명시적으로 달리 금지하는 경우를 제외하고는, 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 리버스 엔지니어링할 수 없으며, (ii) 본건 제품을 기반으로 파생물을 생성할 수 없고, (iii) 시설 관리, 아웃소싱, 서비스 부서, 호스트 서비스, 클라우드 서비스, 주문형 서비스 또는 유사 업무를 목적으로 라이센시가 그러한 목적에 따른 사용을 허가하는 CA 라이센스 없이 제3자의 이익을 위해 본건 제품을 운영 또는 사용할 수 없으며, (iv) CA가 사전에 서면 허가를 하지 않는 한, 제3자에게 본건 제품의 사용을 허용할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이 본건 제품의 벤치마크 테스트 결과를 제3자에게 공개할 수 없습니다. 라이센시는 CA의 사전 서면 동의 없이는 제품의 일부 또는 전부를 양도, 이전, 대여, 임대차, 복사 또는 수정할 수 없으며, 타인에게 상기 행위를 하도록 허용할 수도 없으나, 단, 전술한 제한사항이 준거법에 따라 명시적으로 금지되는 경우는 예외로 합니다. 라이센시는 CA 또는 CA 라이센스허여자의 소유권 표시를 제거할 수 없습니다. 라이센시는 재해 복구 “콜드 스탠바이”, 백업 및 아카이빙을 목적으로 본건 제품의 사본을 적정한 수만큼 만들 수 있습니다. 단, 그러한 사본은 라이센시의 재해 복구 절차 및 효과를 테스트할 경우에 한해 사용해야 하며, 라이센시가 본건 제품을 운영할 수 없는 실제 재해가 발생한 이후의 여하한 적정 기간 동안 필요할 경우에 한해 사용해야 합니다. 어떤 이유로든 본 라이센스가 해지되는 경우, 라이센시는 본건 제품의 전체 및 일부 사본이 모든 컴퓨터와 저장 장치에서 삭제되었으며 CA로 반납 또는 파기되어 더 이상 사용되지 않음을 서면으로 CA에 입증해야 합니다. 라이센시는 본건 제품이 수출관리규정(15 CFR 730-774)을 포함해 유럽법 및 미국법에 따른 규제 대상에 포함된다는 점을 인지하며, 모든 해당 수출입 관련 법규를 준수하기로 동의합니다. 라이센시는 미국법을 위반하여 본건 제품을 수출, 재수출 또는 이전하지 않을 것이며 화학 무기, 생물학 무기 또는 핵무기나 그러한 성격의 미사일 용도와 관련된 여하한 목적으로 본건 제품을 사용하지 않기로 동의합니다. 또한 본건 제품이 그러한 목적으로 사용되도록 고안되거나 그러한 목적으로 사용될 수 있다는 점을 라이센시가 이미 인지하거나 합리적으로 인지할 수 있는 경우, 본건 제품을 이전 또는 재판매하지 않기로 동의합니다. 본건 제품 및 모든 부속 문서는 전액 민간 비용으로 개발된 것이며, 미국 연방조달하위규정(“Federal Acquisition Regulation Subpart”) 2.101 “정의”에 명시된 바와 같이 “상업용 품목” 및 “상업용 컴퓨터 소프트웨어”에 해당합니다. 본건 제품은 미국연방법전 제5편 552조 (b)항 정보공개법(FOIA - Freedom of Information Act)(또는 해당하는 경우, 그에 준하는 미국 각 주의 주법)에 명시된 1건 이상의 면책 조건에 따라 동법에 의거한 공개 대상에서 제외됩니다. 이전에 귀사에 공급한 모든 제품은 다시 공급할 수 없습니다. 이전에 라이센시에게 공급하지 않은 모든 제품은 CA가 적절한 주문을 접수함으로써 라이센시 또는 그가 선택한 재판매업자에게 공급됩니다. 본건 제품은 전자 전송(약칭 “ESD”) 방식으로 제공해야 하며 CA 또는 CA 계열회사가 유형의 매체로 제품을 제공할 것을 요구할 경우에는 인코텀스 2010에 정의된 바와 같이 CA 또는 그러한 CA 계열회사의 선적지에서부터 CPT로 공급해야 합니다. 라이센시가 본건 제품을 조달하는 출처에 해당하는 CA 또는 CA 계열회사는 여하한 CA 하드웨어에 대한 모든 관세 및 통관에 대해 책임을 지기로 동의하며, 제품 인도 시점에 CA 또는 그러한 CA 계열회사의 선적지에서 여하한 CA 하드웨어의 권원(포함된 경우)을 운송업자에게 인도합니다. 전자 전송의 경우, 어떠한 유형의 개인 재산도 전달되지 않습니다. 그러한 전자 전송은 해당 판매세 또는 사용세에 대한 면제 혜택을 자동으로 지원하지 않을 수 있습니다. “일반” 또는 “GA”로 구분된 모든 운영 체제는 CA가 최근 발표한 사양에 따라 본건 제품을 일반적으로 사용할 수 있도록 공급할 때 그 대상에 해당하는 운영 체제들을 가리킵니다.  승인은 포기되며, 물리적 선적 시점 또는 전자 전송을 위한 키/액세스 코드의 전송 시점 중 가장 빠른 시점에 승인이 발생한 것으로 간주됩니다. CA Inc.은 본건 제품의 제조업체입니다. CA는 라이센시 및 그로부터 권한을 획득한 최종 사용자들이 본 계약의 제반 조건을 준수하는지 여부를 확인하기 위해 귀사에 통보하여 라이센시 및/또는 귀사의 계열회사 시설을 대상으로 원격 감사 혹은 현장 감사를 실시할 권리가 있습니다. CA는 귀사의 사무소에서 정규 업무 시간 중에 그러한 감사를 실시하며 귀사의 제반 활동에 불합리한 지장을 주지 않는 방향으로 그러한 감사를 실시하기 위해 노력하는 한편, 필요하다면 비공개 계약 조건에 따라 감사를 실시하기 위해 독립적인 제3자를 사용하는 데 동의합니다. 본 계약은 섭외사법의 법리에 구애받지 않고 뉴욕주의 법률에 따라 규율 및 해석되어야 하며, 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위는 뉴욕주 서포크 카운티에 위치한 연방 법원 및 주 법원의 배타적 사법권의 독점 관할 하에 있습니다. +# # 9. CA는 CA가 본 계약을 체결할 수 있다는 점, CA가 라이센시에 대한 손해를 배상하거나, 또는 CA가 상기 행위를 수행할 권한이 없다는 내용으로 제3자가 제기한 청구 또는 라이센시가 본 계약에서 허가된 바대로 본건 제품을 사용하는 것은 라이센시의 재판 관할 내에 본건 제품이 제공되는 순간 여하한 미국 특허권 또는 저작권을 침해하는 것이라는 취지로 제3자가 제기한 청구를 CA의 선택에 따라 해결할 것이라는 점을 보증합니다. 또한 CA는 라이센시에게 본건 제품을 인도한 날로부터 90일 동안 해당 문서 자료에 명시된 공개 사양에 따라 CA가 배포한 제품이 실질적으로 작동함을 보증합니다. 단, CA는 업계 표준에 따라 여하한 하자를 치유하기 위해 충분히 노력해야 할 책임만을 이행합니다. 상기 보증의 불이행 내용에 대한 라이센시의 서면 통보를 접수한 후 합당한 기간 내에 CA가 본건 제품을 (a) 제3자에 대한 지적 재산권 침해 없이 작동하도록 할 수 없거나 (b) 실질적으로 CA의 서면 사양에 부합하게 작동하도록 할 수 없는 경우 CA는 라이센스를 해지하고 라이센시 또는 허가된 CA 재판매업자에게 라이센스 수수료 또는 이미 지급한 지원 및 유지보수 수수료의 비례 환급금을 제공하거나 예정할 수 있습니다. 그러한 라이센스 해지의 경우, 비례 환급금의 액수는 (i) 해당 주문 양식의 계약기간 중 남은 개월의 수로 계산하거나 혹은 (ii) 본건 제품이 영구적인 라이센스 계약으로 허여된 경우에는 (오로지 환급금 계산을 목적으로) 3년의 상각표를 사용해 계산합니다. 본 조에 명시된 보증은 본건 제품의 베타 버전, 시험 버전, 평가 버전 또는 데모 버전에 적용되지 않으며 SDK에도 적용되지 않습니다. CA는 다음에 열거한 각 경우에서 보증 청구를 배상하거나 구제해야 할 책임이 없습니다. (i) CA가 본건 제품을 개조하는 경우가 아닌 한, 본건 제품을 개조함으로써 침해 또는 보증 청구에 대한 소송이 제기될 경우, (ii) CA의 사양, 관련 문서 및 지침에 따라 본건 제품을 사용하지 않을 경우, (iii) CA가 발표한 업데이트 또는 패치를 사용했더라면 침해 혐의 또는 보증 청구를 피하거나 다른 식으로 그러한 청구를 해소할 수 있었던 경우, (iv) 여하한 타사 제품과 함께 본건 제품을 혼용한 결과로서 침해 혐의 또는 보증 청구가 제기될 경우 혹은 (v) 본건 제품에 대해 지불해야 할 해당 수수료를 지불하지 않았거나 라이센시가 다른 식으로 본 계약을 위반할 경우. 라이센시의 구체적인 지시에 의해 CA가 제작한 제품과 관련하여 본 계약에 포함된 면책 요건들은 적용되지 않으며 CA는 이와 관련해 책임을 지지 않습니다. 전술한 조항들은 침해 청구에 관한 CA의 전적인 책임과 의무를 명시하고 있을 뿐만 아니라, 여하한 지적 재산권 또는 기타 소유권에 대한 실질적 침해 내지 침해 혐의 또는 오용과 관련해 라이센시에게 제공할 수 있는 유일한 구제 수단을 명시하고 있습니다. -# -# 10. 상기 명시된 사항을 제외하고, 준거법에서 허용하는 최대 한도까지 -# -# (I) CA는 상품성 또는 특정 목적에 대한 적합성에 관한 암묵적 보증을 포함하여, 여타 모든 명시적 또는 암묵적 보증을 제공하지 않습니다. +# +# 10. 상기 명시된 사항을 제외하고, 준거법에서 허용하는 최대 한도까지 +# +# (I) CA는 상품성 또는 특정 목적에 대한 적합성에 관한 암묵적 보증을 포함하여, 여타 모든 명시적 또는 암묵적 보증을 제공하지 않습니다. # (II) 어떠한 경우에도 CA는 본건 제품의 사용, 운영 또는 변경으로 인하여 발생될 수 있는 시간 및 영업권의 손실, 여타 결과적 또는 간접적 손해를 포함한 모든 손실로 인해 제기된 청구와 관련하여, 라이센시나 여타 당사자에 대해 아무런 책임을 지지 않으며, 동 조항은 CA가 상기 손실의 발생 가능성에 대해 사전에 통보받았다 하더라도 적용됩니다. 상기 책임 한계 조항이 준거법에 따라 무효임이 입증되는 경우, 해당 청구 내용에 대한 CA의 책임은 라이센시가 본건 제품에 대해 실제 지급한 라이센스 수수료 금액으로 제한됩니다. 대리인, 유통업체 또는 CA가 허가한 재판매업자를 포함한 어떠한 제3자도 상기 보증 내용 중 어떤 부분도 수정한다거나 CA를 대신하여 추가 보증을 제공할 권한이 없습니다. CA는 본건 제품이 라이센시의 요구사항을 충족한다거나, 중단 또는 오류 없이 작동한다는 것을 보증하지 않습니다. -# -# 11. 라이센시는 라이센스 이전과 관련된 CA의 당시 적용되는 정책을 준수하는 경우에 한하여 본 계약을 이전할 수 있으며, 동 정책에는 본건 제품의 사용 범위가 라이센시 자신의 사업 범위, 그리고 라이센스가 과반수 이상의 지분을 보유하고 있는 자회사의 사업 범위를 벗어나지 않아야 한다는 취지의 요구사항이 포함되어 있습니다. -# +# +# 11. 라이센시는 라이센스 이전과 관련된 CA의 당시 적용되는 정책을 준수하는 경우에 한하여 본 계약을 이전할 수 있으며, 동 정책에는 본건 제품의 사용 범위가 라이센시 자신의 사업 범위, 그리고 라이센스가 과반수 이상의 지분을 보유하고 있는 자회사의 사업 범위를 벗어나지 않아야 한다는 취지의 요구사항이 포함되어 있습니다. +# # 12. 라이센시가 본 계약의 여하한 조건을 위반하거나, 파산하거나, 파산 또는 재산관리 절차를 개시하거나, 동 절차가 라이센시를 상대로 제기되는 경우, CA는 본 계약에 따른 CA의 의무 이행을 보류 및/또는 본 계약을 즉시 해지할 수 있는 권리가 있으며, CA가 보유하는 여타 모든 권리에 추가하여 본 계약에 따라 지급되어야 하는 모든 금액은 라이센시에게 본건 제품을 조달한 CA 또는 CA 계열회사에 즉시 지급되어야 합니다. -# +# # 13. 라이센시가 해당 유지보수 수수료를 지급하지 못한 경우, 라이센시는 유지보수 수수료가 지급되지 않은 연도에 대해 CA가 당시 지정한 유지보수 수수료의 150%에 해당하는 수수료를 CA 또는 해당 CA 계열회사에 지급한 후에만 유지보수 서비스를 재개할 수 있습니다. -# +# # 14. 법원이 본 계약의 특정 조항이 불법, 무효 또는 집행 불가하다고 판시하는 경우, 나머지 조항들은 완전한 효력을 유지합니다. 일방 당사자가 본 계약의 특정 조항을 위반할 경우 상대방 당사자가 동 위반에 대해 상기 일방 당사자에 대해 행사할 수 있는 권리를 포기한다고 하여, 상기 위반 당사자가 여타 조항을 위반할 경우에 상기 상대방 당사자가 행사할 수 있는 권리를 포기하는 것으로 해석할 수는 없으며, 권리 포기는 포기 당사자의 수권 대표가 서면으로 체결한 경우에만 유효합니다. 본 계약에 관한 모든 질의사항은 CA, Inc., One CA Plaza, Islandia, NY 11749(참조: 전세계 법무부서)로 문의하여야 합니다. -# +# # 15. 라이센시가 미합중국이외의 지역에서 본건 제품에 대한 라이센스를 취득하는 경우, 본건 제품의 사용과 관련하여 하기 조항들이 적용됩니다. -# -# 제8조의 마지막 문장에 명시된 조건에도 불구하고 하기에 달리 규정된 경우를 제외하면 라이센시가 본건 제품의 라이센스를 취득한 국가의 법률이 본 계약을 규율합니다. -# +# +# 제8조의 마지막 문장에 명시된 조건에도 불구하고 하기에 달리 규정된 경우를 제외하면 라이센시가 본건 제품의 라이센스를 취득한 국가의 법률이 본 계약을 규율합니다. +# # 유럽, 중동 및 아프리카 -# +# # 1. CA Europe Sàrl(“CA Europe”)은 EMEA 지역의 CA 법인이자 라이센스허여자입니다. CA Europe Sàrl은 CA Europe Sàrl와 EMEA 지역 내 현지 CA 자회사 또는 CA가 허가한 재판매업자와의 라이센스 계약을 통해 라이센시에게 본건 제품을 제공하는 라이센스허여자입니다. CA의 지원 및 유지 보수는 현지 CA 자회사 또는 CA가 허가한 재판매업자가 제공합니다. -# +# # 2. EMEA는 유럽, 중동 및 아프리카를 가리킵니다. -# +# # 3. 제 9조의 세 번째 문장 및 다섯 번째 문장은 서드파티 권한 침해에만 적용됩니다. 제9조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. # “CA Europe은 또 라이센시가 본 계약의 제반 조건을 항시 준수하는 것을 전제로 하여 본건 제품이 본건 제품의 문서 자료에 명시된 해당 사양에 실질적으로 부합하게 작동함을 보증합니다. CA Europe이 이러한 보증을 위반한 경우, 라이센시의 구제는 CA Europe이 담당하며 라이센시와의 협의 하에 (i) 업계 표준에 부합하는 충분한 노력을 통해 해당 결함을 수정하거나 혹은 (ii) 해당 문서 자료의 요건을 실질적으로 준수하는 제품으로 본건 제품을 교체합니다. 해당 결함을 합당한 기간 내에 수정할 수 없거나 혹은 해당 결함의 교정 내지 교체 작업이 최종적으로 실패한 경우, 라이센시는 (i) 구독 라이센스의 경우, 합의된 수수료의 액수를 적정하게 삭감할 권리가 있으며 이와 함께 또는 별개로 법적 요건들을 충족할 경우, 그 사유에 근거해 라이센스 계약을 즉시 해지할 수 있는 권리가 있습니다. 그리고 (ii) 영구적 라이센스의 경우, 본인의 선택에 따라 (1) 해당 거래 문서에서 합의한 수수료를 폐지하거나 삭감할 권리가 있으며 (2) 손해 배상을 청구하거나 혹은 낭비한 지출에 대한 배상을 청구할 권리가 있습니다. 손해 배상 또는 낭비한 지출에 대한 배상을 청구할 권리는 하기의 제10조에 명시된 책임의 제한 요건을 따라야 합니다. 영구적 라이센스의 경우, 본 계약서에 명시된 보증 청구는 본건 제품을 인도한 날로부터 90일 이내에 제기해야 합니다. 보증 구제 수단은 (i) 불만으로 제기된 여하한 오류 또는 결함을 CA Europe이 충분히 재현할 수 있다는 점, (ii) 본건 제품은 개조되지 않았으며 해당 문서 자료에 따라 사용 중이라는 점 그리고 (iii) 해당 위반 사항에 대한 책임의 전부 또는 일부가 CA 외 타사 제품 또는 서비스에 있지 않다는 점을 전제로 하여 조건부로 제공됩니다. 상기의 보증 사항들은 CA Europe에서 제공하는 유일한 보증 사항입니다. CA Europe 또는 그 공급업체들은 만족스러운 품질, 불침해 또는 적합성에 대한 암묵적 보증 및/혹은 특정 목적에 대한 적합성 보증을 포함해(이에 국한하지 않음) 본건 제품에 오류가 없다는 점 등을 명시적 또는 묵시적으로 보증하는 그 밖의 보증 사항을 제시하지 않습니다. 라이센시가 본 보증 조항에 의거해 청구할 경우, 라이센시는 그 밖의 여하한 CA 계열회사로부터 동일한 보증 구제를 청구할 자격 내지 권한이 없습니다.” -# +# # 4. 제10조는 삭제되고 다음으로 대체됩니다. -# -# “10.1 CA Europe의 중과실 또는 고의적인 의무 불이행으로 인해, 또는 CA Europe에 의해 CA Europe의 계약 의무를 이행하게 된 CA Europe의 법정 대리인 내지 개인의 중과실 또는 고의적인 의무 불이행으로 인해 인명 피해, 신체적 상해 또는 건강 악화 및 그 밖의 손해가 발생할 경우 그리고 제조물책임법(“Produktehaftpflichtgesetz”)에 의거한 책임 문제가 발생할 경우, CA Europe은 책임 근거에 관계없이 무한 책임을 집니다. +# +# “10.1 CA Europe의 중과실 또는 고의적인 의무 불이행으로 인해, 또는 CA Europe에 의해 CA Europe의 계약 의무를 이행하게 된 CA Europe의 법정 대리인 내지 개인의 중과실 또는 고의적인 의무 불이행으로 인해 인명 피해, 신체적 상해 또는 건강 악화 및 그 밖의 손해가 발생할 경우 그리고 제조물책임법(“Produktehaftpflichtgesetz”)에 의거한 책임 문제가 발생할 경우, CA Europe은 책임 근거에 관계없이 무한 책임을 집니다. # 10.2 경미한 과실의 경우, CA Europe은 본 계약의 이행을 위해 필수적으로 요구되며 계약 상대방이 통상적으로 이행할 수 있다고 신뢰하는 어떤 의무를 위반할 경우에 한하여 책임 사유에 관계없이 책임을 집니다. 이 경우, CA Europe은 예측이 가능하면서 본 계약과 관련해 통상적으로 발생할 수 있는 라이센시의 제반 손해에 한해 책임을 집니다. # 10.3 상기의 요건 외에도 라이센시가 입은 간접 손해, 특별 손해 또는 부수적 손해(수익 손실, 업무 손실, 기회 손실 또는 영업권 손실을 포함하며 이에 국한하지 않음)에 대한 CA Europe의 책임은 예측이 가능하며 본 계약과 관련해 통상적으로 발생할 수 있는 손해로 제한됩니다. -# 10.4 계약 쌍방은 상기 제10조 2항 및 제10조 3항의 취지 내에서 본 계약에 따라 허여된 라이센스와 관련해 통상적으로 발생할 수 있는 예측 가능한 손해액의 범위는 라이센시가 본건 제품을 조달한 당시의 최초 계약기간 또는 갱신 계약기간 동안 이미 지불했거나 미불 상태에 있는 수수료의 최대 액수를 한도로 한다는 점에 합의합니다. -# 10.5 정기적이고 적절한 데이터 백업이 수행되는 경우, 데이터 손실에 대한 책임은 통상적인 복구 노력의 범위로 제한됩니다. +# 10.4 계약 쌍방은 상기 제10조 2항 및 제10조 3항의 취지 내에서 본 계약에 따라 허여된 라이센스와 관련해 통상적으로 발생할 수 있는 예측 가능한 손해액의 범위는 라이센시가 본건 제품을 조달한 당시의 최초 계약기간 또는 갱신 계약기간 동안 이미 지불했거나 미불 상태에 있는 수수료의 최대 액수를 한도로 한다는 점에 합의합니다. +# 10.5 정기적이고 적절한 데이터 백업이 수행되는 경우, 데이터 손실에 대한 책임은 통상적인 복구 노력의 범위로 제한됩니다. # 10.6 본 계약에 명시된 구제 수단들은 계약 쌍방의 유일한 구제 수단에 속합니다.” -# +# # 5. 본 계약에 다음 조항들이 추가되었습니다. -# +# # “불가항력. 대금 지급 의무와 비공개에 관한 의무를 제외하고, 본 계약에 여하한 상반된 조항이 명시되어 있더라도 전쟁, 폭동, 천재지변, 파업 또는 그 외 동맹 파업(근로자 일부 내지 전원), 정부 또는 정부 기관(여하한 법원 또는 재판소를 포함)의 여하한 법률, 조례, 규칙 또는 명령을 포함해(이에 국한하지 않음) 계약 일방이 통제할 수 없는 불가항력적 원인으로 인해 여하한 조치를 취하거나 혹은 반드시 취해야 할 조치를 취하지 않은 경우 계약 쌍방은 그러한 취한 조치 혹은 취하지 않은 조치에 대해 책임을 지지 않습니다.” -# +# # “라이센시 데이터. 라이센시가 여하한 제품상의 요구 사항에 기하여 CA Europe에 여하한 개인 데이터를 전송할 경우, 라이센시는 (i) CA Europe에 개인 데이터를 제공할 적법한 권한이 본인에게 있을 뿐만 아니라 관련 법률을 준수하여 개인 데이터를 합법적으로 제공하고 있으며 (ii) CA Europe 및 CA 그룹사 내 여하한 법인(각각 “CA 법인”이라 한다) 또는 그 하도급자들이 의무를 이행할 목적에서 그러한 개인 데이터를 처리할 수 있고 (iii) CA Europe은 이러한 목적을 위해 여하한 CA 법인 및 그 하도급자들에게 그러한 데이터를 공개할 수 있으며 그러한 데이터를 발생 국가 밖의 나라로 전송할 수 있다는 점을 진술합니다. CA, Inc은 안전피난처(Safe Harbour) 인증을 받았으며 CA 법인은 관련 데이터 보호/개인정보 규정을 준수합니다.” -# +# # 6. 본 계약의 해석 및 적용 범위에 관한 준거법은 스위스법(제반 법률 조항의 상충은 제외)으로 합니다. 계약 쌍방은 본 계약에 의거해 발생하거나 본 계약과 관련해 발생하는 모든 행위가 스위스 취리히에 위치한 스위스 법원의 배타적 사법권의 독점 관할 하에 있음에 동의합니다. 국제물품매매계약에 관한 유엔 협약은 본 계약에 적용되지 않습니다. -# +# # 7. EMEA 지역에서 본 계약에 관한 모든 질의사항은 CA Europe Sàrl 사무소 소재지인 Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland(참조: 전세계 법무부서)로 문의하시기 바랍니다. -# +# # 아르헨티나 # 라이센스허여자에 해당하는 CA 자회사는 CA de Argentina S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 아르헨티나 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales de la Cuidad de Buenos Aires에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Argentina S.A, Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires(참조: 재무부서)로 문의하시기 바랍니다. -# -# 호주 -# 라이센스허여자에 해당하는 CA 자회사는 CA (Pacific) Pty. Ltd.입니다 (ABN 20 001 146 345). -# +# +# 호주 +# 라이센스허여자에 해당하는 CA 자회사는 CA (Pacific) Pty. Ltd.입니다 (ABN 20 001 146 345). +# # 제2조, 제3조 및 제10조의 마지막에 다음 내용이 추가됩니다. -# CA는 보증이 없다고 명시하고 있으나, 라이센시는 2010년 경쟁및소비자법과 여타 주/지방법에 따라 특정 권리(배제될 수는 없으나 제한은 가능함)를 보유할 수 있습니다.  법률에서 허용하는 최대 한도까지, CA는 본 계약의 명시적 조건에 명시적으로 기재되지 않은 모든 조건을 배제하며, 2010년 경쟁및소비자법과 여타 주/지방법에 의해 부과되는 조건을 해당 법률에서 허용하는 최대 한도까지 제한합니다. -# +# CA는 보증이 없다고 명시하고 있으나, 라이센시는 2010년 경쟁및소비자법과 여타 주/지방법에 따라 특정 권리(배제될 수는 없으나 제한은 가능함)를 보유할 수 있습니다.  법률에서 허용하는 최대 한도까지, CA는 본 계약의 명시적 조건에 명시적으로 기재되지 않은 모든 조건을 배제하며, 2010년 경쟁및소비자법과 여타 주/지방법에 의해 부과되는 조건을 해당 법률에서 허용하는 최대 한도까지 제한합니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 거래가 이행된 주 또는 지역의 법률이 본 계약을 규율합니다. -# +# # 제10조에 다음 내용이 추가됩니다. # CA가 2010년 경쟁및소비자법 또는 여타 주/지방법에서 부과한 조건 또는 보증을 위반하는 경우, CA의 책임은 상품에 대해서는 상품의 수리나 교체, 또는 상품 수리나 교체에 소요되는 비용으로 제한되며, 서비스에 대해서는 서비스를 다시 제공하거나, 서비스를 다시 제공하는 데 소요되는 비용으로 제한되고, 실제로 상품을 수리/교체하거나 서비스를 제공할 것인지, 아니면 이에 상응하는 비용을 부담할 것인지는 CA가 선택할 수 있습니다. 상품과 관련하여 상기 조건이나 보증이 판매권, 평온 점유 또는 완전한 소유권과 관련되거나, CA가 제공하는 상품이 개인, 국내 또는 가정용 또는 소비를 목적으로 정상적으로 취득된 경우에는 본 조항의 제한 사항이 적용되지 않습니다. -# -# 브라질 +# +# 브라질 # 라이센스허여자에 해당하는 CA 자회사는 CA Programas de Computador, Participaçðes e Serviços Ltda.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 브라질의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 São Paulo City Hall의 법원에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Programas de Computador, Participaçðes e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000(참조: 전세계 법무부서)으로 문의하시기 바랍니다. -# -# 캐나다 +# +# 캐나다 # 라이센스허여자에 해당하는 CA 자회사는 CA Canada Company입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 온타리오 주의 법률이 본 계약을 규율합니다. -# -# 칠레 +# +# 칠레 # 라이센스허여자에 해당하는 CA 자회사는 CA de Chile, S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 칠레의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Santiago에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Chile, S.A, Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago(참조: 재무부서)로 문의하시기 바랍니다. -# -# 중국 -# 라이센스허여자에 해당하는 CA 자회사는 CA (China) Co., Ltd.입니다. -# +# +# 중국 +# 라이센스허여자에 해당하는 CA 자회사는 CA (China) Co., Ltd.입니다. +# # 제6조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. -# 모든 수수료는 부가가치세가 포함된 금액입니다. -# +# 모든 수수료는 부가가치세가 포함된 금액입니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고 중화인민공화국의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 베이징에 소재한 관할법원에서 해결해야 합니다. -# +# # 콜롬비아 # 라이센스허여자에 해당하는 CA 자회사는 CA Software de Colombia S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 콜롬비아의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Bogotá에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Software de Colombia S.A, Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia(참조: 재무부서)로 문의하시기 바랍니다. -# +# # 홍콩 # 라이센스허여자에 해당하는 CA 자회사는 CA (Hong Kong) Limited이며, 이 회사의 본사 주소는 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 홍콩의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 홍콩 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제10조의 마지막에 다음 내용이 추가됩니다. 상기 책임 제한 및 최대 채무액은 물품매매 법령, 서비스 제공(묵시조항) 법령 또는 면세 관리 조항 관련 법령에 따른 라이센시의 법정 권리에 영향을 미치지 않으며, 전적으로 CA측 과실로 인해 야기된 사망이나 신체 상해에 대해 부담해야 하는 채무를 제한하거나 배제하지도 않습니다. -# +# # 인도 # 라이센스허여자에 해당하는 CA 자회사는 CA (India) Technologies Private Limited.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약 및 본 계약의 조건은 인도의 법률에 따라 규율 및 해석되어야 하며, 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 뭄바이 법원이 단독으로 전적인 관할권을 갖습니다. 전자적 방식으로 제품이 공급될 경우, CA는 앞서 언급한 본건 제품이 인도 이외의 국가에 위치한 서버에서 다운로드될 수 있도록 제공하여야 합니다. -# +# # 인도네시아(싱가포르를 참조할 것) -# +# # 일본 # 라이센스허여자에 해당하는 CA 자회사는 CA Japan, Ltd.입니다. -# +# # 제6조의 세 번째 문장은 삭제되고 다음으로 대체됩니다. -# 라이센시는 CA로부터 청구서를 수령하는 경우, 모든 정부 기관이 부과 또는 징수한 관세나 세금(CA가 납부해야 하는 세금은 예외)을 납부하기도 동의합니다. -# +# 라이센시는 CA로부터 청구서를 수령하는 경우, 모든 정부 기관이 부과 또는 징수한 관세나 세금(CA가 납부해야 하는 세금은 예외)을 납부하기도 동의합니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고, 일본의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 일본 도쿄에 소재한 도쿄지방법원에서 최종 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Japan, Ltd., 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan(참조: 전세계 법무부서)으로 문의하시기 바랍니다. -# +# # 대한민국 # 라이센스허여자에 해당하는 CA 자회사는 CA Korea Inc., Ltd.입니다. -# -# 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. +# +# 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 섭외사법의 법리에 구애받지 않고, 대한민국의 법률에 따라 규율 및 해석되어야 합니다. -# -# 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. +# +# 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 대한민국 서울특별시 강남구 삼성동 159-9, 도심공항타워 22층(우편번호: 135-973), 한국 CA Inc.(주)(참조: 전세계 법무부서)로 문의해야 합니다. -# +# # 말레이시아 # 라이센스허여자에 해당하는 CA 자회사는 CA (Malaysia) Sdn. Bhd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 말레이시아의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 말레이시아 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제10조에 다음 내용이 추가됩니다. # CA가 어떠한 여타 보증도 제공하지 않는다고 명시하고 있으나, 라이센시는 1999년 소비자보호법에 따라 특정 권리를 가지며, 해당 법률에서 허용하는 범위 내에서만 보증이 제한됩니다. -# -# 멕시코 +# +# 멕시코 # 라이센스허여자에 해당하는 CA 자회사는 CA Software de México S.A. de C.V.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 멕시코의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales de la Cuidad de México에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA Software de México S.A. de C.V, Av. Miguel de Cervantes Saavedra 193, Suite 502, Col. Granada, Mexico City, MX 11500(참조: 재무부서)으로 문의하시기 바랍니다. -# +# # 뉴질랜드: # 라이센스허여자에 해당하는 CA 자회사는 CA Pacific (NZ) Ltd.입니다. -# +# # 제6조의 마지막 문장에도 불구하고, 라이센시가 지급하지 않은 청구서 금액에 대해 발생하는 이자율은 월 1.5%입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. -# 본 계약은 뉴질랜드의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생되는 분쟁과 관련하여 뉴질랜드 법원이 단독으로 전적인 관할권을 갖습니다. -# +# 본 계약은 뉴질랜드의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생되는 분쟁과 관련하여 뉴질랜드 법원이 단독으로 전적인 관할권을 갖습니다. +# # 제10조에 다음 내용이 추가됩니다. # CA는 보증이 없다고 명시하고 있으나, 라이센시는 1993년 소비자보장법 또는 여타 법률에 따라 특정 권리(배제 또는 제한될 수 없음)를 보유할 수 있습니다. 1993년 소비자보장법은 라이센시가 동 법에 정의된 바와 같이 사업 목적으로 물품 및 서비스를 취득하는 경우, CA가 제공하는 물품이나 서비스에 관련하여서는 적용되지 않습니다. 본건 제품을 1993년 소비자보장법에 정의된 바와 같이 사업 목적 상 취득한 경우가 아니면, 본 조에 명시된 제한사항은 동 법에 명시된 제한사항의 적용을 받습니다. -# +# # 제12조에 다음 내용이 추가됩니다. # 본 조항에 따른 CA의 권리는 라이센시의 청산 또는 해산을 목적으로 한 결의가 통과되거나 소송절차가 개시되는 경우에도 적용됩니다. -# +# # 페루 # 라이센스허여자에 해당하는 CA 자회사는 CA de Peru S.A.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 페루의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de La Cuidad de Lima가 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 CA de Peru S.A, Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru(참조: 재무부서)로 문의하시기 바랍니다. -# +# # 필리핀 # 라이센스허여자에 해당하는 CA 자회사는 Philippine Computer Associates International Inc.입니다. -# +# # 제8조의 처음 8개 문장들은 삭제되고 다음으로 대체됩니다. # 본 제품 및 본 제품의 변경본에 대한 소유권은 CA에게 귀속됩니다. 본건 제품은 CA 또는 CA 라이센스허여자의 영업비밀이며 독점적 재산입니다. 라이센시는 CA가 여하한 CA 사업 목적을 위하여 본건 제품과 관련하여 라이센시가 제공한 모든 의견(그러한 의견을 기반으로 한 파생물을 복제 및 작성하고 그러한 파생물을 배포하는 것을 포함)을 여하한 동의를 구하지 않고 사용할 수 있다는 것에 동의합니다. 본건 제품에 대한 사용권은 여타 CA 제품과 교환될 수 없습니다. 라이센시 및 그 직원들은 본건 제품 및 본 계약의 조건을 철저하게 기밀로 유지해야 합니다. 준거법에서 허용하는 최대 범위까지, 라이센스도입자는 본건 제품을 공개, 디컴파일(de-compile), 해체(disassemble) 및 달리 리버스 엔지니어링할 수 없습니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. -# 본 계약은 필리핀의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 마카티시티 법원이 단독으로 전적인 관할권을 갖습니다. -# +# 본 계약은 필리핀의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 마카티시티 법원이 단독으로 전적인 관할권을 갖습니다. +# # 제12조는 삭제되고 다음으로 대체됩니다. # 라이센시가 본 계약의 특정 조건을 위반하거나, 파산하거나, 파산 또는 재산관리 절차를 개시하거나, 동 절차가 라이센시를 상대로 제기되는 경우, CA는 통지를 수령하는 즉시, 본 계약에 따른 자신의 의무 이행을 보류 및/또는 본 계약을 해지할 수 있는 권리가 있으며, CA가 보유하는 여타 모든 권리에 추가하여, 본 계약에 따라 지급되어야 하는 모든 금액은 CA에게 즉시 지급되어야 합니다. -# -# 싱가포르 +# +# 싱가포르 # 라이센스허여자에 해당하는 CA 자회사는 CA (Singapore) Pte. Ltd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 싱가포르의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 싱가포르 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 제9조의 마지막에 다음 내용이 추가됩니다. -# 준거법에서 허용되는 최대 범위까지, CA는 품질의 만족성 또는 특정 목적에의 적합성에 관한 모든 암묵적인 조건이나 보증을 부인합니다. -# +# 준거법에서 허용되는 최대 범위까지, CA는 품질의 만족성 또는 특정 목적에의 적합성에 관한 모든 암묵적인 조건이나 보증을 부인합니다. +# # 대만 # 라이센스허여자에 해당하는 CA 자회사는 CA (Taiwan) Ltd.이며, 이 회사의 등록사무소 주소는 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan입니다. -# +# # 제6조의 두 번째 문장은 삭제되고 다음으로 대체됩니다. -# 모든 수수료는 부가가치세가 제외된 금액입니다. -# +# 모든 수수료는 부가가치세가 제외된 금액입니다. +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 관할 법률 선택에 관한 조항에도 불구하고 대만의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 타이페이지방법원에서 해결해야 합니다. -# +# # 태국 # 라이센스허여자에 해당하는 CA 자회사는 CA (Thailand) Co., Ltd.입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 태국의 법률에 따라 규율 및 해석되어야 합니다. 본 계약으로 인해 발생하는 모든 분쟁과 관련하여 태국 법원이 단독으로 전적인 관할권을 갖습니다. -# +# # 베네수엘라 # 라이센스허여자에 해당하는 CA 자회사는 Computer Associates (CA) de Venezuela, CA입니다. -# +# # 제8조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약은 베네수엘라의 법률에 따라 규율 및 해석되어야 합니다. 본 계약에 따른 모든 분쟁은 Tribunales Ordinarios de la Cuidad de Caracas에서 해결해야 합니다. -# +# # 제14조의 마지막 문장은 삭제되고 다음으로 대체됩니다. # 본 계약에 관한 모든 질의사항은 Computer Associates (CAI) de Venezuela, CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela(참조: 재무부서)로 문의하시기 바랍니다. -# -# 16. 본건 제품에 제3자 소프트웨어가 포함되어 있고, 라이센스허여자가 동 소프트웨어에 대한 특정 라이센스 조건을 본 계약에 통합하기를 요구하는 경우, 그러한 조건은 (본 계약에 의해 참조용으로 통합되며) 본 계약의 하기에 기재됩니다. -# +# +# 16. 본건 제품에 제3자 소프트웨어가 포함되어 있고, 라이센스허여자가 동 소프트웨어에 대한 특정 라이센스 조건을 본 계약에 통합하기를 요구하는 경우, 그러한 조건은 (본 계약에 의해 참조용으로 통합되며) 본 계약의 하기에 기재됩니다. +# # 라이센스도입자는 본 라이센스를 읽고 이해하였으며 [라이센스계약의 조건에 동의함]이라는 라디오 버튼을 선택하는 경우 상기 라이센스 조건을 수락하는 것임을 인정합니다. 또한, 라이센스도입자는 본 라이센스(본 계약, 및 하기에 명시된 제3자 소프트웨어 관련 조건이 명시된 주문양식 포함)가 본 주제와 관련하여 양 당사자 간의 완전한 합의를 구성한다는 점, 본 라이센스가 본 계약의 주제와 관련하여 라이센스도입자가 수령한 바 있는 모든 정보를 대체한다는 점(단, 하기 제3자 관련 조건을 제외하고 본 계약이 라이센스도입자 및 CA가 체결한 서면 계약(라이센스도입자가 제품 사용 라이센스를 허여받는 내용)에 의해 대체되는 경우는 예외로 함)에 동의합니다. 본 계약은 양 당사자의 수권 대표가 서명한 서면 계약에 의해서만 변경될 수 있습니다. -# +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# Last updated 2016-01-12 -# +# +# +# Last updated 2016-05-25 +# # 위에 기술된 이 계약의 조건에 동의하고 설치 과정을 진행하려면 아래에 "accept"를 입력하십시오. -# -# 설치 과정을 중단하려면 아래에 "reject"를 입력하십시오. -# -# CA-EULA에 대한 올바른 값은 다음과 같습니다: {accept, reject}. +# +# 설치 과정을 중단하려면 아래에 "reject"를 입력하십시오. +# +# CA-EULA에 대한 올바른 값은 다음과 같습니다: {accept, reject}. CA-EULA=accept diff --git a/webview/eula-introscope/ca-eula.txt b/webview/eula-introscope/ca-eula.txt index ad5d5fe..9bfb4a9 100644 --- a/webview/eula-introscope/ca-eula.txt +++ b/webview/eula-introscope/ca-eula.txt @@ -3,348 +3,341 @@ # CA End User License Agreement File # ############################################################################## -# +# # CA End User License Agreement (the "Agreement") for the CA software product that is being installed as well as the associated documentation and any SDK, as defined below, included within the product ("the Product"). -# +# # Carefully read the following terms and conditions regarding your use of the Product before installing and using the Product. Throughout this Agreement, you will be referred to as "You" or "Licensee." -# +# # By typing "accept" below, you are -# +# # (I) Representing that you are not a minor, and have full legal capacity and have the authority to bind yourself and your employer, as applicable, to the terms of this Agreement; # (II) Consenting on behalf of yourself and/or as an authorized representative of your employer, as applicable, to be bound by this Agreement. -# +# # By typing "reject" below, the installation process will cease. -# +# # 1. CA, Inc. (or the CA entity respectively identified after Section 15 below for the country / countries in which the Product is being supplied), ("CA") provides Licensee with one (1) copy of the Product, for use in accordance with such (a) quantity and (b) CA published criteria for measuring the usage of the Product (such as, but not limited to, MIPS, CPUs, tiers, servers, or users), designated as the authorized use limitation ("Authorized Use Limitation") on any Order Form (defined below) or CD sleeve included within the Product box. CA licenses the Product to Licensee on a limited, non-exclusive, non-transferable basis only for internal business use during the Term and other terms and conditions of (a) any CA Order Form or Registration Form which has been signed or otherwise contracted between Licensee and a CA affiliate; or (b) a License Program Certificate which is provided by CA to Licensee, as applicable, referencing and incorporating the terms of this Agreement (each hereafter referred to as the "Order Form"). -# +# # 2. If the Product is an alpha or beta version of the program, hereinafter referred to as the "beta program" or "beta version" and not generally available to date, CA does not guarantee that the generally available release will be identical to the beta program or that the generally available release will not require reinstallation. Licensee agrees that if it registers for support or if otherwise required by CA, Licensee shall provide CA with specific information concerning Licensee's experiences with the operation of the Product. Licensee agrees and acknowledges that the beta version of the Product (a) is to be used only for testing purposes and not to perform any production activities unless CA shall have otherwise approved in writing and (b) has not been tested or debugged and is experimental and that the documentation may be in draft form and will, in many cases, be incomplete. Licensee agrees that CA makes no representations regarding the completeness, accuracy or Licensee's use or operation of the beta version of the Product. BETA PRODUCTS ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR REPRESENTATIONS OF TITLE OR NON-INFRINGEMENT. If Licensee is also a tester of the beta version of the Product (as defined by the beta testing or pre-release testing agreement ("Beta Testing Agreement") that was agreed to by Licensee during the registration process before obtaining the beta version of the Product), Licensee agrees that the terms of this Agreement are in addition to, and do not supersede, the terms of the Beta Testing Agreement. -# +# # 3. If the Product is being licensed on a trial or evaluation basis, Licensee agrees to use the Product solely for evaluation purposes, in accordance with the usage restrictions set forth in Section 1, for a thirty-day evaluation period unless a different period is otherwise noted (the "Trial Period"). At the end of the Trial Period, Licensee's right to use the Product automatically expires and Licensee agrees to de-install the Product and return to CA all copies or partial copies of the Product or certify to CA in writing that all copies or partial copies of the Product have been deleted from Licensee's computer libraries and/or storage devices and destroyed. If Licensee desires to continue its use of the Product beyond the Trial Period, Licensee may contact CA or a CA affiliate to acquire a license to the Product for the applicable fee. LICENSEE'S USE OF THE PRODUCT DURING THE TRIAL PERIOD IS ON AN "AS IS" BASIS WITHOUT ANY WARRANTY, AND CA DISCLAIMS ALL WARRANTIES INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AS WELL AS ANY EXPRESS WARRANTIES PROVIDED ELSEWHERE IN THIS AGREEMENT. -# +# # 4. If the Product includes a Software Development Kit ("SDK"), the terms and conditions of this paragraph apply solely for the use of the SDK. The SDK may include software, APIs and associated documentation. The SDK is provided solely for Licensee's internal use to develop software that enables the integration of third party software or hardware with the Product, or to develop software that functions with the Product, such as an agent. Licensee's use of the SDK is restricted solely to enhance Licensee's internal use of the Product. No distribution rights of any kind are granted to Licensee regarding the Product. In addition to the limitations on use set forth in Section 8, below, Licensee may not reproduce, disclose, market, or distribute the SDK or the documentation or any applications containing any executable versions of the SDK to third parties, on the internet, or use such executables in excess of the applicable Authorized Use Limitation. If there is a conflict between the terms of this section and the terms of any other section in this Agreement, the terms of this section will prevail solely with respect to the use of the SDK. -# +# # TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, AND NOTWITHSTANDING ANYTHING CONTAINED HEREIN TO THE CONTRARY, THE SDK IS PROVIDED AND LICENSED "AS IS" WITHOUT WARRANTY OF ANY KIND. -# +# # 5. Payment of the fees specified on the Order Form or as agreed between Licensee and an authorized reseller of CA or any of the CA affiliates, shall entitle Licensee to use the Product for the term specified on the Order Form (the "Term"), which use may include the right to receive maintenance services therefore for the period set forth on the Order Form. All fees payable hereunder shall be payable as stated in the Order Form, or if not stated, shall be payable net thirty (30) days from the CA invoice date. Licensee will install each new release of the Product delivered to Licensee. After the initial Term, continued usage and/or maintenance of the Product as provided herein shall be subject to the payment by Licensee of the fees described on the Order Form. If You are acquiring licenses of the Product from an authorized CA reseller, the terms of this Agreement governing payments, pricing and discounts shall not apply as such terms are between You and your chosen CA reseller. Any terms that may appear on a Licensee purchase order (including without limitation pre-printed terms), or as part of Licensee's order with an authorized CA reseller, that conflict or vary from the terms and conditions of this Agreement shall not apply to the Product and shall be deemed null and void. Notwithstanding the foregoing, with respect to any Product that relies on continuous content updates, such as signature files and security updates, Licensee shall be entitled to such content updates for a period of one (1) year from the effective date of the license. -# +# # 6. If maintenance is provided by CA or a CA affiliate, it shall be renewed annually as specified in the Order form. All fees are net of applicable taxes. Licensee agrees to pay any tariffs, duties or taxes imposed or levied by any government or governmental agency including, without limitation, federal, state and local, sales, use, value added and personal property taxes, (other than franchise and income taxes for which CA is responsible) upon a presentation of invoices by CA or a CA affiliate, as applicable. Any claimed exemption from such tariffs, duties or taxes must be supported by proper documentary evidence delivered to CA. Any invoice which is unpaid by Licensee when due shall be subject to an interest charge equal to the lower of 1.5% per month or the highest applicable legal rate. -# +# # 7. Licensee may install and deploy the Product in the territory specified in the Order Form up to the Authorized Use Limitation. Licensee may permit its Authorized End Users access to the Product for Licensee's and its Affiliates' internal business wherever located, provided that Licensee hereby expressly agrees that a breach by an Authorized End User shall be considered to be a breach by and the responsibility of Licensee. Licensee may relocate the Product to a new Licensee location within the territory specified in the Order Form upon prior written notice. For purposes hereof, "Authorized End Users" means Licensee, its Affiliates and their employees and independent contractors (but excluding any outsourcer, facilities management providers, managed service provider, or application service provider) that are bound by terms and conditions no less restrictive than those contained herein and are acting on behalf of Licensee and not a third party; "Affiliate" with respect to Licensee means any legal entity in which the Licensee directly or indirectly Controls; and "Control" means ownership or control of greater than 50% of an entity's shares or control of the board of such entity by force of law or contract, or the equivalent. If Licensee desires to use the Product beyond such restrictions, it shall notify CA or the CA affiliate the Licensee has procured the Product from, and Licensee will be invoiced for and shall pay the applicable fees for such expanded use. -# +# # 8. The Product, including any source or object code that may be provided to Licensee hereunder, as well as documentation, appearance, structure and organization, is the proprietary property of CA and/or its licensors, if any, and may be protected by copyright, patent, trademark, trade secret and/or other laws. Title to the Product, or any copy, modification, translation, partial copy, compilation, derivative work or merged portion of any applicable SDK, shall at all times remain with CA and/or its licensors. Licensee agrees that CA may use any feedback provided by Licensee related to the Product for any CA business purpose, without requiring consent including reproduction and preparation of derivative works based upon such feedback, as well as distribution of such derivative works. Usage rights respecting the Product may not be exchanged for any other CA product. The Product is licensed as a single product. Its component parts may not be separated for use. Licensee and its Authorized End Users will keep the Product and the terms of this license strictly confidential and use its best efforts to prevent and protect the Product from unauthorized disclosure or use. Licensee may not (i) disclose, de-compile, disassemble nor otherwise reverse engineer the Product except to the extent the foregoing restriction is expressly prohibited under applicable law; (ii) create any derivative works based on the Product; (iii) use the Product to provide facilities management, outsourcing, service bureau, hosted services, cloud services, on demand services or like activity whereby Licensee, without a CA license authorizing such purpose, operates or uses the Product for the benefit of a third party; or (iv) permit the use of the Product by any third party, except as authorized by CA in writing. Licensee shall not release the results of any benchmark testing of the Product to any third party without the prior written consent of CA. Licensee will not transfer, assign, rent, lease, use, copy or modify the Product, in whole or in part, or permit others to do any of the foregoing with regard to the Product without CA's prior written consent, except to the extent the foregoing restriction is expressly prohibited under applicable law. Licensee will not remove any proprietary markings of CA or its licensors. Licensee may make a reasonable number of copies of the Product for disaster recovery "cold standby", backup and archival purposes; provided that use of such copies is limited to testing Licensee's disaster recovery procedures and effectiveness and as is necessary during any reasonable period subsequent to the occurrence of an actual disaster during which Licensee cannot operate the Product. If this license terminates for any reason, Licensee shall certify to CA in writing that all copies and partial copies of the Product have been deleted from all computers and storage devices and are returned to CA or destroyed and are no longer in use. Licensee acknowledges that the Product is subject to control under European and U.S. law, including the Export Administration Regulations (15 CFR 730-774) and agrees to comply with all applicable import and export laws and regulations. Licensee agrees that the Product will not be exported, reexported or transferred in violation of U.S. law or used for any purpose connected with chemical, biological or nuclear weapons or missile applications, nor be transferred or resold, if Licensee has knowledge or reason to know that the Product is intended or likely to be used for such purpose. The Product and any accompanying documentation have been developed entirely at private expense and are "commercial item(s)" and "commercial computer software" as those terms are defined in Federal Acquisition Regulation Subpart 2.101 "Definitions." The Product is exempt from disclosure under the Freedom of Information Act (FOIA), 5 U.S.C. §552(b) under one or more exemptions to that Act (or a similar U.S. state statute, as applicable). Any Product previously delivered to You may not be delivered again. Any Product not previously delivered to Licensee will be delivered to Licensee or its chosen reseller following receipt by CA of an acceptable order. The Product shall be delivered either by electronic delivery ("ESD") or, if CA or a CA affiliate respectively requires delivery in tangible media, CPT, as defined in INCOTERMS 2010, from CA's or such CA affiliate's shipping point. CA or the CA affiliate from which Licensee is procuring the Product agrees to be responsible for all customs duties and clearances and title to any CA hardware if included will pass upon point of delivery to carrier at CA's or such CA affiliate's shipping location. In the event of electronic delivery, no tangible personal property will be delivered. Such electronic delivery may not automatically provide for an exemption from applicable sales or use tax. Any operating system identified as "Generic" or "GA" denotes such operating systems for which the Product is made generally available by CA in accordance with CA current published specifications.. Acceptance is waived and deemed to have occurred at the earliest of point of physical shipment or delivery of keys/access codes for electronic delivery. CA Inc. is the manufacturer of the Product.CA reserves the right, on notice to You, to conduct an audit remotely or onsite of Licensee and/or Your Affiliates facilities to verify compliance by Licensee and its Authorized End Users with the terms of this Agreement. CA agrees that such audit shall be conducted during regular business hours at Your offices and CA shall endeavor to conduct such audit so as not to interfere unreasonably with Your activities and/or use an independent third party to conduct the audit subject to terms of non-disclosure if required. This Agreement shall be governed by and interpreted in accordance with the laws of the State of New York, without regard to its choice of law provisions, and any action arising under or relating to the Agreement shall lie within the exclusive jurisdiction of the State and Federal Courts located in Suffolk County, New York. -# +# # 9. CA warrants that it can enter into this Agreement and that it will indemnify Licensee, or, at its option, settle any third party claim that CA is not so authorized or that Licensee's use of the Product as authorized hereby infringes any United States patent or copyright within the jurisdictions where Licensee is authorized to use the Product at the time of delivery. CA also warrants that its distributed Product will operate materially in accordance with its published specifications set forth within the documentation for a period of ninety (90) days after delivery of the Product to Licensee, provided that CA's only responsibility will be to use reasonable efforts, consistent with industry standards, to cure any defect. If, within a reasonable time after receiving Licensee's written notice of breach of either of the above warranties, CA is unable to cause the Product to operate (a) without infringing a third party's intellectual property rights, or (b) materially in accordance with CA's written specifications, then CA may terminate the license and provide or arrange for a pro-rata refund to Licensee or its authorized CA reseller of the license fees and or the support and maintenance fees paid. In the event of such termination, the pro-rata refund shall be calculated on (i) the number of months left remaining on the Term of the applicable Order Form or (ii) if the Product is licensed under a perpetual license, using (only for purposes of a refund calculation) an amortization schedule of three (3) years. The warranties set forth in this Section do not apply to beta, trial, evaluation or demonstration versions of the Product, or to Software Development Kits. CA shall have no liability to indemnify or to remedy a warranty claim: (i) in the event the allegation of infringement or warranty claim is a result of a modification of the Product except a modification by CA, (ii) if the Product is not being used in accordance with CA's specifications, related documentation and guidelines, (iii) if the alleged infringement or warranty claim would be avoided or otherwise eliminated by the use of a CA published update or patch, (iv) if the alleged infringement or warranty claim is a result of use of the Product in combination with any third party product, or (v) if the applicable fees due for the Product have not been paid or Licensee is otherwise in breach of this Agreement. The indemnifications contained herein shall not apply and CA shall have no liability in relation to any Product produced by CA at the specific direction of Licensee. THE FOREGOING PROVISIONS STATE THE ENTIRE LIABILITY AND OBLIGATIONS OF CA REGARDING CLAIMS OF INFRINGEMENT, AND THE EXCLUSIVE REMEDY AVAILABLE TO LICENSEE WITH RESPECT TO ANY ACTUAL OR ALLEGED INFRINGEMENT OR MISAPPROPRIATION OF ANY INTELLECTUAL PROPERTY OR OTHER PROPRIETARY RIGHTS. -# +# # 10. EXCEPT AS SET FORTH ABOVE, TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW: -# +# # (I) NO OTHER WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE MADE BY CA; # (II) IN NO EVENT WILL CA BE LIABLE TO LICENSEE OR ANY OTHER PARTY FOR ANY CLAIM FOR LOSS, INCLUDING TIME, MONEY, GOODWILL, AND CONSEQUENTIAL OR INDIRECT DAMAGES, WHICH MAY ARISE FROM THE USE, OPERATION OR MODIFICATION OF THE PRODUCT, EVEN IF CA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN THE EVENT THAT THE ABOVE LIABILITY LIMITATION IS FOUND TO BE INVALID UNDER APPLICABLE LAW, THEN CA'S LIABILITY FOR SUCH CLAIM SHALL BE LIMITED TO THE AMOUNT OF THE LICENSE FEE ACTUALLY PAID FOR THE PRODUCT BY LICENSEE. NO THIRD PARTY, INCLUDING AGENTS, DISTRIBUTORS, OR AUTHORIZED CA RESELLERS IS AUTHORIZED TO MODIFY ANY OF THE ABOVE WARRANTIES OR MAKE ANY ADDITIONAL WARRANTIES ON BEHALF OF CA. CA DOES NOT WARRANT THAT THE PRODUCT WILL MEET LICENSEE'S REQUIREMENTS OR THAT USE OF THE PRODUCT WILL BE UNINTERRUPTED OR ERROR FREE. -# +# # 11. Licensee may assign this Agreement only if Licensee complies with CA's then prevailing policies respecting assignment of licenses, which includes a requirement that the scope of use of the Product not be expanded beyond the business of Licensee and the business of Licensee's majority-owned subsidiaries. -# +# # 12. If Licensee breaches any term of this Agreement or if Licensee becomes insolvent or if bankruptcy or receivership proceedings are initiated by or against Licensee, CA shall have the right to withhold its own performance hereunder and/or to terminate this Agreement immediately and, in addition to all other rights of CA, all amounts due or to become due hereunder, if any, will immediately be due and payable to CA or the CA affiliate the Licensee was procuring the Product from. -# +# # 13. If Licensee fails to pay the applicable maintenance fee, then Licensee may reinstate maintenance thereafter by paying to CA or the respective CA affiliate a fee equal to 150% of CA's then prevailing maintenance fee for each year for which the maintenance fee has not been paid. -# +# # 14. If a court holds that any provision of this Agreement to be illegal, invalid or unenforceable, the remaining provisions shall remain in full force and effect. No waiver of any breach of this Agreement shall be a waiver of any other breach, and no waiver shall be effective unless made in writing and signed by an authorized representative of the waiving party. Any questions concerning this Agreement should be referred to CA, Inc., One CA Plaza, Islandia, NY 11749, Attention: Worldwide Law Department. -# +# # 15. In the event Licensee acquires a license for the Product outside of the United States, the following Sections will apply to the use of the Product: -# +# # Notwithstanding the terms of the last sentence of Section 8, the laws of the country in which Licensee acquires a license for the Product shall govern this Agreement, except as otherwise provided below: -# +# # Europe, Middle East and Africa -# +# # 1. In EMEA the CA entity that is the licensor is CA Europe Sàrl ("CA Europe"). CA Europe Sàrl is the licensor for Products which have been made available to Licensee by way of license from CA Europe Sàrl through a local CA subsidiary in EMEA or through an authorized CA reseller. The CA support and maintenance, if any, is being provided by a local CA subsidiary or by an authorized CA reseller. -# +# # 2. EMEA means Europe, Middle East and Africa. -# +# # 3. Section 9, third sentence and fifth sentence shall only apply to third party rights infringement. Section 9, second sentence is deleted and replaced with: # "CA Europe also warrants that the Product will operate materially in accordance with the applicable specifications set forth within the documentation of the Product subject always to Licensee's compliance with the terms of this Agreement. If CA Europe has breached this warranty Licensee's remedy is for CA Europe, in consultation with Licensee, to either (i) use reasonable efforts consistent with industry standards to cure the defect, or (ii) replace the Product with one that materially complies with the documentation. If the defect cannot be cured within a reasonable period of time or if the rectification of the defect or replacement has finally failed, Licensee shall have (i) in case of a subscription license the right to reasonably reduce the fees agreed and/or terminate immediately for cause, if the legal or statutory requirements are met; (ii) in case of a perpetual license, at its option, the right (1) to rescind or reduce the fees agreed in the applicable transaction document and (2) claim damages or to claim reimbursement of futile expenditures. The right to claim damages or futile expenditures shall be subject to the limitations of liability set forth below in section 10. In case of a perpetual license the warranty claims stated herein shall become time-barred within ninety (90) days after delivery of the Product. Warranty remedies are conditioned upon (i) any error or defect complained of is reasonably reproducible by CA Europe, (ii) the Product is not modified and is being used in accordance with the documentation, and (iii) the breach is not attributable in whole or in part to any non-CA product(s) or service(s). The above warranties are the sole warranties provided by CA Europe. No other warranties, including that the Product is error free, whether express or implied, including, without limitation, the implied warranties of satisfactory quality, non-infringement, or suitability and/or the warranty of fitness for a particular purpose are made by CA Europe or its suppliers. If Licensee claims under this warranty section, Licensee is not entitled or eligible to seek the same warranty remedies from any other CA affiliate." -# +# # 4. Section 10 is deleted and replaced with: -# +# # "10.1 CA Europe's liability shall, regardless of the reason for the liability, be unlimited in cases of death or bodily injury or injury of health and damages caused by gross negligence or willful default of CA Europe or the grossly negligent or willful default of CA Europe's legal representatives or persons whom CA Europe occupies with the performance of its contractual obligations and in cases of liability under the Product Liability Act ("Produktehaftpflichtgesetz"). # 10.2 In case of slight negligence CA Europe shall, regardless of the reason for the liability, only be liable, if CA Europe violates an obligation, which is essential for the execution of the Agreement and in the fulfillment of which the other party regularly trusts. In this case, CA Europe's liability to Licensee will be limited to damages which have been foreseeable and which can typically arise in connection with this Agreement. # 10.3 Further to the above CA Europe's liability to the Licensee for indirect, special and consequential damages (including, without limitation, loss of profits, loss of business, loss of opportunity or loss of goodwill) shall be limited to damages which have been foreseeable and which can typically arise in connection with this Agreement. # 10.4 It is the parties' understanding that the foreseeable damages that can typically arise in connection with the licenses granted in this Agreement in the meaning of sections 10.2 and 10.3 above shall be limited to a maximum of the fees paid or owed for the then current initial or renewal Term for which the Licensee has procured the Product. # 10.5 The liability for loss of data shall be limited to the typical recovery efforts in the case of regular and adequate data back-up. # 10.6 The remedies provided in this Agreement are the exclusive remedies of the parties." -# +# # 5. The following sections are added to this Agreement: -# +# # "Force Majeure. Except for payment obligations and obligations pertaining to non-disclosure, notwithstanding any contrary provision in this Agreement, neither Party will be liable for any action taken, or any failure to take any action required to be taken, in the event and to the extent that the taking of such action or such failure arises out of causes beyond a party's control, including, without limitation, war, civil commotion, act of God, strike or other stoppage (whether partial or total) of labor, any law, decree, regulation or order of any government or governmental body (including any court or tribunal)." -# +# # "Licensee Data. If Licensee transfers any personal data to CA Europe as a requirement pursuant to any Product, then Licensee represents that (i) it is duly authorized to provide personal data to CA Europe and it does so lawfully in compliance with relevant legislation, (ii) CA Europe and any entity within the CA group of companies (each a "CA entity") or its subcontractors can process such data for the purposes of performing its obligations and (iii) CA Europe may disclose such data to any CA entity and its subcontractors for this purpose and may transfer such data to countries outside of the country of origin. CA, Inc. is Safe Harbour certified and the CA entities have committed to comply with relevant data protection/privacy legislation." -# +# # 6. The laws of Switzerland (excluding its conflict of laws provisions) shall govern the construction and enforceability of this Agreement. The parties agree that any action arising under or relating to this Agreement shall lie within the exclusive jurisdiction of the Swiss courts located in Zürich. The United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement. -# +# # 7. Any questions concerning this Agreement for EMEA should be referred to CA Europe Sàrl located at Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland, Attention: Worldwide Law Department. -# +# # Argentina # The CA subsidiary that is the licensor is CA Argentina S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Argentina. Any dispute hereunder shall be determined by the Tribunales de la Cuidad de Buenos Aires. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Argentina S.A, Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires – At.: Finance Department. -# +# # Australia # The CA subsidiary that is the licensor is CA (Pacific) Pty. Ltd (ABN 20 001 146 345). -# +# # The following is added to each of the end of Sections 2, 3 and 10: # Although CA specifies that there are no warranties, Licensee may have certain rights under the Competition and Consumer Act 2010 and other state and territory legislation which may not be excluded but may be limited. To the full extent permitted by law CA excludes all terms not expressly set out in the express terms of this Agreement, and limits any terms imposed by the Competition and Consumer Act 2010 and other state and territory legislation to the full extent permitted by the applicable legislation. -# +# # The last sentence of Section 8 is deleted and replaced with: # The laws of the State or Territory in which the transaction is performed govern this Agreement. -# +# # The following is added to Section 10: # Where CA is in breach of a condition or warranty implied by the Competition and Consumer Act 2010 or other state and territory legislation, CA's liability is limited, in the case of goods, to the repair or replacement of the goods, or payment for the repair or replacement of the goods, and in the case of services, the supplying of the services again or payment for the re-supply of the services, as CA may elect. Where that condition or warranty relates to a right to sell, quiet possession or clear title, in respect of goods or if the goods supplied by CA are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this Section apply. -# +# # Brazil # The CA subsidiary that is the licensor is CA Programas de Computador, Participações e Serviços Ltda. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Brazil. Any dispute hereunder shall be determined by a court of the São Paulo City Hall. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Programas de Computador, Participações e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000, At.: Worldwide Law Department. -# +# # Canada # The CA subsidiary that is the licensor is CA Canada Company. -# +# # The last sentence of Section 8 is deleted and replaced with: # The laws in the Province of Ontario shall govern this Agreement. -# +# # Chile # The CA subsidiary that is the licensor is CA de Chile, S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Chile. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Santiago. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Chile, S.A, Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago – At.: Finance Department. -# +# # China # The CA subsidiary that is the licensor is CA (China) Co., Ltd. -# +# # The second sentence of Section 6 is deleted and replaced with: # All fees are inclusive of VAT. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the People's Republic of China, without regard to its choice of law provisions. Any dispute hereunder shall be determined by a competent court located in Beijing. -# +# # Colombia # The CA subsidiary that is the licensor is CA Software de Colombia S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Colombia. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Bogotá. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Software de Colombia S.A, Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia – At.: Finance Department. -# +# # Hong Kong # The CA subsidiary that is the licensor is CA (Hong Kong) Limited which is also its principal place of business at Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Hong Kong. The courts of Hong Kong will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added at the end of Section 10: The aforementioned liability limitation and the aforementioned maximum liability amount will not affect or prejudice the statutory rights of the licensee under the sale of goods ordinance, the supply of services (implied terms) ordinance or the control of exemption sections ordinance, nor will they limit or exclude any liability for death or personal injury solely caused by CA's negligence. -# +# # India # The CA subsidiary that is the licensor is CA (India) Technologies Private Limited. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement and the terms hereof shall be governed and construed in accordance with the laws of India and the courts of Mumbai shall have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. In the event the Product is delivered electronically, the said Product shall be made available by CA for downloading from a server situated in a country other than India. -# +# # Indonesia (refer to Singapore) -# +# # Japan # The CA subsidiary that is the licensor is CA Japan, Ltd. -# +# # The third sentence of Section 6 is deleted and replaced with: # Licensee agrees to pay any tariffs, duties or taxes imposed or levied by any government or governmental agency other than the taxes for which CA is responsible upon a presentation of invoices by CA. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the country of Japan, without regard to its choice of law provisions. Any dispute hereunder shall finally be determined by Tokyo District Court located in Tokyo Japan. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Japan, Ltd., 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan, Attention: Worldwide Law Department. -# +# # Korea # The CA subsidiary that is the licensor is CA Korea Inc., Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Republic of Korea, without regard to its choice of law provisions. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Korea Inc., Ltd, City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea, Attention: Worldwide Law Department. -# +# # Malaysia # The CA subsidiary that is the licensor is CA (Malaysia) Sdn. Bhd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Malaysia. The courts of Malaysia will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to Section 10: # Although CA specifies that there are no other warranties, Licensee may have certain rights under the Consumer Protection Act 1999 and the warranties are only limited to the extent permitted by the applicable legislation. -# +# # Mexico # The CA subsidiary that is the licensor is CA Software de México S.A. de C.V. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of México. Any dispute hereunder shall be determined by the Tribunales de la Cuidad de México. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA Software de México S.A. de C.V, Av. Miguel de Cervantes Saavedra 193, Suite 502, Col. Granada, Mexico City, MX 11500 – At.: Finance Department. -# +# # New Zealand # The CA subsidiary that is the licensor is CA Pacific (NZ) Ltd. -# +# # Notwithstanding the final sentence of Section 6, the applicable interest charge on invoices unpaid by Licensee is 1.5% per month. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of New Zealand. The courts of New Zealand will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to Section 10: # Although CA specifies that there are no warranties, Licensee may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods or services which CA supplies, if Licensee acquires the goods and services for the purposes of a business as defined in that Act. Where the Product is not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. -# +# # The following is added to Section 12: # CA's rights under this Section shall also apply if any resolution is passed or proceedings are commenced for the liquidation or winding up of Licensee. -# +# # Peru # The CA subsidiary that is the licensor is CA de Peru S.A. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Peru. Any dispute hereunder shall be determined by the Tribunales Ordinarios de La Cuidad de Lima. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to CA de Peru S.A, Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru – At.: Finance Department. -# +# # Philippines # The CA subsidiary that is the licensor is Philippine Computer Associates International, Inc. -# +# # The first eight sentences of Section 8 are deleted and replaced with: # Title to the Product and all modifications thereto shall remain with CA. The Product is a trade secret and the proprietary property of CA or its licensors. Licensee agrees that CA may use any feedback provided by Licensee related to the Product for any CA business purpose, without requiring consent including reproduction and preparation of derivative works based upon such feedback, as well as distribution of such derivative works. Usage rights respecting the Product may not be exchanged for any other CA product. Licensee and its employees will keep the Product and the terms of this Agreement strictly confidential. To the maximum extent permitted by applicable law, Licensee will not disclose, de-compile, disassemble nor otherwise reverse engineer the Product. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of the Philippines. The courts of Makati City will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # Section 12 is deleted and replaced with: # If Licensee breaches any term of this Agreement or if Licensee becomes insolvent or if bankruptcy or receivership proceedings are initiated by or against Licensee, CA shall have the right to withhold its own performance hereunder and/or to terminate this Agreement immediately upon notice and, in addition to all other rights of CA, all amounts due or to become due hereunder will immediately be due and payable to CA. -# +# # Singapore # The CA subsidiary that is the licensor is CA (Singapore) Pte. Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Singapore. The courts of Singapore will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # The following is added to the end if Section 9: # To the full extent permitted by applicable law, CA disclaims all implied conditions or warranties of satisfactory quality or fitness for purpose. -# +# # Taiwan # The CA subsidiary that is the licensor is CA (Taiwan) Limited whose registered office is situated at 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan. -# +# # The second sentence of Section 6 is deleted and replaced with: # All fees are exclusive of VAT. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Taiwan, without regard to its choice of law provisions. Any dispute hereunder shall be determined by Taipei District Court. -# +# # Thailand # The CA subsidiary that is the licensor is CA Sales (Thailand) Co., Ltd. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Thailand. The courts of Thailand will have sole and exclusive jurisdiction with respect to any disputes arising out of this Agreement. -# +# # Venezuela # The CA subsidiary that is the licensor is Computer Associates (CAI) de Venezuela, CA. -# +# # The last sentence of Section 8 is deleted and replaced with: # This Agreement shall be governed by and interpreted in accordance with the laws of Venezuela. Any dispute hereunder shall be determined by the Tribunales Ordinarios de la Cuidad de Caracas. -# +# # The last sentence of Section 14 is deleted and replaced with: # Any questions concerning this Agreement should be referred to Computer Associates (CAI) de Venezuela, CA, Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela – At.: Finance Department. -# +# # 16. If the Product contains third party software, and the licensor requires the incorporation of specific license terms and conditions for such software into this Agreement, those specific terms and conditions, which are hereby incorporated by this reference, are located below this Agreement. -# -# Licensee acknowledges that this license has been read and understood and by typing "accept" below, licensee accepts its terms and conditions. Licensee also agrees that this license (including any order form referencing this Agreement and any terms relating to third party software which are set forth below this Agreement) constitutes the complete Agreement between the parties regarding this subject matter and that it supersedes any information licensee has received relating to the subject matter of this Agreement, except that this Agreement (excluding the third party terms below) will be superseded by any written Agreement, executed by both licensee and CA, granting licensee a license to use the product. This Agreement may only be amended by a written Agreement signed by authorized representatives of both parties. -# +# +# Licensee acknowledges that this license has been read and understood and by typing "accept" below, licensee accepts its terms and conditions. Licensee also agrees that this license (including any order form referencing this Agreement and any terms relating to third party software which are set forth below this Agreement) constitutes the complete Agreement between the parties regarding this subject matter and that it supersedes any information licensee has received relating to the subject matter of this Agreement, except that this Agreement (excluding the third party terms below) will be superseded by any written Agreement, executed by both licensee and CA, granting licensee a license to use the product. This Agreement may only be amended by a written Agreement signed by authorized representatives of both parties. +# # = = = = = -# -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# Last updated 2016-01-12 -# +# +# +# Last updated 2016-05-25 +# # Type "accept" below to accept the terms and conditions of this Agreement as set forth above and proceed with the installation process. -# +# # Type "reject" below to halt the installation process. -# +# # The set of valid values for CA-EULA is: {accept, reject}. CA-EULA=accept diff --git a/webview/eula-introscope/ca-eula.zh_CN.txt b/webview/eula-introscope/ca-eula.zh_CN.txt index 6d65a8a..4ce98e3 100644 --- a/webview/eula-introscope/ca-eula.zh_CN.txt +++ b/webview/eula-introscope/ca-eula.zh_CN.txt @@ -3,348 +3,341 @@ # CA 最终用户软件使用许可协议 # ############################################################################## -# +# # 正在安装的 CA 软件产品的 CA 最终用户软件使用许可协议(“协议”)以及下面定义的相关文档和任何 SDK 都包含在本产品(“产品”)中。 -# +# # 在安装和使用本产品之前,请仔细阅读以下与您使用本产品有关的条款。在本协议中,您将被称为“您”或者“被许可人”。 -# -# 在下面输入 "accept",您 -# +# +# 在下面输入 "accept",您 +# # (I) 宣称自己并非未成年人,并且有完全的法定资格和能力使您自己和您的雇主接受本协议的条款 ; # (II) 代表您自己和/或在适当的情况下,作为您雇主的授权代表,同意受本协议的约束。 -# +# # 在下面输入 "reject",安装过程将会停止。 -# +# # 1. CA, Inc.(或在下面第 15 节后针对提供本产品的一个或多个国家/地区分别确定的 CA 实体)(“CA”)为被许可人提供 (1) 本产品的一份副本,供其根据在任何订货单(定义见下文)或本产品盒中所带光盘封套中指定作为授权使用限制的 (a) 数量和 (b) CA 发布用于衡量本产品使用的条件(例如但不限于 MIPS、CPU、层、服务器或用户)进行使用。CA 在有限、非独占、不可转让的基础上,为被许可人授予在许可期限内仅将本产品用于内部业务用途的权利,并且被许可人还须遵守 (a) 在被许可人与 CA 关联机构之间已签订或以其他方式约定的任何 CA 订货单或注册表;或 (b) 引用和加入本协议条款的任何 CA 提供给被许可人的许可程序证书(下面统称为“订货单”)。 -# +# # 2. 如果本产品是程序的一个 alpha 或者 beta 版(下方称为“beta 程序”或者“beta 版本”),且至今尚未普遍供应,则 CA 不保证普遍供应的版本会与 beta 程序完全相同,也不保证普遍供应的版本不需要重新安装。如果被许可人注册支持服务或经 CA 要求,则被许可人同意向 CA 提供有关被许可人使用本产品的具体信息。被许可人同意并且承诺产品的 beta 版本 (a) 仅用于测试目的,并且未经 CA 事先书面许可不得进行任何生产行为;(b) 尚未经过测试或调试,是试验性的,并且文件可能是草稿版本,在很多情况下是不完整的。被许可人同意 CA 对于 beta 版本的完整性、准确性或者被许可人对 beta 版本产品的使用或者操作不做任何保证。Beta 产品基于“现状”提供,并不包括任何明示的或者默示的保证或者陈述,包括但不限于对所有权或者非侵权的保证或者陈述。如果被许可人同时也是本产品 beta 版本的测试人 [根据被许可人在收到产品 beta 版本之前的注册过程中已经接受的 Beta 测试协议或预发行测试协议(“Beta 测试协议”)进行定义],被许可人同意,本协议条款为 Beta 测试协议条款的补充,而非替代 Beta 测试协议的条款。 -# +# # 3. 如果本产品是一个试用版或者评估版,被许可人同意仅为评估目的并按照上述第 1 条所规定的使用限制使用本产品,评估期间为三十天,除非约定了其他期间(“试用期间”)。试用期间结束后,被许可人使用产品的权利即终止,被许可人同意卸载产品并且将本产品所有版本退还给 CA,或以书面形式向 CA 保证本产品所有副本已从被许可人的计算机库和/或存储设备中删除并且销毁。如果被许可人希望在试用期间结束后继续使用本产品,被许可人可与 CA 或 CA 关联机构联系并支付相应费用以获得本产品的使用许可。在试用期间内,被许可人对本产品的使用应基于“现状”原则并不享有任何保证,CA 申明不作任何保证,包括但不限于对适销性、适用于特定目的默示保证以及本协议其他部分做出的任何明示的保证。 -# +# # 4. 如果产品包含 Software Development Kit(“SDK”),则本段的条款和条件仅适用于 SDK 的使用。SDK 可能包含软件、API 和相关文档。SDK 仅供被许可人内部使用,以开发软件来实现第三方软件或硬件与本产品的集成,或开发可使用本产品功能的软件,例如代理。被许可人对 SDK 的使用仅限于提高被许可人对本产品的内部使用。没有任何有关本产品的任何形式的分发权利在此授予被许可人。除下面第 8 节中所述对使用的限制外,被许可人还不能向第三方或在 Internet 上复制、公布、推销或分发 SDK 或包含 SDK 任何可执行文件版本的文档或任何应用,也不能将这些可执行文件用于超出适用的授权使用限制范围的用途。如果本段中的条款与本协议中任何其他部分的条款存在冲突,本段中的条款将优先适用,但仅限于 SDK 的使用方面。 -# +# # 在适用法律允许的最大范围内,不管本协议中是否包含任何冲突条款,SDK 均按“原样”提供和许可,不附带任何形式的保证。 -# +# # 5. 通过支付订货单中所约定的费用或者被许可人与 CA 或任何 CA 关联机构的授权经销商商定的费用,被许可人有权在订货单上指定的期限内(“期限”)使用本产品,上述使用应包括在订货单约定的时间内接受维护服务。以下应支付的所有费用应根据订货单中的说明进行支付,如订货单中没有说明,则应从 CA 开发票之日起三十 (30) 天内支付。被许可人将安装向其提供的本产品的每一个新版本。初始期限过后,如果被许可人希望继续使用本产品和/或享受维护服务,被许可人应支付订货单中约定的费用。如果您从授权 CA 经销商那里获取本产品的许可,则本协议中管制付款、定价和折扣的条款不适用,因为这些条款是在您与您选择的 CA 经销商之间签订的。任何在被许可人订单上显示的任何条款(包括但不限于印刷的条款),或被许可人向授权 CA 经销商下达的订单中包含的任何条款与本协议的条款和条件有冲突或不同时,则不适用于本产品,并且应视为无效。 虽然有上述约定,对于依靠持续内容更新的产品,例如签名文件和安全更新,被许可人有权自本许可生效日期起一(1)年内接受内容更新。 -# -# 6. 如果 CA 或 CA 关联 机构提供维护,用户需要按照订货单中的规定每年续订维护。所有费用均未包含适用税款。被许可人同意于 CA 或 CA 关联机构提供发票(如果适用)后支付任何政府或政府机关征收的关税或税收,包括但不限于国家/地区或地方政府所征收的营业税、使用税、增值税及个人财产税(但 CA 应付的特许费及所得税除外)。上述任何税赋的免除均须向 CA 提供适当的免税证明。对于任何被许可人逾期未付款,将被收取每月相当于 1.5% 或法令所许可的最高利息两者中的较低者作为利息。 -# +# +# 6. 如果 CA 或 CA 关联 机构提供维护,用户需要按照订货单中的规定每年续订维护。所有费用均未包含适用税款。被许可人同意于 CA 或 CA 关联机构提供发票(如果适用)后支付任何政府或政府机关征收的关税或税收,包括但不限于国家/地区或地方政府所征收的营业税、使用税、增值税及个人财产税(但 CA 应付的特许费及所得税除外)。上述任何税赋的免除均须向 CA 提供适当的免税证明。对于任何被许可人逾期未付款,将被收取每月相当于 1.5% 或法令所许可的最高利息两者中的较低者作为利息。 +# # 7. 被许可人可在订货单中规定的地区在授权使用限制范围内安装和部署本产品。被许可人可允许其授权最终用户访问产品以用于被许可人或其关联机构的内部业务,不管位于何处,只要被许可人在此明确同意授权最终用户的违反行为应被视为被许可人的违反行为,并承担相应的责任。被许可人在事先发出书面通知后,可以将产品重新安装到订货单中指定的地区内的一处被许可人的新位置。为此目的,“授权最终用户”是指被许可人、其关联机构和员工以及受到不低于本协议条款和条件协议约束的独立承包商(但不包括任何外包商、设备管理提供商、托管服务提供商或应用服务提供商),并且他们代表被许可人而不是第三方行事;被许可人的“关联机构”是指被许可人直接或间接控制的任何法律实体;“控制”是指所有权或控股大于该实体股票的 50%,或者通过法律、合同或等效的手段控制该实体的董事会。如果被许可人希望超出上述限制范围使用本产品,应通知 CA 或被许可人从其获取本产品的 CA 关联机构,然后将收到针对该扩展使用而产生的相关费用开具的发票,并且被许可人应支付该相关费用。 -# -# 8. 本产品(包括本处可能提供给被许可人的任何源代码或者目标代码以及文档、外观、结构和组织)是 CA 和/或其许可人的专属财产,并受版权、专利、商标、商业秘密和/或其他法律的保护。本产品与任何复制品、修改、翻译、部分复制品、编译、衍生作品或任何适用 SDK 的合并部分的所有权仍归属于 CA 和/或其许可人所有。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。本产品作为单一产品被许可使用。其组成部分不得分开使用。被许可人及其授权最终用户需严格确保本产品与本协议条款的机密性,并尽最大努力防止未经授权泄漏或使用本产品。被许可人不得 (i) 泄露、反向编译、分解或者对本产品进行逆向工程,除非相应法律明文禁止上述限制;(ii) 基于本产品开发任何衍生作品;(iii) 在未获得 CA 对相关用途的许可授权的情况下,将产品用于提供设施管理、外包、服务机构、托管服务、云服务、按需服务或通过被许可人进行的类似活动,或者为了第三方的利益操作或使用产品;或者 (iv) 未经 CA 事先书面许可允许任何第三方使用产品。未经 CA 事先书面许可,被许可人不得向任何第三方公布产品任何基准测试的结果。被许可人未经 CA 事先书面同意,不得转让、出租、租赁、使用、复制或修改本产品的全部或者部分,或者允许他人进行上述行为,除非相应法律明文禁止上述限制。被许可人不得移除 CA 或其许可人的任何专属标记。被许可人可为产品创建合理数量的副本以用于灾难恢复“冷待机”、备份和存档用途,前提是对这些副本的使用仅限于测试被许可人的灾难恢复程序和有效性,并且在发生致使被许可人无法操作产品的实际灾难后的任何合理期间内是必需的。如果本协议因任何理由终止,被许可人需以书面形式向 CA 保证,本产品的所有版本和副本已经从被许可人的计算机和储存设备中删除,并交还给 CA 或销毁并不再使用。被许可人确认产品受欧洲和美国法律的管辖,包括出口管理法规 (15 CFR 730-774),并且同意遵守所有适用的进口和出口法律及法规。被许可人同意不会违反美国法律出口、再出口或转让产品,或将产品用于与化学、生物或核武器或导弹等应用相关的用途,如果您知道或有理由认为产品将用于或可能用于此类用途,则不得进行转让或转售,即使相应的订货单明确约定允许您进行转让或转售。本产品以及所有附随文档均完全由许可人独立承担开发费用,并且是“商业物品”和“商业计算机软件”,《联邦采购条例》的 2.101 部分“定义”中对这些术语进行了定义。根据《信息自由法》(FOIA) 的一个或多个豁免项(或适用的类似美国州法令),本产品可免于遵守 5 U.S.C.§552(b) 对信息披露的要求。以前交付给您的任何产品不可再次交付。以前未交付给被许可人的任何产品将在 CA 收到可接受的订货单后,交付给被许可人或其选择的经销商。产品应以电子交付(“ESD”)的形式进行交付,或者如果 CA 或 CA 关联机构单独要求交付有形介质,则应按照 INCOTERMS 2010 中的定义从 CA 或该 CA 关联机构的发货地以 CPT 形式交付。CA 或被许可人从其获取产品的 CA 关联机构同意承担所有关税,并且任何相关 CA 硬件(如果包括)的许可和授权都会在 CA 或该 CA 关联机构的发货位置交付给承运人时一并授予。如果使用电子交付,则不会交付任何有形的动产。这种电子交付可能不会自动免除适用的销售税或使用税。任何标识为“通用”或“GA”的操作系统表示产品根据 CA 当前发布的规范在此类操作系统上通用。货一旦实际发出或以电子方式交付了密钥/访问代码,则在上述第一时间内,已被视为接受货物。CA Inc. 是本产品的制造商。CA 有权在事先通知您的情况下,通过远程方式或在被许可人和/或您的关联机构设施现场执行审核,以验证被许可人及其授权最终用户遵从本协议条款的情况。CA 同意这种审核应在您办公室的正常工作时间内进行,并且 CA 应尽力确保这种审核不会不合理地干扰您的活动,并/或根据需要使用独立的第三方来执行审核,以遵守非披露条款。不管是否有其他法律选择条款,本协议适用纽约州的法律,并据以解释,并且对于由本协议引起或与之相关的任何诉讼,将位于纽约苏福克郡的州和联邦法院作为唯一的司法裁决机构。 -# +# +# 8. 本产品(包括本处可能提供给被许可人的任何源代码或者目标代码以及文档、外观、结构和组织)是 CA 和/或其许可人的专属财产,并受版权、专利、商标、商业秘密和/或其他法律的保护。本产品与任何复制品、修改、翻译、部分复制品、编译、衍生作品或任何适用 SDK 的合并部分的所有权仍归属于 CA 和/或其许可人所有。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。本产品作为单一产品被许可使用。其组成部分不得分开使用。被许可人及其授权最终用户需严格确保本产品与本协议条款的机密性,并尽最大努力防止未经授权泄漏或使用本产品。被许可人不得 (i) 泄露、反向编译、分解或者对本产品进行逆向工程,除非相应法律明文禁止上述限制;(ii) 基于本产品开发任何衍生作品;(iii) 在未获得 CA 对相关用途的许可授权的情况下,将产品用于提供设施管理、外包、服务机构、托管服务、云服务、按需服务或通过被许可人进行的类似活动,或者为了第三方的利益操作或使用产品;或者 (iv) 未经 CA 事先书面许可允许任何第三方使用产品。未经 CA 事先书面许可,被许可人不得向任何第三方公布产品任何基准测试的结果。被许可人未经 CA 事先书面同意,不得转让、出租、租赁、使用、复制或修改本产品的全部或者部分,或者允许他人进行上述行为,除非相应法律明文禁止上述限制。被许可人不得移除 CA 或其许可人的任何专属标记。被许可人可为产品创建合理数量的副本以用于灾难恢复“冷待机”、备份和存档用途,前提是对这些副本的使用仅限于测试被许可人的灾难恢复程序和有效性,并且在发生致使被许可人无法操作产品的实际灾难后的任何合理期间内是必需的。如果本协议因任何理由终止,被许可人需以书面形式向 CA 保证,本产品的所有版本和副本已经从被许可人的计算机和储存设备中删除,并交还给 CA 或销毁并不再使用。被许可人确认产品受欧洲和美国法律的管辖,包括出口管理法规 (15 CFR 730-774),并且同意遵守所有适用的进口和出口法律及法规。被许可人同意不会违反美国法律出口、再出口或转让产品,或将产品用于与化学、生物或核武器或导弹等应用相关的用途,如果您知道或有理由认为产品将用于或可能用于此类用途,则不得进行转让或转售,即使相应的订货单明确约定允许您进行转让或转售。本产品以及所有附随文档均完全由许可人独立承担开发费用,并且是“商业物品”和“商业计算机软件”,《联邦采购条例》的 2.101 部分“定义”中对这些术语进行了定义。根据《信息自由法》(FOIA) 的一个或多个豁免项(或适用的类似美国州法令),本产品可免于遵守 5 U.S.C.§552(b) 对信息披露的要求。以前交付给您的任何产品不可再次交付。以前未交付给被许可人的任何产品将在 CA 收到可接受的订货单后,交付给被许可人或其选择的经销商。产品应以电子交付(“ESD”)的形式进行交付,或者如果 CA 或 CA 关联机构单独要求交付有形介质,则应按照 INCOTERMS 2010 中的定义从 CA 或该 CA 关联机构的发货地以 CPT 形式交付。CA 或被许可人从其获取产品的 CA 关联机构同意承担所有关税,并且任何相关 CA 硬件(如果包括)的许可和授权都会在 CA 或该 CA 关联机构的发货位置交付给承运人时一并授予。如果使用电子交付,则不会交付任何有形的动产。这种电子交付可能不会自动免除适用的销售税或使用税。任何标识为“通用”或“GA”的操作系统表示产品根据 CA 当前发布的规范在此类操作系统上通用。货一旦实际发出或以电子方式交付了密钥/访问代码,则在上述第一时间内,已被视为接受货物。CA Inc. 是本产品的制造商。CA 有权在事先通知您的情况下,通过远程方式或在被许可人和/或您的关联机构设施现场执行审核,以验证被许可人及其授权最终用户遵从本协议条款的情况。CA 同意这种审核应在您办公室的正常工作时间内进行,并且 CA 应尽力确保这种审核不会不合理地干扰您的活动,并/或根据需要使用独立的第三方来执行审核,以遵守非披露条款。不管是否有其他法律选择条款,本协议适用纽约州的法律,并据以解释,并且对于由本协议引起或与之相关的任何诉讼,将位于纽约苏福克郡的州和联邦法院作为唯一的司法裁决机构。 +# # 9. CA 保证其可以签订本协议,如因 CA 未经相应授权或被许可人在产品交付时有权使用产品的区域内使用产品而侵犯了任何美国专利或版权,则 CA 应向被许可人提供赔偿,或自行选择解决任何第三方索赔。CA 还保证自产品交付给被许可人后的九十 (90) 天内,其分发的产品将实质上符合文档中所述的发布规范,前提是 CA 的唯一责任是尽合理的努力并遵守行业标准来修复任何缺陷。在收到被许可人有关违反上述任一保证的书面通知后的合理时间内,如果 CA 无法使产品 (a) 不侵犯第三方的知识产权或 (b) 实质上符合 CA 的书面规范,则 CA 可以终止许可并向被许可人或其授权 CA 经销商按比例退还许可费或支持和维护费。如果出现此类终止情况,则应根据以下条件按比例退款:(i) 所适用订货单的期限内剩余的月数,或 (ii) 如果产品根据永久许可进行许可,则使用为期三 (3) 年的分期偿还时间表(仅用于计算退款)。本节所述保证不适用于产品的 Beta 版、试用版、评估版或演示版,也不适用于 Software Development Kit。在以下情况下,CA 没有任何责任来补偿或补救保证索赔:(i) 侵权或保证索赔的宣称是由于对产品进行修改引起的,而且该修改不是由 CA 进行的,(ii) 未按照 CA 的规范、相关文档和指导准则使用产品,(iii) 宣称的侵权或保证索赔本可通过使用 CA 发布的更新或修补程序避免或以其他方式消除,(iv) 宣称的侵权或保证索赔是由于将产品与任何第三方产品结合使用所致,或者 (v) 未支付适用的产品费用,或被许可人以其他方式违反本协议。对于 CA 按照被许可人的特定指示制造的任何产品,此处包含的赔偿不适用,并且 CA 不承担任何责任。前述条款陈述了 CA 关于侵权索赔的全部责任和义务,以及在任何实际或宣称的侵犯任何知识产权或其他专有权利的情况下,对被许可人的全部补救措施。 -# -# 10. 除前述的保证外,在适用法律允许的最大范围内: -# -# (I) CA 不做其他任何保证,无论是明示或默示,包括但不限于适销性和适用于特定用途的默示保证; +# +# 10. 除前述的保证外,在适用法律允许的最大范围内: +# +# (I) CA 不做其他任何保证,无论是明示或默示,包括但不限于适销性和适用于特定用途的默示保证; # (II) CA 不对被许可人或任何其他一方可能肇因于本产品的使用、操作或修改所导致的索赔或损失负责,包括时间、金钱、商誉以及间接的损害,即使 CA 被告知有这种损害的可能。如根据所适用的法律上述责任限制无效,则 CA 对这类索赔的责任将局限于被许可人已经实际支付的本产品许可费用的金额。任何第三方(包括代理、分销商或授权 CA 转售商)都无权修改以上任何保证,或代表 CA 添加任何保证。CA 不保证产品满足被许可人的需求,或者产品在使用中不发生错误或产生间断。 -# +# # 11. 仅当被许可人遵守 CA 有关许可转让的普遍适用政策,包括产品使用范围不可扩展到被许可人的业务和被许可人持有过半数股份的子公司的业务之外的要求,才可转让本协议。 -# +# # 12. 如果被许可人违反本协议的任何条款、无力偿还债务、进入破产或接管程序,CA 有权停止履行其义务及/或立即终止本协议,除 CA 享有的其他权利外,被许可人需立即向 CA 或被许可人从其获取产品的 CA 关联机构支付所有到期和即将到期的费用。 -# +# # 13. 如果被许可人未支付适用的维护费用,之后可通过向 CA 或相应的 CA 关联机构支付拖欠期间每年 150% 的维护费用重新取得维护服务。 -# -# 14. 如果法院认为本协议的任何条款为非法、无效或者不可执行,余下的条款应持续完全有效。对本协议的任何违约的弃权不构成对于任何其他违约的弃权,并且弃权需经书面做出并且经弃权方授权代表签字后方为有效。有关本协议的任何问题应交由 CA, Inc. 处理,地址:One CA Plaza, Islandia, NY 11749,收件人:全球法律部。 -# +# +# 14. 如果法院认为本协议的任何条款为非法、无效或者不可执行,余下的条款应持续完全有效。对本协议的任何违约的弃权不构成对于任何其他违约的弃权,并且弃权需经书面做出并且经弃权方授权代表签字后方为有效。有关本协议的任何问题应交由 CA, Inc. 处理,地址:One CA Plaza, Islandia, NY 11749,收件人:全球法律部。 +# # 15. 如果被许可人在美利坚合众国国境以外获得许可,对产品的使用适用下列条款: -# +# # 尽管第 8 节的最后一句有所约定,本协议应受被许可人为产品获取许可所在的国家/地区的法律之管辖,除非下方另有所述。 -# +# # 欧洲、中东和非洲 -# +# # 1. 在 EMEA 地区,作为许可人的 CA 实体是 CA Europe Sàrl(“CA 欧洲”)。CA Europe Sàrl 是 CA Europe Sàrl 通过在 EMEA 地区内的当地 CA 子公司或通过授权的 CA 经销商已提供给被许可人的产品的许可人。CA 支持和维护(如果有)将由当地 CA 子公司或授权 CA 经销商提供。 -# +# # 2. EMEA 地区是指欧洲、中东和非洲地区。 -# +# # 3. 第 9 节第三和第五句话仅适用于第三方侵权。 第 9 节第二句话已删除,并以下方内容代替: # “CA 欧洲还保证产品将实质上按照产品文档中所述的适用规范操作,这始终取决于被许可人对本协议条款的遵守情况。如果 CA 欧洲违反了本保证,则 CA 欧洲对被许可人的补救措施是与被许可人进行协商,以 (i) 通过符合行业标准的合理工作来修复缺陷,或 (ii) 将产品更换为实质上符合文档规范的产品。如果在合理的时间段内无法修复缺陷或者缺陷更正或更换最终失败,被许可人应具有以下权利:(i) 在订阅许可的情况下,如果符合法律或法规要求,有权合理降低约定的费用且/或因此立即终止协议;(ii) 在永久许可的情况下,自行选择 (1) 废除或降低在适用的交易文档中约定的费用以及 (2) 针对损害或无效开支进行索赔。针对损害或无效开支进行索赔的权利受下面第 10 节中所述责任限制的约束。在永久许可的情况下,此处所述的保证索赔应限于产品交付后的九十 (90) 天内。保证补救措施具有以下前提条件:(i) 所投诉的任何错误或缺陷可由 CA 欧洲合理地再现,(ii) 产品未经修改,并按照文档所述进行使用;(iii) 违反并非全部或部分归咎于任何非 CA 产品或服务。以上保证是 CA 欧洲提供的唯一保证。CA 欧洲或其供应商不提供其他任何保证(包括产品无错误),不管是明示还是默示,包括但不限于对质量满意度、非侵权、适用性和/或适用于特定用途的默示保证。如果被许可人据此保证一节进行索赔,则被许可人无权或没有资格从任何其他 CA 关联机构那里寻求同样的保证补救措施。” -# +# # 4.条款 10 删去,并以下方内容代替: -# +# # “10.1 在因 CA 欧洲的重大过失或故意违约或者 CA 欧洲的法律代表或 CA 欧洲凭借其履行合同义务的人员出现重大过失或故意违约,导致死亡、身体伤害或健康伤害和损害时,以及根据产品责任法(“Produktehaftpflichtgesetz”)应承担责任时,不管责任的原因为何,CA 欧洲的责任都是无限的。 # 10.2 在轻微疏忽的情况下,不管责任的原因为何,仅当 CA 欧洲违反某项义务,该义务对于协议的执行非常重要,并且另一方通常相信其实现时,CA 欧洲才应承担责任。在此情况下,CA 欧洲对被许可人承担的责任将限于可预见并且通常由本协议引起的损害。 # 10.3 除此之外,CA 欧洲因间接、特殊和后果性损害(包括但不限于利润损失、业务损失、机会损失或商誉损失)对被许可人的责任应限于可预见并且通常由本协议引起的损害。 # 10.4 双方了解在 10.2 和 10.3 两节中所述通常由本协议授予的许可引起的可预见损害应限于被许可人据其获取产品的当前初始或续订期限的已付或应付最大费用。 # 10.5 数据损失的责任应限于在定期进行充分的数据备份的情况下通常进行的恢复工作。 # 10.6 本协议中提供的补救措施是双方之间的排他性补救措施。” -# +# # 5.本协议添加了以下各节: -# +# # “不可抗力。除付款义务和有关不披露的义务外,不管本协议中的任何相反条款,如果由于一方不可控的原因,包括但不限于战争、民众骚乱、天灾、员工罢工或其他停工(不管是部分还是整体)、任何政府或政府机构(包括任何法院或裁决机构)的任何法律、法令、法规或命令,致使任何诉讼或未能提出任何所需的诉讼,则任一方都不应对此承担责任。” -# +# # “被许可人数据。如果被许可人按照任何产品的要求将任何个人数据转交给 CA 欧洲,则该被许可人表示 (i) 其获得充分授权将个人数据提供给 CA 欧洲,并且遵循相关法规合法地进行该行为,(ii) CA 欧洲和 CA 公司集团内的任何实体(每个公司都是一个“CA 实体”)或其转包商都可处理这些数据以用于履行其义务,(iii) CA 欧洲可以出于上述目的将这些数据披露给任何 CA 实体及其转包商,并且可以将此类数据转移到原产国之外的国家/地区。CA, Inc 已通过 Safe Harbour 认证且 CA 实体承诺遵守相关的数据保护/隐私法规。” -# +# # 6. 瑞士的法律(不包括其冲突的法律条款)适用于本协议的解释和实施。对于由本协议引起或与之相关的任何诉讼,双方同意将位于苏黎世的瑞士法院作为唯一的司法裁决机构。《联合国国际货物销售合同公约》将不适用于此协议。 -# -# 7. 关于针对 EMEA 地区的本协议的任何问题都应交由 CA Europe Sàrl 处理,地址:Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland,收件人:全球法律部。 -# +# +# 7. 关于针对 EMEA 地区的本协议的任何问题都应交由 CA Europe Sàrl 处理,地址:Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland,收件人:全球法律部。 +# # 阿根廷 # 作为许可人的 CA 子公司是 CA Argentina S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用阿根廷的法律,并据以解释。因此产生的任何争议应由 Tribunales de la Cuidad de Buenos Aires 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Argentina S.A 处理,地址:Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires,收件人:财务部。 -# -# 澳大利亚 +# +# 澳大利亚 # 作为许可人的 CA 子公司是 CA (Pacific) Pty.Ltd (ABN 20 001 146 345)。 -# +# # 条款 2、3 以及 10 之结尾处均添加下方内容: # 尽管 CA 约定不提供保证,被许可人基于竞争和消费者法 2010 以及其他州立法和地区立法的特定权利不得被排除,但是可能受到限制。在适用法律允许的最大范围内,CA 排除所有未在本协议明确条款中明确约定的条款,并且在相关法律允许的最大限度下,限制竞争和消费者法 2010 以及其他州立法和地区立法要求的任何条款。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议受执行该交易所在州或地区的法律的管辖。 -# +# # 条款 10 添加下方内容: # 如果 CA 违反竞争和消费者法 2010 以及其他州立法和地区立法中包含的一项条件或者保证,CA 的责任仅限于选择,在提供货物的情况下,修理或者更换货物,或者支付货物修理或者更换的费用,以及在提供服务的情况下,重新提供服务或者支付重新提供服务的费用。如果上述条件或者保证为有关货物的销售权利、不受干扰地拥有或者完全所有权,或者如果 CA 提供的货物属于通常提供给个人、家庭或者日常消费使用的货物,那么本条款的限制不适用。 -# -# 巴西 +# +# 巴西 # 作为许可人的 CA 子公司是 CA Programas de Computador, Participaçðes e Serviços Ltda。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用巴西的法律,并据以解释。因此产生的任何争议应由圣保罗市政厅的法院进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Programas de Computador 处理,地址:Participaçðes e Serviços Ltda., Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000,收件人:全球法律部。 -# -# 加拿大 +# +# 加拿大 # 作为许可人的 CA 子公司是 CA Canada Company。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议受安大略省的法律管辖。 -# -# 智利 +# +# 智利 # 作为许可人的 CA 子公司是 CA de Chile, S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用智利的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Santiago 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Chile, S.A 处理,地址:Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago,收件人:财务部。 -# -# 中国 +# +# 中国 # 作为许可人的 CA 子公司是 CA (China) Co., Ltd。 -# +# # 条款 6 的第二句删去,并以下方内容代替: -# 所有费用均包含增值税。 -# +# 所有费用均包含增值税。 +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用中华人民共和国的法律,并据以解释。因此产生的任何争议应由位于北京的有管辖权的法院进行裁决。 -# +# # 哥伦比亚 # 作为许可人的 CA 子公司是 CA Software de Colombia S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用哥伦比亚的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Bogotá 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Software de Colombia S.A 处理,地址:Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia,收件人:财务部。 -# +# # 香港 # 作为许可人的 CA 子公司是 CA (Hong Kong) Limited,其主要工作地点为 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用中国香港特别行政区的法律,并据以解释。对于本协议引起的任何争议,将香港的法院作为唯一的司法裁决机构。 -# +# # 在第 10 节末尾添加了以下内容:上述责任限制以及上述最高责任金额并不影响或者损害被许可人在货品售卖条例、服务提供(隐含条款)条例或者管制免责条款条例下的法定权利,亦不限制或者排除任何对于完全由 CA 的疏忽而导致的死亡或者人身伤害的责任。 -# +# # 印度 # 作为许可人的 CA 子公司是 CA (India) Technologies Private Limited。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议及其条款应按照印度的法律管辖和解释,并且对于本协议引起的任何争议,将孟买的法院作为唯一的司法裁决机构。 如果以电子方式交付本产品,则 CA 应使所述产品可从位于印度之外的国家/地区的服务器进行下载。 -# +# # 印度尼西亚(参阅新加坡) -# +# # 日本 # 作为许可人的 CA 子公司是 CA Japan, Ltd。 -# +# # 条款 6 的第三句删去,并以下方内容代替: # 被许可人同意于 CA 提供发票后支付任何政府或政府机关征收的关税或税收,CA 应承担的税收除外。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用日本的法律,并据以解释。因此产生的任何争议应由位于日本东京的东京地方法院进行最终裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Japan, Ltd. 处理,地址:2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan,收件人:全球法律部。 -# +# # 韩国 # 作为许可人的 CA 子公司是 CA Korea Inc., Ltd。 -# -# 条款 8 最后一句删去,并以下方内容代替: +# +# 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用韩国的法律,并据以解释。 -# -# 条款 14 最后一句删去,并以下方内容代替: +# +# 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Korea Inc., Ltd 处理,地址:City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea,收件人:全球法律部。 -# +# # 马来西亚 # 作为许可人的 CA 子公司是 CA (Malaysia) Sdn. Bhd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用马来西亚的法律,并据以解释。对于本协议引起的任何争议,将马来西亚的法院作为唯一的司法裁决机构。 -# +# # 条款 10 添加下方内容: # 尽管 CA 说明不做其他保证,但是被许可人在消费者保护法 1999 下可能享有特定权利,保证仅限于适用的立法许可的范围。 -# -# 墨西哥 +# +# 墨西哥 # 作为许可人的 CA 子公司是 CA Software de México S.A. de C.V。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用墨西哥的法律,并据以解释。因此产生的任何争议应由 Tribunales de la Cuidad de México 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA Software de México S.A. de C.V, Av 进行处理, 地址:Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500,收件人:财务部。 -# +# # 新西兰 # 作为许可人的 CA 子公司是 CA Pacific (NZ) Ltd。 -# +# # 尽管条款 6 最后一句中有约定,被许可人未付款项应收的利息为月 1.5%。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用新西兰的法律,并据以解释。对于本协议引起的任何争议,将新西兰的法院作为唯一的司法裁决机构。 -# +# # 条款 10 添加下方内容: # 尽管 CA 说明不做担保,但是被许可方在消费者担保法 1993 下或者在其他立法下可能享有特定权利,该权利不得被排除或者限制。如果被许可人是为了消费者担保法 1993 中定义为商业的目的购买货物和服务,则消费者担保法 1993 对于 CA 提供的所有货物以及服务不适用。如果被许可人不是为了消费者担保法 1993 中定义为商业的目的购买本产品,则本条款中的限制受该法案的限制。 -# +# # 条款 12 添加下方内容: # 如果被许可人被决议清算或者解散,或者清算或解散被许可人的程序已经开始,CA 在本条款下的权利依然适用。 -# +# # 秘鲁 # 作为许可人的 CA 子公司是 CA de Peru S.A。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用秘鲁的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de La Cuidad de Lima 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 CA de Peru S.A 处理,地址为:Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru,收件人:财务部。 -# +# # 菲律宾 # 作为许可人的 CA 子公司是 Philippine Computer Associates International, Inc。 -# +# # 删除了第 8 节的前八句,并以下方内容代替: # 本产品与任何修改的所有权仍归属于 CA 所有。本产品系属商业机密及 CA 或其许可人的专属财产。被许可人同意 CA 无需征得同意即可将被许可人提供的有关本产品的任何反馈用于任何 CA 业务用途,包括根据这些反馈复制和准备衍生作品,以及分发这些衍生作品。本产品的使用权不得用以交换 CA 任何其他产品的使用权。被许可人和其员工需严格确保本产品与本协议条款的机密性。在适用法律允许的最大范围内,被许可人不得泄露、反向编译、分解以及对本产品进行逆向工程。 -# +# # 条款 8 最后一句删去,并以下方内容代替: -# 本协议适用菲律宾的法律,并据以解释。对于本协议引起的任何争议,将马卡迪市的法院作为唯一的司法裁决机构。 -# +# 本协议适用菲律宾的法律,并据以解释。对于本协议引起的任何争议,将马卡迪市的法院作为唯一的司法裁决机构。 +# # 条款 12 删去,并以下方内容代替: # 如果被许可人违反本协议的任何条款、无力偿还债务、进入破产或接管程序,CA 有权在得知消息后立即停止履行其义务及/或终止本协议,除 CA 享有的其他权利外,被许可人需立即支付所有到期和即将到期的费用给 CA。 -# -# 新加坡 +# +# 新加坡 # 作为许可人的 CA 子公司是 CA (Singapore) Pte. Ltd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用新加坡的法律,并据以解释。对于本协议引起的任何争议,将新加坡的法院作为唯一的司法裁决机构。 -# +# # 第 9 条结尾处添加下方内容: # 在适用法律许可的情况下,CA 放弃对于品质满意或者适用性的全部默示条件或者保证。 -# +# # 台湾 # 作为许可人的 CA 子公司是 CA (Taiwan) Limited,其注册办公地址为 17F/B, No. 167, Tun Hwa North Road, Taipei City 105, Taiwan。 -# +# # 条款 6 的第二句删去,并以下方内容代替: # 所有费用均不含增值税。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 不管是否有其他法律选择条款,本协议适用中国台湾的法律,并据以解释。因此产生的任何争议由台北地区法院进行裁决。 -# +# # 泰国 # 作为许可人的 CA 子公司是 CA Sales (Thailand) Co., Ltd。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用泰国的法律,并据以解释。对于本协议引起的任何争议,将泰国的法院作为唯一的司法裁决机构。 -# +# # 委内瑞拉 # 作为许可人的 CA 子公司是 Computer Associates (CAI) de Venezuela, CA。 -# +# # 条款 8 最后一句删去,并以下方内容代替: # 本协议适用委内瑞拉的法律,并据以解释。因此产生的任何争议应由 Tribunales Ordinarios de la Cuidad de Caracas 进行裁决。 -# +# # 条款 14 最后一句删去,并以下方内容代替: # 有关本协议的任何问题应交由 Computer Associates (CAI) de Venezuela, CA 处理,地址:Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela,收件人:财务部。 -# +# # 16. 如果本产品包含第三方软件,并且许可人要求将该软件的特定许可条款和条件纳入本协议,这些特定条款和条件位于本协议下方,特此附录以供参考。 -# +# # 许可证持有人确认已阅读并理解该许可的内容,并通过在下面输入 "accept" 表示同意其条款和条件。被许可人也承认本协议(包括任何提及本协议的订货单和本协议的下方所列的任何有关第三方软件的条款)是各方之间关于这件主题事项的完全协议,并且本协议取代被许可人已经收到的有关本协议的主题事项的任何信息,除非有以下情况,即本协议(不包括下方的第三方条款)已经全部被另一个由被许可人和 CA 签字生效的授予被许可人使用本产品的许可的书面协议所取代。本协议只能通过有双方授权的代表签字的书面协议进行更改。 -# +# # = = = = = -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 最后更新日期 2016-01-12 -# -# +# +# +# 最后更新日期 2016-05-25 +# +# # 在下面输入 "accept" 可接受该协议中如上所述的条款和条件,然后继续进行安装过程。 -# +# # 在下面输入 "reject" 可停止安装过程。 -# +# # CA-EULA 的有效值集合为: {accept, reject}。 CA-EULA=accept diff --git a/webview/eula-introscope/ca-eula.zh_TW.txt b/webview/eula-introscope/ca-eula.zh_TW.txt index 8ab4d7b..dd8bf61 100644 --- a/webview/eula-introscope/ca-eula.zh_TW.txt +++ b/webview/eula-introscope/ca-eula.zh_TW.txt @@ -3,347 +3,340 @@ # CA 終端使用者授權合約檔案 # ############################################################################## -# +# # 所安裝 CA 軟體產品與相關文件以及 SDK (定義如下) 之 CA 使用者授權合約 (以下稱為「合約」) 已包含在產品 (以下稱為「產品」) 中。 -# +# # 安裝及使用產品前,請詳細閱讀下列與使用產品相關的條款與條件。台端在本合約將被稱為「貴用戶」或「使用人」。 -# -# 於以下鍵入 "accept" (接受) 後,表示貴用戶已同意以下事項: -# -# (I) 貴用戶已成年,具完全法定能力,可適當約束自我及雇主之行為以遵循本合約之條款; +# +# 於以下鍵入 "accept" (接受) 後,表示貴用戶已同意以下事項: +# +# (I) 貴用戶已成年,具完全法定能力,可適當約束自我及雇主之行為以遵循本合約之條款; # (II) 貴用戶本身及/或以貴用戶雇主之授權代表身分,受本合約之約束。 -# +# # 於以下鍵入 "reject" (拒絕) 後,安裝程序將終止。 -# +# # 1. CA, Inc. 或以下第 15 條之後所個別列出認可販售本產品之國家地區的 CA 實體 (以下稱為「CA」) 為使用人提供一 (1) 套產品供其依照以下條件使用:任何訂購單 (定義如下) 或產品包裝盒中的 CD 外盒上授權使用限制 (以下稱為「授權使用限制」) 所載明的 (a) 數量和 (b) CA 用來量測產品使用情形 (包括但不限於 MIPS、CPU、階層、伺服器或使用者) 的發佈準則。CA 以限制、非獨佔、不可轉讓為原則,將產品授權給使用人在「期限」內僅用於內部業務用途,另外也依據以下其他條款與條件:(a) 任何經使用人與 CA 附屬公司簽署或簽約之 CA 訂購單或註冊表格;或 (b) 任何由 CA 視需要提供給使用人之授權程式憑證,參照並納入本合約 (以下稱為「訂購單」) 的條款。 -# +# # 2. 如果產品為目前尚未正式發行之 alpha 版或試用版程式 (在下文中稱為「試用版程式」或「試用版軟體」),CA 不保證正式版本與試用版程式完全相同,亦不保證貴用戶不須重新安裝正式版本。使用人同意若註冊支援服務或經 CA 要求而註冊該服務,使用人應提供 CA 關於使用人對產品操作經驗之特定資訊。使用人同意並承認下列事項:(a) 產品試用版僅適用於測試,不做為任何生產用途,經 CA 書面同意者不在此限;以及 (b) 產品試用版未經測試或偵錯,純粹做為實驗用途,其文件僅供參考,且多有不完整之處。使用人同意 CA 不保證產品試用版之完整性、正確性或使用人之使用或操作。試用版產品係以「原有形式」提供,不提供任何明示或默示之承諾或擔保,其包含但不限於對於產品之所有權或未侵權之任何承諾或擔保。如果使用人同時為試用版產品的測試人員 (依照使用人在取得試用版產品前於註冊程序中同意之試用版測試或發行前版本測試合約 (以下稱為「試用版測試合約」) 所定義),使用人同意本授權合約之條款為「試用版測試合約」之附加內容,而非使取代該合約。 -# +# # 3. 若產品獲授權為試用或評估之用,使用人同意產品僅用於評估,並在 30 天 (除非另外註明期限) 的評估期 (以下稱為「試用期」) 中確實遵守第 1 條之使用限制。試用期結束後,使用人之產品使用權自動失效,使用人同意解除安裝產品,並將全部或部份產品歸還 CA,或以書面方式向 CA 證明已從使用人電腦資料庫及/或儲存裝置中刪除與銷毀全部或部份產品。若使用人希望在試用期滿後繼續延伸其產品使用權,使用人可與 CA 或 CA 附屬公司聯繫並支付費用以取得產品之授權。使用人在試用期間僅以「原有形式」使用產品,不具任何瑕疵責任擔保,CA 亦不負責全部瑕疵責任擔保,包括但不限於適售性之默示擔保及特定用途之適用性,亦不負責本合約他處明示之任何瑕疵責任擔保。 -# +# # 4. 如果產品包含軟體開發套件 (以下稱為「SDK」),本段之條款與條件僅適用於 SDK 的使用層面。SDK 可能包括軟體、API 和相關文件。SDK 僅供使用人內部使用,以開發整合產品與協力廠商軟硬體之軟體,或開發與產品共同使用之軟體 (例如代理程式)。使用人對 SDK 之使用僅限於幫助產品的內部使用。使用人不具有任何關於產品之散發權利。除了下述第 8 條中提及之使用限制之外,使用人不得複製、揭露、銷售,或將 SDK 或文件,或任何含有 SDK 可執行版之應用程式散佈給第三方,亦不得置於網際網路,或在超過授權使用限制所規定的範圍外,使用上述可執行程式。本條款與本合約中其他條款有所衝突時,以本條款中關於 SDK 之使用方面之條款為優先採用。 -# +# # 在適用法律的最大許可下,即使與此處條文內容有任何違背之處, SDK 係以「原有形式」加以提供與授權,不具瑕疵擔保責任。 -# +# # 5. 支付訂購單中所載明或使用人與 CA 或任何 CA 附屬公司授權經銷商之間所協議之費用,可使使用人具有在訂購單載明之期限 (以下稱為「期限」) 內使用產品之權利,其中可能包括在訂購單所示期限內接受維護服務之權利。全部費用均須依訂購單中的指定支付,或若未指定,則應於 CA 發票日起淨三十 (30) 天內支付。使用人將可安裝產品的每一個新版本。最初期限結束後,使用人須支付訂購單載明之費用,始得繼續使用產品及/或維護服務。如果貴用戶是從 CA 授權經銷商取得產品授權,則本合約中管理付款、定價和折扣的條款將不適用,因為此等條款是貴用戶與所選 CA 經銷商之間的協定。針對可能出現在使用人採購單 (包括但不限於預印條款),或出現為使用人與 CA 授權經銷商訂單的一部份,但與本合約之條款與條件相牴觸或有所差異的任何條款,將不適用於本產品且應視為無效。 關於任何內容需要持續更新的產品 (例如簽名檔和安全性更新),使用人可在授權生效日期起算一 (1) 年內享有此類內容更新,不受上述規定之限制。 -# +# # 6. 如係由 CA 或 CA 附屬公司提供維護,則需依據所簽訂之訂購單所示,每年重新續約。全部費用均不含稅。使用人同意在收到 CA 或 CA 附屬公司 (若適用) 發出之發票後,支付政府徵收或公家機關代收之任何關稅或稅金,包含但不限於聯邦稅、州稅與地方稅、營業稅、使用稅、加值稅及個人財產稅 (不包含 CA 應付之加盟及所得稅)。上述關稅或稅金之免稅聲明須提供 CA 相關文件證明。使用人逾期未償付之發票,每月衍生之利息至少 1.5%,至多則依照聯邦法定利率。 -# +# # 7. 使用人可以在訂購單中指定的授權地區安裝與部署本產品,數量上限依授權使用限制所規定。使用人可以同意其授權使用者在任何地方針對使用人及其附屬公司的內部業務用途存取本產品,前提是使用人在此明確同意授權使用者的違反行為應視為是使用人的違反行為和責任。經事先書面通知之後,使用人得將本產品的使用地點改到訂購單中指定之授權地區內的新使用人地點。在這份文件中,「授權使用者」是指使用人、其附屬公司和所屬員工,以及所應遵守的條款與條件的限制程度不下於本文的條款與條件,並代表使用人而非第三方行為的獨立承包商 (但任何外包商、設備管理供應商、委外服務供應商或應用程式服務供應商除外);使用人相關「附屬公司」是指使用人直接或間接控制的任何法律實體;而「控制」是指擁有或控制大於 50% 實體股份,或依法律效力或合約 (或相等實力) 控制此等實體的董事會。若使用人欲在上述限制之外使用產品,須告知 CA 或 CA 附屬公司,使用人採購本產品的來源並開立發票及支付延伸使用之費用。 -# +# # 8. 產品 (包括任何可能提供給使用人之來源或目的碼) 以及文件、外觀、結構和組織,均為 CA 及/或其授權人之專利財產,並可能受到著作權、專利、註冊商標、商標、商業機密及/或其他法律之保護。SDK 產品所有權或其任何複製、修改、轉譯、部分複製、組譯、衍生物件或合併之程式歸 CA 及/或其授權人所有。 使用人同意 CA 在無需獲得使用人同意的情況下,使用由其所提供且與本產品相關的任何意見反應,作為任何 CA 商業用途使用,包括以此等意見反應為依據的衍生作品重製與準備,以及此等衍生作品的散佈。產品之相關使用權不得替換為其它任何 CA 產品。產品僅做為單一產品進行授權。其組件不得分開單獨使用。貴用戶與其授權使用者須將產品及本授權之條款視為極機密,極力避免產品遭受未經授權的公開和使用。貴用戶不得 (i) 揭露、反組譯或分解產品,亦不得進行產品之還原工程,但若準據法律明文禁止上述限制者,則不在此限;(ii) 建立任何產品之衍生物件;(iii) 將產品用於提供設備管理、外包、服務機構、裝載服務、雲端服務、隨選服務,或在使用人沒有授權此等目的之 CA 授權的情況下,操作或將本產品用於第三方以牟利的類似活動;或 (iv) 准許任何第三方使用本產品,已由 CA 書面授權者除外。使用人未獲 CA 書面同意前,不得向任何第三方揭露產品之任何基準測試結果。使用人不得轉送、讓渡、出租、使用、複製或修改全部或部份產品,或在未獲 CA 書面同意下准許他人對產品進行以上各項行為,但若準據法律明文禁止為上述限制者,則不在此限。使用人不得移除 CA 或其授權人之任何所有權標記。使用人可以針對災難復原「冷待命」、備份及封存等目的,製作合理數量的本產品副本;前提是此類副本的使用僅限於測試使用人的災難復原程序和效率,且必要時僅限實際災難發生之後,使用人無法操作本產品的任何合理期間。若此授權因任何原因而終止,使用人應向 CA 提出書面證明,證明全部或部份產品已從全部電腦及儲存裝置中刪除,並已歸還 CA 或銷毀,將不再使用。使用人同意本產品受歐洲和美國法律約束,包括「出口管理規則 (Export Administration Regulations)」(15 CFR 730-774),並同意遵守所有適用之進出口法律和規定。使用人同意不會在違反美國法律的情況下出口、再出口或傳輸本產品,或將本產品用於任何化學、生化或核子武器或飛彈應用等相關目的,若使用人瞭解或有原因知道計劃或有可能將本產品用於此等目的,也不會傳輸或轉售本產品。本產品及相關文件係完全由私人開發完成,並屬於美國聯邦採購法規 (Federal Acquisition Regulation,FAR) 分篇 2.101 「定義」中所定義的「商業產品」和「商業電腦軟體」。本產品得不依資訊公開法 (FOIA) 5 U.S.C. 之規定向大眾提供。§552(b) 在該法令的一或多項豁免下 (或類似的美國州法,若適用)。任何先前提供給貴用戶的產品可能無法重複提供。在 CA 收到可接受訂單之後,任何先前未提供給使用人的產品將提供給使用人或其選定的經銷商。本產品應以電子交付形式 (“ESD”) 交貨,或如果 CA 或 CA 附屬公司分別要求從 CA 或此等 CA 附屬公司的出貨點,以有形媒體、CPT (如 INCOTERMS 2010 中所定義) 的形式交貨。使用人採購本產品的 CA 或 CA 附屬公司同意負責所有的關稅和結關,且任何 CA 硬體 (若包含) 的所有權會在 CA 或此等 CA 附屬公司的出貨地點,於交貨時間點轉讓給貨運業者。若是採用電子交付,將不會提供有形的個人所有物。此類電子交付形式可能無法自動提供適用稅額或使用稅之免除。認定為「泛型」或「GA」的任何作業系統表示 CA 按照 CA 目前發佈的規格向大眾提供的本產品,適用於此等作業系統。在最早的實體運輸點或電子形式交貨時授權碼/使用程式碼的傳遞即視為完成交貨。CA Inc. 是本產品的製造商。CA 保留在通知貴用戶後遠端或駐站稽核使用人和 (或) 其附屬公司設施的權利,以查證使用人及其授權使用者是否遵循本合約條款。CA 同意應在貴用戶辦公室的正常工作時間內進行此等稽核,且 CA 在進行此等稽核時,應盡力避免以不合理的方式干擾貴用戶的活動,和 (或) 視需要使用受保密條款約束的獨立第三方進行稽核。本合約應遵守美國法律,並依據美國法律作出解釋,不必顧及其選擇的法律規定,且任何與本合約內容或相關的行動都必須以紐約蘇福克郡的聯邦上訴法院的專屬管轄權為準。 -# +# # 9. CA 保證簽署本合約,並保證賠償或選擇解決 CA 未經授權、或使用人在經授權情況下使用產品,但侵害任何美國專利或交貨時授權使用人使用本產品之所在司法管轄區著作權的任何第三方的主張。CA 亦保證自產品交付使用人起九十 (90) 天內,其分散式產品會符合其說明文件中所列示之發佈規格運作,前提是 CA 的唯一責任為盡力使產品與業界標準達成一致,以避免任何缺失。在收到使用人針對上述擔保之書面違約通知後合理期限內,若 CA 無法使產品之操作 (a) 符合第三方智慧財產權或 (b) 確實符合 CA 之書面規格,CA 得以終止此授權,並根據授權費用及 (或) 已支付的支援與維護費用,提供或安排按比例退費給使用人或其 CA 授權經銷商。若有此等終止情形,按比例退費應根據 (i) 適用訂購單期限內剩餘的月份數,或 (ii) 如果本產品是以永久授權的方式進行授權,使用 (僅限用於退費計算用途) 三 (3) 年的分期償還計畫表進行計算。本條文中所列示的保固內容並不適用於本產品的測試版、試用版、評估或展示版本,或是軟體開發套件。CA 針對下列情況不具賠償或補償保固聲明的責任:(i) 如果侵權或保固聲明的主張是因為修改產品所致,CA 所做的修改除外,(ii) 如果未遵守 CA 的規格、相關說明文件及指導方針使用本產品,(iii) 如果主張的侵權或保固聲明可因使用 CA 發佈的更新或修補程式而避免或消除,(iv) 如果主張的侵權或保固聲明是因為結合使用本產品與任何第三方產品所致,或 (v) 如果尚未支付應付的產品相關費用,或使用人違反本合約。此處所提及的賠償將不適用,且 CA 不負與 CA 所生產的任何產品在使用人明確指導下有關的責任。上述條款說明 CA 有關侵權聲明的所有責任和義務,以及針對任何實際或主張的侵權或侵佔任何智慧財產權或其他所有權,提供給使用人的專有補救措施。 -# -# 10. 除上述規定外,尚須符合下列法律規定: -# -# (I) CA 不提供任何明示或默示之保證,其包括但不限於適售性之默示保證及任何特定用途之適用性; +# +# 10. 除上述規定外,尚須符合下列法律規定: +# +# (I) CA 不提供任何明示或默示之保證,其包括但不限於適售性之默示保證及任何特定用途之適用性; # (II) 在任何情況下,對貴用戶或其它任何人因使用、操作或修改產品造成之損失,包括時間、金錢、商譽及衍生性損害或間接損害,即使 CA 曾被告知此等損害之可能性,CA 均無須負責。在上述之責任限制與法律牴觸時,CA 之責任僅限於使用人實際支付之授權費用。包括代理商、經銷商或授權零售商在內之第三方,均無權修改上述擔保,或代表 CA 提供其它擔保。CA 不保證本產品將符合使用人的要求,亦不保證該產品之使用不會中斷或完全沒有錯誤。 -# +# # 11. 使用人在同意 CA 所提出與授權合約相關之政策時,包括產品使用範圍不得超出使用人及使用人所屬子公司產業,始簽署本合約。 -# +# # 12. 若使用人違反本合約任一條款,或使用人無償付能力,或使用人宣告會被宣告破產或受破產管理人管理,CA 有權據此中斷服務並且/或者立即終止本合約。除 CA 其它所有權利之外,全部應支付或即將支付之費用 (若有的話) 必須立即支付給使用人採購本產品的 CA 或 CA 附屬公司。 -# +# # 13. 若使用人未支付維護費用,須支付 CA 或個別 CA 附屬公司相當於 150% 的年度維護費用,始得恢復維護服務。 -# +# # 14. 如果法院認為本合約的任何條款為違法、無效或不可執行,剩餘的其它條款仍保有完全效力與效果。任何違反本合約責任的免除不代表對其它違反本合約責任的免除,免除責任將為無效,除非由免除責任一方之授權代表以書面簽署。關於本合約之任何問題,請洽詢 CA, Inc. 全球法律部,地址為 One CA Plaza, Islandia, NY 11749。 -# +# # 15. 使用人若在美國以外地區取得產品之授權,須遵循下列使用產品之條款: -# -# 本合約受使用人取得產品授權之所在國家法律管轄,不受第 8 條最後條款限制,但以下情形除外: -# +# +# 本合約受使用人取得產品授權之所在國家法律管轄,不受第 8 條最後條款限制,但以下情形除外: +# # 歐洲、中東和非洲 -# +# # 1. 在 EMEA,授權人 CA 實體為 CA Europe Sàrl (以下稱為「CA Europe」)。CA Europe Sàrl 是產品授權人,透過 CA Europe Sàrl 授權,經由 EMEA 的當地 CA 子公司或經由 CA 授權經銷商將產品提供給使用人使用。CA 支援與維護 (若有的話) 會由當地 CA 子公司或由 CA 授權經銷商提供。 -# +# # 2. EMEA 代表歐洲、中東和非洲。 -# +# # 3. 第 9 條的第 3 及第 5 個條款僅適用於第三方侵權。 第 9 條第二句已刪除,並以下列條文取代: # 「CA Europe 也保證本產品將以符合產品說明文件中所列示之適當規格確實操作,但前提是使用人必須遵守本合約條款。如果 CA Europe 違反此保證,在諮詢使用人的情況下,CA Europe 必須 (i) 執行符合業界標準的適當工作來解決此瑕疵,或 (ii) 以確實遵守說明文件的產品取代原先的產品,作為使用人的補救措施。如果無法在合理期限內解決此瑕疵,或如果此瑕疵的矯正或替換最終失敗,使用人應擁有 (i) 在訂閱授權的情況下,如果符合法律或法令要求,合理降低協定之費用和 (或) 因故立即終止的權利;(ii) 在永久授權的情況下,選擇 (1) 撤銷或降低適用交易文件中協定之費用,及 (2) 針對損害或無效支出補償之索賠權利。損害或無效支出的索賠權利應受下方第 10 條中所載明的責任限制。在永久授權的情況下,此處所提及之保固聲明在交付產品後的九十 (90) 天內會開始計算時效。保證補救措施受限於 (i) CA Europe 能夠適度重現所申訴之錯誤或瑕疵,(ii) 本產品未經修改且遵照說明文件進行使用,且 (iii) 違約並非全是或部份是任何非 CA 的產品或服務所致。上述保證是 CA Europe 自行提供的保證。無論是明示或默示,CA Europe 或其供應商不提供包括產品完全沒有錯誤之其他保證,包括但不限於品質滿意、不侵權或適用性的默示保證,及 (或) 適用於特定目的之保證。如果使用人據此保證條文提出索賠,使用人無權或無資格從任何其他 CA 附屬公司尋求相同保證補救措施。」 -# +# # 4.第 10 條已刪除,並以下列條文取代: -# +# # 「10.1 因 CA Europe 之重大過失或故意違約,或因 CA Europe 法律代表或 CA Europe 負責其合約義務執行的個人之重大過失或故意違約,而造成死亡或身體傷害或健康受傷及損害,以及發生 Product Liability Act (以下稱為「Produktehaftpflichtgesetz」) 中所列之責任事件時,CA Europe 的責任 (無論責任原因為何) 將不受限制。 # 10.2 在些微過失的情況下,如果 CA Europe 違反執行本合約的必要義務,以及違反另一方通常信任的履行義務,則 CA Europe (無論責任原因為何) 必需對此負責。在此情況下,CA Europe 對使用人的責任將限於可預見的損害,以及執行本合約時通常會發生的損害。 # 10.3 進一步說明上述 CA Europe 對使用人的責任,針對間接、特殊及衍生性損害 (包括但不限於利益損失、業務損失、機會損失或商譽損失) 方面的責任應限於可預見的損害,以及執行本合約時通常會發生的損害。 # 10.4 可預見的損害通常在執行本合約中的授予授權時發生,雙方應同意上述第 10.2 和 10.3 條的定義,將可預見的損害限於使用人採購本產品當時之最初或續約期限的最高已付或欠下的費用。 # 10.5 在定期和適當資料備份的案例中,資料遺失的責任僅限於典型的復原工作。 # 10.6 本合約中所提供的補救措施為雙方的專有補救措施。」 -# +# # 5.下列條款將附加於本合約: -# +# # 「不可抗力因素。除了付款義務和保密相關義務之外,無論本合約有任何相反條文,在採取此類行動或因超出任一方所能控制而引起此類失敗的情況下,包括但不限於戰爭、內亂、天災、罷工或其他勞工停工 (無論是局部或全面),或任何政府或政府組織 (包括任何法院或法庭) 的任何法律、法令、法規、命令,任一方均不須對任何採取的行動或任何無法成功採取的必要行動負責」。 -# +# # 「使用人資料。如果使用人將任何個人資料傳至 CA Europe,作為根據任何產品的必要項目,則使用人表示 (i) 其已正式授權將個人資料提供給 CA Europe,且其行為合法並遵守相關法規,(ii) CA Europe 與 CA 公司集團 (每個公司皆為「CA 實體」) 內的任何實體或其轉包商可以處理此等資料,以履行其義務,且 (iii) CA Europe 可就此目的將此等資料提供給任何 CA 實體與其轉包商,並可將此等資料轉移到原始國家地區之外的地方。CA, Inc. 已獲「資料保密」(Safe Harbor) 認證且 CA 實體已承諾遵守相關資料保護/隱私權法規。」 -# +# # 6. 本合約之構成與強制執行應受瑞士法律 (本合約條文與法律牴觸者除外) 管轄。雙方同意根據本合約所衍生或與其相關的任何行動,應受位於蘇黎世的瑞士法院獨有管轄。本合約不受「聯合國國際貨物銷售合約公約」(United Nations Convention on Contracts for the International Sale of Goods) 之約束。 -# +# # 7. EMEA 地區關於本合約之任何問題,請洽詢 CA Europe Sàrl 全球法律部,地址為 Building A, Lake Geneva Centre, Route de la Longeraie 9, 1110 Morges, Switzerland。 -# +# # 阿根廷 # 授權人 CA 子公司為 CA Argentina S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守阿根廷法律。據此任何爭議由布宜諾斯艾利斯地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Argentina S.A 財務部,地址為 Avenida Alicia Moreau de Justo, 400, 2 piso, 1107, Buenos Aires。 -# -# 澳洲 +# +# 澳洲 # 授權人 CA 子公司為 CA (Pacific) Pty.Ltd (ABN 20 001 146 345)。 -# +# # 下列條款將附加於第 2、3 及 10 條之後: # 雖然 CA 指明不擔負任何擔保,但是使用人在 Competition and Consumer Act 2010 與其它州及地方法律之下,可以擁有不得排除但是可能受到限制的特定權利。在法律的完全許可下,CA 排除本合約中所有未明確說明於明示條款的條款,並在適用法律的完全許可下,限制 Competition and Consumer Act 2010 與其它州及地方法律強制的任何條款。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約受進行交易的州或地方法律管轄。 -# +# # 下列條款將附加於第 10 條: # 當 CA 違反 Competition and Consumer Act 2010 或其它州及地方法律默示的條件或擔保時,CA 的責任受到限制。就貨物而言,CA 可決定修復或更換貨物,或者支付貨物修復或更換之費用;就服務而言,CA 可決定再次提供服務或是支付重新提供服務之費用。在條件或擔保係關於關貨物銷售權利、秘密擁有或確實所有權時,或者如果 CA 提供的貨物屬於個人、國內或家用或消費等普遍取得的類型,則本條的任何限制不適用。 -# -# 巴西 +# +# 巴西 # 授權人 CA 子公司為 CA Programas de Computador, Participaçðes e Serviços Ltda。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守巴西法律。據此任何爭議由聖保羅市政府法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Programas de Computador, Participaçðes e Serviços Ltda. 全球法律部,地址為 Avenida das Nações Unidas, 12901 – 6 andar – Torre Norte – São Paulo – SP, 04578-000。 -# -# 加拿大 +# +# 加拿大 # 授權人 CA 子公司為 CA Canada Company。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約受安大略省法律管轄。 -# -# 智利 +# +# 智利 # 授權人 CA 子公司為 CA de Chile, S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守智利法律。據此任何爭議由聖地牙哥地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Chile, S.A 財務部,地址為 Avenida Providencia 1760, piso 15 – Edificio Palladio, oficina 1501 - 6640709 Providencia - Santiago。 -# -# 中國 +# +# 中國 # 授權人 CA 子公司為 CA (China) Co., Ltd.。 -# +# # 第 6 條第二句已刪除,並以下列條文取代: -# 全部費用均含加值稅。 -# +# 全部費用均含加值稅。 +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循中華人民共和國之法律,不論其法律條款之選擇為何。據此任何爭議由位於北京之管轄法院仲裁。 -# +# # 哥倫比亞 # 授權人 CA 子公司為 CA Software de Colombia S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守哥倫比亞法律。據此任何爭議由波哥大地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Software de Colombia S.A 財務部,地址為 Edificio Grupo Santander Central Hispano Torre 2 - Oficina 401 Carrera 7 - Nº 99-53 - Bogotá D.C. - Colombia。 -# +# # 香港 # 授權人 CA 子公司為 CA (Hong Kong) Limited,也是其主要營業地點,地址為 Suites 2301 2306, 23rd Floor, Dah Sing Financial Centre, 108 Gloucester Road, Wanchai, Hong Kong。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守香港法律。香港法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條之後:上述之責任限制與上述之責任上限,並無影響貴用戶依商品銷售法、服務提供 (默示條款) 法,或免除條款控制法所得享有之法定權利,亦不限制或排除任何純因 CA 之過失所導致之死亡或個人傷害責任。 -# +# # 印度 # 授權人 CA 子公司為 CA (India) Technologies Private Limited。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約及以下條款之管轄與構成須遵守印度法律,並且孟買法院獨有仲裁本合約所引起任何爭議之司法管轄權。 若產品是以電子形式交付,CA 應該讓該產品能從印度以外國家的伺服器進行下載。 -# +# # 印尼 (請參閱新加坡) -# +# # 日本 # 授權人 CA 子公司為 CA Japan, Ltd.。 -# +# # 第 6 條第三句已刪除,並以下列條文取代: # 使用人同意在收到 CA 發出之發票後,支付政府徵收或公家機關代收之任何關稅或稅金,不包含 CA 應付之稅金。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循日本之法律,不論其法律條款之選擇為何。據此任何爭議最終由位於日本東京之東京地區法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Japan, Ltd. 全球法律部,地址為 2-7-9, Hirakawa-cho, Chiyoda-ku, Tokyo, 102-0093, Japan。 -# +# # 韓國 # 授權人 CA 子公司為 CA Korea Inc., Ltd.。 -# -# 第 8 條最後一句已刪除,並以下列條文取代: +# +# 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循大韓民國之法律,不論其法律條款之選擇為何。 -# -# 第 14 條最後一句已刪除,並以下列條文取代: +# +# 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Korea Inc., Ltd. 全球法律部,地址為 City Air Tower (18th Fl.), 159-9, Samsung-Dong, Kangnam-Ku, Seoul 135-973 Korea。 -# +# # 馬來西亞 # 授權人 CA 子公司為 CA (Malaysia) Sdn. Bhd。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守馬來西亞法律。馬來西亞法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條: # 雖然 CA 指明未擔保任何瑕疵責任,使用人根據 Consumer Protection Act 1999 擁有特定權利,且擔保僅限於適用法律之許可範圍。 -# -# 墨西哥 +# +# 墨西哥 # 授權人 CA 子公司為 CA Software de México S.A. de C.V。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守墨西哥法律。據此任何爭議由墨西哥地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA Software de México S.A. de C.V, Av.財務部,地址為 Miguel de Cervantes Saavedra 193, Suite 502, Col.Granada, Mexico City, MX 11500。 -# +# # 紐西蘭 # 授權人 CA 子公司為 CA Pacific (NZ) Ltd.。 -# +# # 即使鑑於第 6 條最後一句,使用人逾期未償付之發票每月衍生利息 1.5%。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守紐西蘭法律。紐西蘭法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 10 條: # 雖然 CA 指明未擔保任何瑕疵責任,使用人根據 Consumer Guarantees Act 1993 或其它不得排除或限制的法律擁有特定權利。如果使用者將貨物與服務使用於 Consumer Guarantees Act 1993 所定義之商業目的,Consumer Guarantees Act 1993 將不適用於 CA 所提供之任何貨物或服務。若產品不使用於 Consumer Guarantees Act 1993 所定義之商業目的,本條之限制受到 Consumer Guarantees Act 1993 限制。 -# +# # 下列條款將附加於第 12 條: # 根據本條之 CA 權利亦適用於任何已通過的決議案,或者針對使用人清算或解散所開始之訴訟程序。 -# +# # 秘魯 # 授權人 CA 子公司為 CA de Peru S.A。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守秘魯法律。據此任何爭議由利馬地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 CA de Peru S.A 財務部,地址為 Avenida Paseo de La Republica, 3211, Piso 11, San Isidro, Lima 27, Peru。 -# +# # 菲律賓 # 授權人 CA 子公司為 Philippine Computer Associates International, Inc.。 -# +# # 第 8 條前八句已刪除,並以下列條文取代: # 產品所有權及全部修改歸 CA 所有。產品為商業機密,且為 CA 或其授權人之專利財產。使用人同意 CA 在無需獲得使用人同意的情況下,使用由其所提供且與本產品相關的任何意見反應,作為任何 CA 商業用途使用,包括以此等意見反應為依據的衍生作品重製與準備,以及此等衍生作品的散佈。產品之相關使用權不得替換為其它任何 CA 產品。使用人與其雇員須將產品及本合約之條款視為極機密。在適用法律的最大許可下,使用人不得揭露、反組譯或分解,亦不得進行產品之還原工程。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: -# 本合約之管轄與解釋須遵守菲律賓法律。馬卡迪市法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# 本合約之管轄與解釋須遵守菲律賓法律。馬卡迪市法院獨有仲裁本合約所引起任何爭議之司法管轄權。 +# # 第 12 條已刪除,並以下列條文取代: # 若使用人違反本合約任一條款,或使用人無償付能力,或使用人宣告會被宣告破產或受破產管理人管理,CA 有權據此中斷服務並且/或者在告知時立即終止本合約。 除 CA 其它所有權之外,全部應支付或即將支付之費用必須立即支付給 CA。 -# -# 新加坡 +# +# 新加坡 # 授權人 CA 子公司為 CA (Singapore) Pte. Ltd.。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守新加坡法律。新加坡法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 下列條款將附加於第 9 條之後: # 在適用法律的完全許可下,CA 放棄全部品質滿意與特定用途之適用性的全部默示條件與擔保。 -# +# # 台灣 # 授權人 CA 子公司為 CA (Taiwan) Limited,其登記辦公室位於 105 台灣省台北市敦化北路 167 號 17 樓 B 座。 -# +# # 第 6 條第二句已刪除,並以下列條文取代: # 全部費用均不含加值稅。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋均須遵循台灣之法律,不論其法律條款選擇為何。據此任何爭議由台北地方法院仲裁。 -# +# # 泰國 # 授權人 CA 子公司為 CA Sales (Thailand) Co., Ltd.。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守泰國法律。泰國法院獨有仲裁本合約所引起任何爭議之司法管轄權。 -# +# # 委內瑞拉 # 授權人 CA 子公司為 Computer Associates (CAI) de Venezuela, CA。 -# +# # 第 8 條最後一句已刪除,並以下列條文取代: # 本合約之管轄與解釋須遵守委內瑞拉法律。據此任何爭議由卡拉卡斯地方法院仲裁。 -# +# # 第 14 條最後一句已刪除,並以下列條文取代: # 關於本合約之任何問題,請洽詢 Computer Associates (CAI) de Venezuela, CA 財務部,地址為 Avenue Francisco de Miranda, Centro Lido, Torre B, pisso 5, officina B-51, El Rosal, Caracas 1060, Venezuela。 -# +# # 16. 如果產品含有第三方之軟體,且授權人需為此類軟體在本合約中加入特定授權條款與條件時,這些特定條款與條件併入本合約,構成本合約之一部份,請參閱本合約最後部份。 -# -# 貴用戶同意其已閱讀並瞭解本授權,並且在以下鍵入 "accept" (接受) 後,表示接受其條款及條件。貴用戶亦同意本授權 (包括參照本合約之任何訂購單及在本合約後方所載明之第三方軟體之相關條款) 構成雙方針對本合約事項之完整協議,並同意本授權將取代貴用戶就本合約事項已取得之任何資訊,但本合約 (不包含下列第三人條款) 得以被授權人與 CA 共同簽署之書面合約取代之,以授與貴用戶使用產品之授權。本合約僅得由雙方授權代表所簽署之書面合約加以修改。 -# +# +# 貴用戶同意其已閱讀並瞭解本授權,並且在以下鍵入 "accept" (接受) 後,表示接受其條款及條件。貴用戶亦同意本授權 (包括參照本合約之任何訂購單及在本合約後方所載明之第三方軟體之相關條款) 構成雙方針對本合約事項之完整協議,並同意本授權將取代貴用戶就本合約事項已取得之任何資訊,但本合約 (不包含下列第三人條款) 得以被授權人與 CA 共同簽署之書面合約取代之,以授與貴用戶使用產品之授權。本合約僅得由雙方授權代表所簽署之書面合約加以修改。 +# # = = = = = -# CA Application Performance Management r. 10.2 (the "CA Software") Third Party Terms -# -# The following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: -# -# --------------------------------------------------------------------------------- -# Oracle Java Runtime Environment (JRE) 1.8.0_45 -# --------------------------------------------------------------------------------- -# JRE v.1.8 -# This Product is distributed with JRE v.1.8. Although the CA product does not use the Commercial Features, the license agreement requires that the following notice be presented. Use of the Commercial Features of the JRE for any commercial or production purpose requires a separate license from Oracle. 'Commercial Features' means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Software documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html -# -# --------------------- -# LsaUtility 1.0 -# --------------------- -# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" -# Preamble -# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. -# The main points subject to the terms of the License are: -# Source Code and Executable Files can be used in commercial applications; -# Source Code and Executable Files can be redistributed; and -# Source Code can be modified to create derivative works. -# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". -# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent -# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). -# License -# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. -# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. -# Definitions. -# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. -# "Author" means the individual or entity that offers the Work under the terms of this License. +# CA Application Performance Management r. 10.3 (the "CA Software") Third Party Terms +# +# As referenced in the Specific Program Documentation for the CA Software, following is a list of third-party software components and their third party terms required by licensors of various third party components used with the CA Software: +# +# --------------------- +# LsaUtility 1.0 +# --------------------- +# This product includes LsaUtiliy software published at The Code Project (http://www.codeproject.com/KB/cs/lsadotnet.aspx). LsaUtility is distributed in accordance with the terms of the following:" +# Preamble +# This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. +# The main points subject to the terms of the License are: +# Source Code and Executable Files can be used in commercial applications; +# Source Code and Executable Files can be redistributed; and +# Source Code can be modified to create derivative works. +# No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". +# The Article(s) accompanying the Work may not be distributed or republished without the Author's consent +# This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). +# License +# THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. +# BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. +# Definitions. +# "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. +# "Author" means the individual or entity that offers the Work under the terms of this License. # "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. -# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. -# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. -# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. -# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. -# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. -# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. -# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. -# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: -# You may use the standard version of the Source Code or Executable Files in Your own applications. -# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. -# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. -# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. -# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. -# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. -# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. -# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: -# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. -# You agree not to advertise or in any way imply that this Work is a product of Your own. -# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. -# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. -# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. -# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. -# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. -# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. -# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -# Termination. -# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. -# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. -# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. -# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice -# Miscellaneous -# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. -# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. +# "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. +# "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. +# "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. +# "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. +# "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. +# "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. +# Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. +# License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: +# You may use the standard version of the Source Code or Executable Files in Your own applications. +# You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. +# You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. +# You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. +# The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. +# Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. +# Patent License. Subject to the terms and conditions of this License, each Author hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, import, and otherwise transfer the Work. +# Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: +# You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. +# You agree not to advertise or in any way imply that this Work is a product of Your own. +# The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. +# You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. +# You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. +# You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. +# Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. +# Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys' fees) resulting from or relating to any use of the Work by You. +# Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +# Termination. +# This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. +# If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. +# Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. +# Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice +# Miscellaneous +# This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. +# If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +# No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. # This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. -# -# -# -# 上次更新時間 2016-01-12 -# +# +# +# 上次更新時間 2016-05-25 +# # 於以下鍵入 "accept" (接受),以接受上述之本合約條款及條件,並開始進行安裝程序。 -# +# # 於以下鍵入 "reject" (拒絕) 以停止安裝程序。 -# +# # CA-EULA 的有效值組合為:{accept, reject}。 CA-EULA=accept diff --git a/webview/run-default-webview-container.sh b/webview/run-default-webview-container.sh index 31f563a..3bab23c 100755 --- a/webview/run-default-webview-container.sh +++ b/webview/run-default-webview-container.sh @@ -5,4 +5,4 @@ docker run -d \ -p 8082:8080 \ --link=apm-em:em \ --name=apm-webview \ - apm-webview + apm-webview:10.3