One more installation

my employer recently bought CS3 web standard and it is installed on an imac in the office... we need to put a second installation on a different computer for someone else. do we only need to buy a second license, or do we actually need to buy another set of software?

Christina,
The short answer to your question is yes. The end-user license agreement allows the owner of the license to make an installationn of the software on a secondary machine (such as a laptop or a home system), provided that is for the same user and not for simultaneous use.
You mention that the software would be for someone else, therefore, a new license is required.
You can read the detailed CS3 end-user license agreement here: http://www.adobe.com/products/eulas/pdfs/Gen_WWCombined-CS3-20060817_1651.pdf
The same informationon is displayed before installing the software and is publicly available on the web.
Thanks for asking!
- JC

Similar Messages

  • SRM "one-client" installation on ECC 6.0 EhP: Own client needed for SRM?

    Hello experts,
    i've a question concerning the SRM "one-client" installation on ECC 6.0 EhP4 as Add-On.
    Is it possible to use SRM and ERP funtionality in a single client e.g. 001?
    Or do we have to use different clients on the system like for SUS?
    I haven't found any information regarding this topic in SAP ressources. I'm currently using CG "SAP SRM on One Client in
    SAP ERP" Release date 2008 (found on marketplace/srm-inst --> srm7.0); SRM - Technical Basis Configuration (BuildingBlock S00/S03). I'm facing problems while going through the following customizing steps:
    Assign logical System to Client [both logicall systems are on the same client (001)] ==> error while trying to reference the second logical sys. because client (001) cannot be used again (own presumption: error message differs)
    I've seen that some of you have successfully installed and customized this szenario. If someone could provide me any helpful information or guideline how to proceed in general... would be great...
    Best regards,
    PATRICK

    Thanks for your reply. I've checked the offline documentation because i've no access to solman.
    There is a document which describes the steps for configuring one-client customizing on marketplace.
    Link: [SAP SRM 7.0: SAP SRM on One Client with SAP ERP|https://websmp203.sap-ag.de/~sapidb/011000358700001201562009E]
    The problem is that its impossible to cofigure the system like it's described in the document.
    Let me explain why...
    SRM Addon is installed and customizing is done in client 001 (same client as erp)
    overview about defined logical systems:
    -ONECLNTERP (for ERP is defined)
    -ONECLNTEBP (for SRM is defined)
    When I try to assign the logical system to client 001 it works for the first entry
    for the second log. system it shows up an error message.
    -->I assume because client 001 has been already assigned. I cant use client 001 again.
    But One-Client szenario schould be possible in a single client or is SAPs One-Client more like One-System with differnet clients for SRM and ERP on the same machine?
    Because of the above mentioned problem I assume that it's impossible to run ERP and SRM in the same Client number.
    Am I right? Do I have to use two Clients on One System for proper Customizing?
    Or if it's possible to use a single client on one machine for both ERP and SRM how is it possible to assign two log. systems to one client number?
    I'm totally confused. Any help would be appreciated  - any tips/hints/experiences from someone who has customized One-Client?
    BR, Patrick

  • Business One T-Installation and Contract differences

    Dear All,
    What are the differences between Business One T-Installation and Contract ? Where could I find the file explain about it ?
    TIA
    Rgd,
    Steve

    I am sure that there is no specific different that will give bad influence for the customers of SAP B1.
    I suggest you to ask the sales or marketing dept. It seems that they could know it more detail about it or asking SAP support can also be helpful
    Rgds,

  • Add one more column

    select
                    nvl(appr.APPROVER_NAME, org.APPROVER_NAME) as APPROVER_NAME,
                    nvl(appr.APPROVER, org.APPROVER) as APPROVER,
                    nvl(appr.APPROVER_TYPE, org.APPROVER_TYPE) as APPROVER_TYPE,
                    nvl(appr.ASSIGNED_DATE, org.ASSIGNED_DATE) as ASSIGNED_DATE,
                    nvl(appr.APPROVAL_DATE, '-') as APPROVAL_DATE,
                    nvl(appr.STATE, org.STATE) as STATE,
                                    org.SEQ as numberoftimesmodified,
                    nvl(appr.PROCESS, org.PROCESS) as PROCESS,
           -- appr.request_comment,
                    appr.seq2
                    from (
                        select a.seq,
                        b.usr_display_name as APPROVER_NAME,
                        b.usr_login as APPROVER,
                        'User' as APPROVER_TYPE,
                        '-' as ASSIGNED_DATE,
                        '-' as STATE,
                        a.seq as numberoftimesmodified,
                '-' as PROCESS
                        from(
                            SELECT 1 as seq, USR_UDF_MANAGER_LOGIN as GID, '' as approver_name, 'user' as approver_type FROM DEVT_OIM.USR WHERE USR_LOGIN =:BENEFICIARY_GID AND :APPLICATION = 'Oracle 11i On demand'
                            UNION
                            select rownum as seq, regexp_substr(:APPROVERPAYLOAD,'[^,]+', 1, level) as gid, '' as approver_name, 'user' as approver_type from dual
                            where :APPLICATION != 'Oracle 11i On demand'
                            connect by regexp_substr(:APPROVERPAYLOAD, '[^,]+', 1, level) is not null
                        ) a
                        inner join DEVT_OIM.usr b on a.gid = b.usr_login
                    ) org
                    left join(
                        select b.numberoftimesmodified as seq, rownum as seq2, a.*
                        from
                            select
                            LEAD(a.ASSIGNEES) OVER(ORDER BY a.numberoftimesmodified) as prev_gid,
                            LEAD(a.pushbacksequence) OVER(ORDER BY a.numberoftimesmodified) as prev_pushbacksequence,
                            a.ASSIGNEES as current_gid,
                            nvl(retrieveGidName(a.ASSIGNEES), '-') as APPROVER_NAME,
                            (DEVT_OIM.TOKNEW(REPLACE(a.ASSIGNEES, ',', ':'))) as APPROVER,
                            'User' as APPROVER_TYPE,
                            a.pushbacksequence,
                            TO_CHAR(a.assigneddate,'DD-Mon-YYYY HH:MI:SS AM') as ASSIGNED_DATE,
                            case when a.state = 'WITHDRAWN' then TO_CHAR(a.updateddate,'DD-Mon-YYYY HH:MI:SS AM') else TO_CHAR(d.updateddate,'DD-Mon-YYYY HH:MI:SS AM') end as APPROVAL_DATE,
                            a.numberoftimesmodified,
                            case when a.state = 'EXPIRED' then 'Expired' when a.approvalduration is null then 'Pending' when  a.outcome = 'REJECT' then 'Rejected' else 'Approved' end as PROCESS,
                            d.state as process2,
                            case when d.substate = 'REASSIGNED' then 'Reassigned' when d.state = 'INFO_REQUESTED' then 'Request Info' when a.state = 'EXPIRED' then 'Expired'
                                when  a.outcome = 'REJECT' then 'Rejected' when d.substate = 'INFO_SUBMITTED' then 'Submitted' when a.state = 'WITHDRAWN' then 'Withdrawn' when e.state is null then 'Pending' else 'Approved' end as state,
                            e.ASSIGNEES, d.substate
                            from DEVT_SOAINFRA.WFTASKHISTORY a
                            left join DEVT_SOAINFRA.WFTASKHISTORY d on d.IDENTIFICATIONKEY = a.IDENTIFICATIONKEY and d.numberoftimesmodified = (a.numberoftimesmodified+1)
                            left join DEVT_SOAINFRA.WFTASKHISTORY e on e.IDENTIFICATIONKEY = a.IDENTIFICATIONKEY and e.numberoftimesmodified = (a.numberoftimesmodified-1) and e.ASSIGNEES = a.ASSIGNEES
                            where a.IDENTIFICATIONKEY = :IDENTIFICATIONKEY and a.state is not null
                            order by a.numberoftimesmodified
                        ) a
                        inner join (select rownum as numberoftimesmodified, pushbacksequence from (select distinct pushbacksequence from DEVT_SOAINFRA.WFTASKHISTORY a where a.IDENTIFICATIONKEY = :IDENTIFICATIONKEY order by pushbacksequence)) b
                        on b.pushbacksequence = a.pushbacksequence
                        where a.prev_gid != a.current_gid or prev_gid is null
                        order by a.numberoftimesmodified
                    ) appr on org.seq = appr.seq
                union
                select
                    nvl(appr.APPROVER_NAME, org.APPROVER_NAME) as APPROVER_NAME,
                    nvl(appr.APPROVER, org.APPROVER) as APPROVER,
                    nvl(appr.APPROVER_TYPE, org.APPROVER_TYPE) as APPROVER_TYPE,
                    nvl(appr.ASSIGNED_DATE, '-') as ASSIGNED_DATE,
                    nvl(appr.APPROVAL_DATE, '-') as APPROVAL_DATE,
                    nvl(appr.STATE, '-') as STATE,
                                       999 as numberoftimesmodified,
                    nvl(appr.PROCESS, '-') as PROCESS,
                    999 as seq2
                    from(
                        select 999 as seq, '-' as APPROVER, ugp_name as APPROVER_NAME, 'group' as approver_type
                        from DEVT_OIM.UGP ugp
                        where  ugp_name in (
                        SELECT a.it_processor_group FROM ec_admin.ENTITLEMENT a
                            inner join ec_admin.application b on a.application_id = b.application_id
                            WHERE b.extra_field_2 = :APPLICATION
                            and a.module_name = :MODULE
                            and a.site_name = :SITE
                            and a.entitlement_name = DEVT_OIM.TOKNEW(:RESPONSIBILITY)
                            and b.auto_provisioning = 'FALSE')
                    ) org
                    left join(
                    select nvl(grp.APPROVER_NAME, usr.APPROVER_NAME) as APPROVER_NAME,
                    nvl(grp.APPROVER, usr.APPROVER) as APPROVER,
                    nvl(grp.APPROVER_TYPE, usr.APPROVER_TYPE) as APPROVER_TYPE,
                    TO_CHAR((select min(OSI_create) from DEVT_OIM.OSI where request_key = :IDENTIFICATIONKEY),'DD-Mon-YYYY HH:MI:SS AM') as ASSIGNED_DATE,
                    nvl(grp.APPROVAL_DATE, usr.APPROVAL_DATE) as APPROVAL_DATE,
                    'ASSIGNED' as STATE,
                    999 as numberoftimesmodified,
                    case when nvl(grp.APPROVAL_DATE, usr.APPROVAL_DATE) = '-' then 'Pending' else usr.ost_status end as PROCESS
                    from
                        select b.usr_display_name as APPROVER_NAME, b.usr_login as APPROVER,  'User' as APPROVER_TYPE,
                        TO_CHAR(a.OSI_create,'DD-Mon-YYYY HH:MI:SS AM') as APPROVAL_DATE, 'key' as tbl_key,
                        (select ost_status from DEVT_OIM.UPA_RESOURCE where UPA_RESOURCE_key in (
                                  select max(UPA_RESOURCE_key)
                                  from DEVT_OIM.UPA_RESOURCE a
                                  inner join DEVT_OIM.oiu b on a.oiu_key = b.oiu_key
                                  where b.request_key = :IDENTIFICATIONKEY )) as ost_status
                        from (
                          select osi_assigned_to_usr_key, OSI_create
                          from DEVT_OIM.OSI
                          where request_key = :IDENTIFICATIONKEY and osi_assigned_to_usr_key != 1
                          order by OSI_create desc
                        ) a
                        inner join DEVT_OIM.usr b on a.osi_assigned_to_usr_key = b.usr_key
                        where rownum between 0 and 1
                    ) usr
                    left join
                        select ugp.ugp_name as APPROVER_NAME, '-' as APPROVER, 'Group' as APPROVER_TYPE,
                        '-' as APPROVAL_DATE, 'key' as tbl_key
                        FROM DEVT_OIM.OTI itp
                        inner join DEVT_OIM.UGP ugp on ugp.ugp_key = itp.osi_assigned_to_ugp_key
                        where itp.request_key = :IDENTIFICATIONKEY
                        and :REQUEST_STATUS != 'Request Completed'
                    ) grp
                    on usr.tbl_key = grp.tbl_key
                    order by numberoftimesmodified
                    ) appr on 1=1
                order by numberoftimesmodified, seq2
                   Above is the script and i need to add one more column for the script column name request_comment from the table request_comments, anyone help me in doing so.

    /* Formatted on 2012/06/14 13:19 (Formatter Plus v4.8.8) */
    SELECT X.*, request_comments.request_comment
    FROM(
    SELECT   NVL (appr.approver_name, org.approver_name) AS approver_name, NVL (appr.approver, org.approver) AS approver,
             NVL (appr.approver_type, org.approver_type) AS approver_type, NVL (appr.assigned_date, org.assigned_date) AS assigned_date,
             NVL (appr.approval_date, '-') AS approval_date, NVL (appr.state, org.state) AS state, org.seq AS numberoftimesmodified,
             NVL (appr.process, org.process) AS process,
                                                        -- appr.request_comment,
                                                        appr.seq2
        FROM (SELECT a.seq, b.usr_display_name AS approver_name, b.usr_login AS approver, 'User' AS approver_type, '-' AS assigned_date,
                     '-' AS state, a.seq AS numberoftimesmodified, '-' AS process
                FROM (SELECT 1 AS seq, usr_udf_manager_login AS gid, '' AS approver_name, 'user' AS approver_type
                        FROM devt_oim.usr
                       WHERE usr_login = :beneficiary_gid AND :application = 'Oracle 11i On demand'
                      UNION
                      SELECT     ROWNUM AS seq, REGEXP_SUBSTR (:approverpayload, '[^,]+', 1, LEVEL) AS gid, '' AS approver_name,
                                 'user' AS approver_type
                            FROM DUAL
                           WHERE :application != 'Oracle 11i On demand'
                      CONNECT BY REGEXP_SUBSTR (:approverpayload, '[^,]+', 1, LEVEL) IS NOT NULL) a
                     INNER JOIN
                     devt_oim.usr b ON a.gid = b.usr_login
                     ) org
             LEFT JOIN
             (SELECT   b.numberoftimesmodified AS seq, ROWNUM AS seq2, a.*
                  FROM (SELECT   LEAD (a.assignees) OVER (ORDER BY a.numberoftimesmodified) AS prev_gid,
                                 LEAD (a.pushbacksequence) OVER (ORDER BY a.numberoftimesmodified) AS prev_pushbacksequence,
                                 a.assignees AS current_gid, NVL (retrievegidname (a.assignees), '-') AS approver_name,
                                 (devt_oim.toknew (REPLACE (a.assignees, ',', ':'))) AS approver, 'User' AS approver_type,
                                 a.pushbacksequence, TO_CHAR (a.assigneddate, 'DD-Mon-YYYY HH:MI:SS AM') AS assigned_date,
                                 CASE
                                   WHEN a.state = 'WITHDRAWN'
                                     THEN TO_CHAR (a.updateddate, 'DD-Mon-YYYY HH:MI:SS AM')
                                   ELSE TO_CHAR (d.updateddate, 'DD-Mon-YYYY HH:MI:SS AM')
                                 END AS approval_date,
                                 a.numberoftimesmodified,
                                 CASE
                                   WHEN a.state = 'EXPIRED'
                                     THEN 'Expired'
                                   WHEN a.approvalduration IS NULL
                                     THEN 'Pending'
                                   WHEN a.outcome = 'REJECT'
                                     THEN 'Rejected'
                                   ELSE 'Approved'
                                 END AS process,
                                 d.state AS process2,
                                 CASE
                                   WHEN d.substate = 'REASSIGNED'
                                     THEN 'Reassigned'
                                   WHEN d.state = 'INFO_REQUESTED'
                                     THEN 'Request Info'
                                   WHEN a.state = 'EXPIRED'
                                     THEN 'Expired'
                                   WHEN a.outcome = 'REJECT'
                                     THEN 'Rejected'
                                   WHEN d.substate = 'INFO_SUBMITTED'
                                     THEN 'Submitted'
                                   WHEN a.state = 'WITHDRAWN'
                                     THEN 'Withdrawn'
                                   WHEN e.state IS NULL
                                     THEN 'Pending'
                                   ELSE 'Approved'
                                 END AS state,
                                 e.assignees, d.substate
                            FROM devt_soainfra.wftaskhistory a LEFT JOIN devt_soainfra.wftaskhistory d
                                 ON d.identificationkey = a.identificationkey AND d.numberoftimesmodified = (a.numberoftimesmodified + 1)
                                 LEFT JOIN devt_soainfra.wftaskhistory e
                                 ON e.identificationkey = a.identificationkey
                               AND e.numberoftimesmodified = (a.numberoftimesmodified - 1)
                               AND e.assignees = a.assignees
                           WHERE a.identificationkey = :identificationkey AND a.state IS NOT NULL
                        ORDER BY a.numberoftimesmodified) a
                       INNER JOIN
                       (SELECT ROWNUM AS numberoftimesmodified, pushbacksequence
                          FROM (SELECT DISTINCT pushbacksequence
                                           FROM devt_soainfra.wftaskhistory a
                                          WHERE a.identificationkey = :identificationkey
                                       ORDER BY pushbacksequence)) b ON b.pushbacksequence = a.pushbacksequence
                 WHERE a.prev_gid != a.current_gid OR prev_gid IS NULL
              ORDER BY a.numberoftimesmodified) appr ON org.seq = appr.seq
    UNION
    SELECT   NVL (appr.approver_name, org.approver_name) AS approver_name, NVL (appr.approver, org.approver) AS approver,
             NVL (appr.approver_type, org.approver_type) AS approver_type, NVL (appr.assigned_date, '-') AS assigned_date,
             NVL (appr.approval_date, '-') AS approval_date, NVL (appr.state, '-') AS state, 999 AS numberoftimesmodified,
             NVL (appr.process, '-') AS process, 999 AS seq2
        FROM (SELECT 999 AS seq, '-' AS approver, ugp_name AS approver_name, 'group' AS approver_type
                FROM devt_oim.ugp ugp
               WHERE ugp_name IN (
                       SELECT a.it_processor_group
                         FROM ec_admin.entitlement a INNER JOIN ec_admin.application b ON a.application_id = b.application_id
                        WHERE b.extra_field_2 = :application
                          AND a.module_name = :module
                          AND a.site_name = :site
                          AND a.entitlement_name = devt_oim.toknew (:responsibility)
                          AND b.auto_provisioning = 'FALSE')) org
             LEFT JOIN
             (SELECT   NVL (grp.approver_name, usr.approver_name) AS approver_name, NVL (grp.approver, usr.approver) AS approver,
                       NVL (grp.approver_type, usr.approver_type) AS approver_type,
                       TO_CHAR ((SELECT MIN (osi_create)
                                   FROM devt_oim.osi
                                  WHERE request_key = :identificationkey), 'DD-Mon-YYYY HH:MI:SS AM') AS assigned_date,
                       NVL (grp.approval_date, usr.approval_date) AS approval_date, 'ASSIGNED' AS state, 999 AS numberoftimesmodified,
                       CASE
                         WHEN NVL (grp.approval_date, usr.approval_date) = '-'
                           THEN 'Pending'
                         ELSE usr.ost_status
                       END AS process
                  FROM (SELECT b.usr_display_name AS approver_name, b.usr_login AS approver, 'User' AS approver_type,
                               TO_CHAR (a.osi_create, 'DD-Mon-YYYY HH:MI:SS AM') AS approval_date, 'key' AS tbl_key,
                               (SELECT ost_status
                                  FROM devt_oim.upa_resource
                                 WHERE upa_resource_key IN (SELECT MAX (upa_resource_key)
                                                              FROM devt_oim.upa_resource a INNER JOIN devt_oim.oiu b
                                                                   ON a.oiu_key = b.oiu_key
                                                             WHERE b.request_key = :identificationkey)) AS ost_status
                          FROM (SELECT   osi_assigned_to_usr_key, osi_create
                                    FROM devt_oim.osi
                                   WHERE request_key = :identificationkey AND osi_assigned_to_usr_key != 1
                                ORDER BY osi_create DESC) a
                               INNER JOIN
                               devt_oim.usr b ON a.osi_assigned_to_usr_key = b.usr_key
                         WHERE ROWNUM BETWEEN 0 AND 1) usr
                       LEFT JOIN
                       (SELECT ugp.ugp_name AS approver_name, '-' AS approver, 'Group' AS approver_type, '-' AS approval_date,
                               'key' AS tbl_key
                          FROM devt_oim.oti itp INNER JOIN devt_oim.ugp ugp ON ugp.ugp_key = itp.osi_assigned_to_ugp_key
                         WHERE itp.request_key = :identificationkey AND :request_status != 'Request Completed') grp
                       ON usr.tbl_key = grp.tbl_key
              ORDER BY numberoftimesmodified) appr ON 1 = 1
    ORDER BY numberoftimesmodified, seq2
    ) X, request_comments
    WHERE...

  • I just downloaded and instaled firefox 4. Now, everytime I institute a command I get a po[p-up from Java script that tells me to uninstal set. I cannot go on untin I press ok and then I am good for one more command and it starts with the pop-up again.

    I'm not even sure if this is an extension or plug-in and all I can tell you is what I have already stated. I can only make one command at a time and after each one I get a pop-up from Java script that says uninstal set. I must depress ok to move on, but only for one more command and it starts over again. This also happened when I tried to instal firefox 4 a couple months ago and I deleted the program and went back to an earlier version.

    Mail troubleshooting - Yosemite
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • One more reason to put my iMAC at the curb. I can open and view Picasa photo links when I sign in via Google, but if I'm in Mail and click on the Picasa image link (my own or one someone esle sends me I can't view the images. Thye are all blank white squa

    One more reason to put my iMAC at the curb. I can open and view Picasa photo links when I sign in via Google, but if I'm in Mail and click on the Picasa image link (my own or one someone else sends me) I can't view the images. They are all blank white squares. This started a few weeks ago. Why can't I view Picasa link images through Mail?

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Have a nice day. I can't open the books linked to the Adobe ID. Always the overallocation says. But some of the books I downloaded two times. Still, it gives a warning in the form of more installations.

    Have a nice day. I can't open the books linked to the Adobe ID. Always the overallocation says. But some of the books I downloaded two times. Still, it gives a warning in the form of more installations.

    I think you should ask in the Digital Editions forum, Adobe Digital Editions

  • QA32 Tcode i want to one more field which is material Description .in our o

    In QA32 Tcode i want to one more field which is material Description .in our output . how to do it please guide .

    Only exit I am aware of is IWOC0004 / EXIT_SAPLIREP1_001 to change the layout, to add customer field, i dont know any exit/badi, so i suggest you copy the report, copy the structure QALS_D02 to a Z-structure, and complete the field catalog and fill the new field in the code of the copied report.
    You could append fields to the structure (QALS_D01 or D02) and use Enhancement method to adapt field catalog and filling new fields (in RQEEAL10 at END-OF-SELECTION or an adequate GET statement)
    Regards,
    Raymond

  • How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album :)?

    How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album, i want them in the camera roll ?

    How can I delete EVERY THING off my Mac and have it like new?
    Boot from the software install DVD and do an "erase and install" when prompted.

  • Can I load Microsoft Office Word 2011 for MAC on an IPAD 2?  If yes, then how?  I have the software and one more load opportunity left.

    Can I load Microsoft Office Word 2011 for MAC on an IPAD 2?  If yes, then how?  I have the software and one more load opportunity left.
    Reason that I ask is that I'm worried that I will not be able to read or work word or excel docs that people send me.

    No. Office 2011 for Mac is coded to run with OS X. In order to work on the iPad the app must be coded for iOS instead.
    If you look in the iTunes App Store, you will find that there are many apps that allow you to work with Office files on an iPad.
    Allan

  • How to Create one more SOA-INFRA under the same domain in weblogic server

    Hi All,
    Can anybody can guide how to create one more soa-infra under the same domain. In order to maintain my composites to be deployed into
    different domains, I need to create one more soa-infra and deployed all the composites under that one.
    Please let me know if any demo is available for this activity to be gets completed.
    Regards,
    CH

    Hi Vijay,
    There are several composites which needs to be deployed and maintained in the server. So, we I'm trying to maintian
    by deploying composites into 3 different SOA-INFRA's so if one is not accessible, we can look into it and others can access the
    composites from another SOA-INFRA instead of creating domains.
    Let me know what will be feasible way to perform this activity.
    Regards,
    CH

  • How to create one more server node for SAP J2EE server?

    Hi,
    Can any one please suggest how to create one more server node for SAP J2EE server? I am using WAS700.
    Thanks and Regards,
    Smriti.

    Hai,
          Login into the Configtool(C:\usr\sap\SID\DVEBMGS<inst no>\j2ee\configtool) if ABAP+JAVA stack or C:\usr\sap\SID\JC<inst no>\j2ee\configtool) if JAVA stack
    click on the instance and and select the addserver button on the top to create a servernode for J2EE server.
    Thanks and Regards,

  • I am using illustrator CS5. How can I create a svg file with rollover to show one more layer?

    Actually i used illustrator to draw a map, I want to rollover a selected area to show one more layer within the same SVG which include information about that area.

    I don't need to change "name" to "europe", etc in js? and just use the 2 paragraphs that you advice?
    And yes, thanks for reminding to remove "s_x5F" from s_china.
    I run the code below but nothing happen...
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 15.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="map_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
      width="740px" height="490px" viewBox="0 0 740 490" style="enable-background:new 0 0 740 490;" xml:space="preserve">
    <style type="text/css">
    <![CDATA[
      .st0{display:inline;fill:none;stroke:#0591CC;stroke-miterlimit:10;}
      .st1{opacity:0.4;fill:#0591CC;enable-background:new    ;}
      .st3{display:inline;fill:#323232;}
      .st4{display:inline;fill:#333332;}
      .st6{display:inline;fill:#0591CC;}
      .st7{fill:#6CA843;}
      .st8{font-size:14;}
      .st9{font-size:18;}
      .st10{display:none;}
      .st11{display:inline;fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
      .st12{display:inline;opacity:0.4;fill:#0591CC;enable-background:new    ;}
    ]]>
    </style>
    <defs>
      <script  xlink:href="global.js"  language="JavaScript">
      </script>
    </defs>
    <g id="Map">
      <polygon class="st7" points="453.388,293.277 451.714,293.759 451.951,294.734 450.87,298.133 451.714,301.406 450.271,305.172
      451.894,307.146 454.59,308.93 457.621,307.239 459.144,306.384 459.742,300.802 455.993,296.357 "/>
      <polygon class="st7" points="213.404,177.038 213.79,173.275 209.989,172.671 206.362,173.367 207.498,175.74 211.517,178.643 "/>
      <path class="st7" d="M337.372,391.073l-2.397-6.431h-1.08l-1.196,4.729l-1.078,0.485c0,0-1.613,7.058-2.396,7.039
      c-0.783-0.019-10.909,4.365-10.909,4.365l-3.546,4.852l0.069,3.888l-0.342,2.229c0,0,1.242,5.519,1.302,5.655
      c0.058,0.142-5.514,8.979-5.514,8.979l0.695,7.844l3.378,8.176l4.317,0.605l3.354-3.521l2.639,0.367l1.438-2.062l12.579-28.271
      l-4.792-5.224l0.84-4.122l2.88,2.063l1.438-0.607v-1.456l-1.2-1.697L337.372,391.073z"/>
      <polygon class="st7" points="133.252,16.032 131.931,16.333 130.616,16.639 130.135,17.488 131.216,18.581 133.854,16.64 "/>
      <polygon class="st7" points="174.366,166.847 172.925,167.696 173.87,169.137 174.919,167.923 "/>
      <polygon class="st7" points="192.464,167.09 195.099,165.995 195.34,163.934 193.06,161.02 191.383,162.718 "/>
      <path class="st7" d="M194.5,153.743h-2.277l-0.6,2.306l2.039,0.847C193.662,156.896,194.615,154.535,194.5,153.743z"/>
      <polygon class="st7" points="116.592,64.079 122.573,62.787 128.94,61.411 132.414,57.889 132.414,56.194 133.495,53.28
      130.136,50.368 126.9,52.066 124.865,51.583 120.909,53.28 118.629,50.976 115.965,53.588 114.793,54.736 113.356,53.887
      114.316,52.433 112.279,50.367 110.838,51.217 108.803,54.129 107.124,54.493 106.764,55.585 108.202,56.797 107.124,58.499
      108.56,59.954 108.202,62.865 "/>
      <path class="st7" d="M512.108,264.098l3.176,6.816l2.316,6.116l1.351,4.233l-0.135,2.053l-0.342,5.229l1.437,1.455l-1.799,8.131
      l0.839,1.216l2.639,0.241l5.153,5.822l0.313,1.582l1.966,9.828l8.985,8.975l2.876-0.241l0.601-1.216l-0.957-1.938l-0.121-5.174
      l-0.02-0.981l-0.104-4.399l-2.637-1.455l-1.347-2.334l-0.646-1.115l-1.724-2.983l-4.334-1.847l-1.658-0.702l-0.598-4.976
      l-4.557-4.129l-0.148-3.848l2.064-2.215l-0.211-6.268l-0.192-5.521l-0.074-2.169l0.837-1.459l1.439,0.243l1.68,6.432l6.111,1.457
      l1.918,4.129l6.712,4.366l0.274,3.364l0.8,4.146l0.604,1.714l1.678-0.482l4.077-6.797l2.875-0.85l4.076-6.438l-0.878-13.567
      l-0.325-3.298l-2.873-1.698l-2.214-2.177l-5.817-5.712l-3.474-6.429l1.788-9.192l1.686-3.913l6.354-0.605v2.912l3.354,5.279
      l0.598-0.911l-0.236-4.853l6.83-3.276l2.638-3.52l1.438,0.974l1.201-0.974h5.152l2.037-3.397c0.133-0.216,2.877-2.063,2.877-2.063
      l1.078-3.518l2.035-1.457l2.039-3.517l-1.653-4.73l3.69-9.224l-1.438-1.455v-2.065l-5.277-4l2.639-2.063
      c0,0,0.124-1.451-0.236-1.819c-0.364-0.372-2.877-1.7-2.877-1.7v-3.155c0,0-4.047-6.114-4.075-6.187
      c-0.03-0.07-3.476-2.307-3.476-2.307s-2.26-5.316-2.279-5.58c-0.02-0.267,1.626-5.334,1.681-5.46
      c0.052-0.127,2.876-1.82,2.876-1.82l-1.077-1.943l-6.114-1.211l-1.917,0.85l-8.149-1.455l-1.679-1.7c0,0-0.054-3.16,0-3.276
      c0.052-0.117,5.989-3.761,5.989-3.761l1.806-3.76l3.95,1.697v5.336h0.962l2.873-2.908l2.521-0.971l2.753,1.03l2.757,1.032
      l-0.599,4.975l1.2,1.454l5.993,1.214l0.84,3.761l1.796,2.064l0.239,4.002l4.075,5.218l1.92-0.484l2.873-4.733v-6.673l-3.354-4.974
      l-3.837-2.061l-3.113-4.371V141.49l1.676-1.093l2.4-3.885l4.791,2.063l3.479-2.912l1.436-9.342l-3.115-18.929L579.957,87.98
      l-6.592-1.819l-2.877,2.914l-0.838-0.608V86.77h-2.275l-1.201-1.698l-2.639-0.367l-0.837-1.698l1.798-1.821l0.479-1.695
      l-0.84-14.319l1.198-0.85l15.821-0.604V61.17l3.118-0.608l3.233,3.157l7.188-1.457l1.918-1.7l-2.515-2.671v-9.218l4.553,3.395
      l3.236,0.368v-1.458l-2.397-4.368l0.36-2.306l1.44,0.484l1.074,3.278l4.674,3.759l0.604,11.407l-2.039,4.85l4.557,5.583l4.199,3.17
      l8.504,7.264l3.941,2.595l3.85,3.594l4.557,1.698l-1.682-7.521l0.839-0.607V82.16l-3.714-1.454v-3.52l2.519-0.85l-0.238-1.213
      l-4.316-3.155l0.24-3.885l-3.715-0.847l-9.473-9.585l-0.6-5.583l2.638,1.214l1.439-2.912l1.679-0.604l3.477,1.454l3.957-0.241
      v-6.674l2.875-4.368l4.075-0.362l0.233-2.062l-4.79-1.095l-4.077-3.274l-6.949-1.7l-1.078-2.303h2.277l0.235-1.217l-1.914-2.912
      l1.439-0.849l5.393,1.7l3.716-1.454l2.396,1.211l6.233,0.608l1.436-1.217l-3.115-2.303l0.237-0.852l-1.077-2.304l-2.277,0.487
      c0,0-3.821-2.207-4.312-2.307c-0.496-0.099-4.677,0-4.677,0l-0.602,1.819l-5.925-3.385l-37.701-3.044l-1.201,1.09l4.913,4.975
      l-0.835,0.608l-3.476-0.608l-3.479-2.062l-12.345-1.091l-7.794,2.91l-0.835-1.455c-0.139-0.251-6.354-3.336-6.354-4.125
      c0-0.789-21.812,0.849-21.812,0.849l-4.08-2.546l-6.592-0.608l-1.198,3.154l-3.714-1.454l-0.238-1.943h-12.706v1.943l1.681,0.97
      l0.598,2.55l-0.84,0.603l-3.718-0.603L494.5,17.73l-4.559-0.243l-0.235,2.062l-13.544-4.125l-2.64-3.76l-12.943-0.852v2.308h-2.517
      l-5.276,1.09l-3.951-2.306l-10.067-1.455l-1.438,2.307l-1.195-0.487l-0.239-1.456l-1.443-0.606l-1.194,0.606l-3.731-1.152
      l0.254,3.701l-5.377,1.76l-4.896,0.378l-0.869-0.924l4.555-0.365l6.949-6.915l-3.473-2.062l0.835-1.455l-0.598-1.459l-3.118-1.695
      l-11.51,2.305l-3.474-1.821l-0.603-1.093l-4.727,0.321l-1.271,0.527l0.24,2.669l-0.838,1.095l-10.908,1.454l-1.677-1.454
      l-14.146,4.73l-5.149,6.31l-4.916,1.211l0.538,5.433l8.934,1.848l3.476,4.978l-0.838,1.7l-1.802-0.611l-1.677-2.911l-8.029-4.001
      l-3.717-0.608l-1.797,2.668l1.438,1.7l0.357,1.214l-3.234,0.241l-2.877-5.823l-1.68-0.605l-1.8,2.667v1.458l2.041,2.304
      l4.912,7.039l5.158-0.365l5.511,3.761l-0.358,1.216h-1.438l-4.316-2.67l-1.918,1.454l1.438,2.428l-0.358,4.004l-4.556,1.213
      l1.078,3.518l-3.718,0.242l-4.911-1.453V47.46l6.71-1.7l0.841-1.211l0.239-4.974l-2.518-2.062l-6.952-8.98l-2.038-6.429
      l-1.677-1.457l-3.237,0.604l-4.558-0.604l0.104,2.707l0.142,3.724l-2.279,1.214v1.092l1.438,1.458l2.036,4.365h1.68l5.752,4.369
      l-0.837,1.819l-6.595-2.672h-3.477l-0.84-1.21l-8.389-1.941h-2.873l1.797,3.396l-1.439,2.911h-1.438l-1.198-2.303l-1.438-0.853
      l-1.078,0.853l-6.354,0.849v1.819l-2.036,2.306l-1.678-0.605l0.84-2.549l-0.84-0.608l-4.072,1.457h-4.079l-3.716,1.455
      l-2.031,4.611l-2.877,0.608l-3.118-2.307l1.196-3.52l-1.196-2.062l-6.354-1.698l-0.237,1.455l1.438,1.697l1.077,4.128
      c0,0,4.781,6.755,4.913,6.429c0.133-0.32-0.6,1.7-0.6,1.7h-1.077l-4.313-3.154h-3.477l-3.72,3.154l4.916,4.609v1.822l-11.268-4.733
      l-1.198,1.214l3.236,5.582l-2.038,1.089l-4.913-3.151l-0.242-4.125l-7.79-7.128l9.467,3.121h5.519l4.555-2.911l-0.241-3.518
      l-11.507-6.188c0,0-8.496-0.789-9.467-1.093l-3.237-2.303l-2.799,0.204l-3.796,0.28l-2.038-0.85l2.638-2.062v-1.943l-1.646-0.205
      l-3.507,0.691l-1.802-3.397l-2.038,0.483l-0.24,1.822l-2.878,1.697h-2.634l-1.078,1.457l-4.913,0.365l-0.602,3.151l-4.912,0.608
      l-0.838,2.063l-3.479,0.849l-0.479,2.547l-1.581,0.802l-8.483,6.478l-0.602,2.671l-7.785,7.887l0.84,2.062l-7.793,2.307
      l-0.479,1.697l-3.838,1.214l-0.479,1.697l4.794,2.063l-1.68,2.062l1.201,1.698l-2.878,2.67l0.241,2.306v3.761l2.878,0.849
      l7.19-2.912l1.197-2.913l3.116,4.128l2.277,10.802L206,99.026l3.231-0.849V96.96l4.794-1.454l0.358-4.857l0.125-1.672l0.116-1.6
      l5.754-5.218v-4.125l-3.118-1.698l-0.354-5.786l1.191-3.921l7.19-3.152l1.68-4.612l5.508-4.368l2.278,0.852l2.638,3.154
      l-2.04,2.061l-1.479,0.569l-4.511,1.736l-2.872,2.304l0.152,1.843l0.092,1.079l0.521,6.203l0.672,2.889l3.71,0.241l1.437,2.064
      l12.949-2.064l2.31,0.739l2.25,0.717l0.838,1.457l-3.958,0.365l-2.637,1.092l-9.475,1.211l-1.197,1.698l0.958,1.457l1.44,0.608
      l1.438,2.062l-0.957,2.912l-1.682,0.605l-5.148-2.912l-1.795,1.454l2.162,7.011l0.232,0.756l-1.198,1.214l-2.275,0.606
      l-2.879,2.549l-5.15-1.698l-8.629,4.122l-3.237,0.244l-1.436-2.303h-1.08l-2.037,1.454l-3.711,0.849l-3.836-2.062v-3.517
      l1.799-0.244v-1.697l2.273-2.43l-2.034-5.459l-4.558,1.095l-1.798,3.883l1.199,1.94l-0.068,1.628l-0.172,4.195l1.438,1.214
      l-0.599,2.303l-2.767,0.588l-5.862,1.231v4.004l-1.198,0.365l-2.277-1.455l-1.677,1.09l-2.639,5.826l-1.198-0.85l-3.957,0.606
      v3.154l-3.326,2.813l-1.828,1.92l-1.799,0.241l-3.472-2.304l-1.683,0.24v2.019l-0.835,2.109l-3.292-0.698l-2.464-0.518
      l-1.798,1.216l8.15,5.215l3.116,8.494l-4.555,8.129l-3.835,0.605l-1.682-1.211l-8.866-0.244l-2.877-1.822l-6.112,3.522l1.126,5.474
      l0.312,1.807l-3.115,11.038l1.081,2.671l-0.84,1.697l0.84,2.306c0,0,6.817,1.571,6.95,0.972l2.037,3.154l13.784-0.849l8.628-9.586
      l-1.197-3.52l2.036-4.123l8.991-5.464l2.519-6.428l10.067,1.698l2.039-2.304l4.313-2.671l2.876,1.457l0.237,4.368l7.79,4.366
      l11.263,9.1l-0.148,6.128l1.828,0.304l2.278-4.126l-1.077-3.518l1.077-1.095l4.911,1.943l0.363-0.849l-1.441-1.697l-6.351-4.371
      l-0.839-2.063l-7.548-3.151l-0.604-3.883l-4.553-4.006l-0.597-2.911l2.033-2.062l2.639,1.457l2.007,2.031l4.158,3.463l5.046,3.079
      l5.443,3.315l1.681,2.425l1.199,5.221l2.875,5.823l3.712,0.849v1.214l3.626,1.85l-2.785,1.548l0.356,3.883l0.843,1.092h2.877
      l0.841-6.066l2.483-0.546l-1.587-2.974l-1.439-5.43l2.809,0.932l0.898-0.042c0,0-1.676-3.057-1.726-3.345h3.715l2.037-1.7
      l4.316,3.763l3.929-1.3l3.025-1.006v1.943l-3.476,1.573l-2.64,0.246l-1.08,2.061l1.682,1.457l-1.201,3.519l2.878,1.701
      l-0.841,1.695l2.64,1.821l1.44,2.912l2.275-1.214l3.475,1.821l2.878-2.67l1.679-0.606l4.075,3.276h2.276l4.557-2.67l6.107,0.849
      l-1.229,2.753l-1.645,3.676l1.077,3.763l-1.077,4.369l-0.84,6.671l-1.691,1.944c-1.892,0.129-4.563,0.342-4.658,0.483
      c-0.153,0.22-4.074-1.822-4.074-1.822s-9.989,2.982-10.068,3.279c-0.084,0.295-2.576-0.9-2.576-0.9l-8.334-0.921l-2.879-2.063
      h-3.116l-5.277-3.395l-6.83,1.092l-2.635,2.061l1.798,4.368l-2.396,1.457l-10.549-2.671l-6.351-6.063l-6.353-0.852l-7.785-6.432
      l1.798-2.668l0.243-3.419l0.235-3.256l0.358-2.546l-4.078-0.363l-11.146,0.363l-4.074,2.306l-3.712-1.214l-12.109,2.668
      l-5.511,3.521l-4.558,0.852l-2.638-1.457l-4.312,1.09l-3.118-1.939l-2.638,0.241l-4.792,7.521l-8.391,6.19l-1.198,2.547l1.198,6.19
      l-6.951,8.37l-5.021,1.964l-1.811,0.706l-1.173,2.104l-1.862,2.216l-3.917,4.658l0.357,2.426l-3.836,4.371l0.963,2.91l-3.536,3.238
      l-2.814,2.583l-1.44,4.003l0.928,1.001l2.85-1.241l-0.062,2.307l-2.036,7.279l2.277,4.976l-2.04,5.537l-2.756,9.264l2.877,2.673
      l-0.225,2.899l-0.136,1.711l6.114,1.822v2.305l1.678,2.062l-0.601,2.307l6.112,7.283l0.84,4.365l4.555,2.913l2.037,3.765
      l9.229,6.672l4.554,1.219l9.467-3.279l8.152,0.604l2.047-0.348l7.838-2.406l7.172-1.75l3.917-0.955l5.754,1.941l2.276,3.883
      l2.877,2.311l1.802-0.207l5.629-0.646l3.836,4.367l0.839,4.369l-0.69,1.906l-1.241,3.43l-0.706,1.947l0.359,3.395l-1.797,0.971
      l-0.239,1.941l1.081,0.365v2.061l8.389,10.68l1.646,2.854l2.904,5.03l-0.839,2.912l2.037,7.035v5.219l1.438,3.517l0.602,4.368
      l-6.111,11.046l-1.083,10.799l0.678,6.664l0.404,2.069l4.072,5.457l0.749,2.479l0.928,3.104l2.398,4.975l0.241,5.221l2.032,5.576
      l0.185,2.729l0.416,6.252l1.081,4.975l3.714,2.914l1.124,3.412l3.552,10.783v7.277l6.83,4.129l2.396-2.066l12.587-0.604
      l4.915-3.398h4.315l3.869-2.281l4.163-2.451l2.429-2.816l5.878-6.826l5.479-6.373l1.437-3.517l-0.838-4.854l2.035-3.881
      l8.633-4.609l-0.47-7.631l-0.369-6.076l-1.198-4.612l7.189-9.099c0,0,7.316-2.354,8.027-2.916s7.793-7.521,7.793-7.521
      l-1.079-6.069l0.438-11.112l0.045-1.142l-2.83-6.106l-1.725-6.996l0.838-4.366l-2.875-3.765l2.037-7.64l7.188-8.979l2.036-4.73
      h1.081l10.071-12.498l4.07-1.457l10.904-15.408l2.279-7.523l2.876-2.91l1.196-4.735l3.117-4.366l-2.274-2.31l-0.239-3.759
      l-1.8-0.364l-3.116,2.429l-5.754,0.853l-4.312,2.907l-10.311,1.095l-3.46-2.047l-2.293-1.354l2.58,1.389l0.537-3.814l-0.663-2.411
      l-0.536-1.955l-7.434-9.589l-5.989-2.913l-3.128-8.665c0,0-5.77-7.417-5.863-7.958s-0.838-6.675-0.838-6.675l-1.77-3.287
      l-1.945-3.625l-8.03-13.711l-4.933-12.029l0.105-1.211l3.628,3.049l1.676-2.668l1.802,4.729l8.866,8.738l0.359,6.912l5.992,3.278
      l1.197,3.155l-0.599,2.666l2.517,6.92l6.11,4.729l6.835,15.045l-1.018,1.382l1.612,2.504l0.359,3.764l2.305,3.202l3.093,2.016
      l5.753-3.519l10.829-1.465l3.312-4.363l8.631-3.762l0.837-2.668l2.984-0.945l6.244-1.967l3.72-4.854l5.511-4.977v-5.58l4.797-5.825
      l0.602-3.517l-4.914-3.764l-4.796-0.24l-4.315-4.369v-6.672l-1.798-0.607l-5.989,9.342l-1.8-0.364l-4.797,1.21l-2.396-2.303v-2.911
      l-1.677-2.425l-0.842,2.668l-1.438-0.852l-0.363-1.095l-1.677-5.093l-8.026-7.523l-1.8-4.123l4.075-1.94h3.716l3.235,2.911
      l-0.36,1.092l2.278,4.369l3.476,1.818l3.717,3.155l6.354,0.85l2.273-2.063l3.234-0.849l3.12,1.455l2.637,5.22l12.581,2.425
      l1.441-1.212l9.826,0.604l4.558-1.215l3.231,0.853l-0.355,2.426l5.273,5.22l2.515-0.608l0.36,2.67l2.271,0.35l2.283,1.349
      l-0.599,1.214l-1.684,0.243v1.455l2.878,3.76l3.715,1.454l3.479-0.603l0.235-6.31l2.04-2.062l0.842,1.093l-0.603,3.879l2.396,6.92
      l0.842,11.038l5.752,10.557l1.987,6.568l8.68,14.427l-0.96,1.697l2.636,6.435l3.719,0.607l3.716-4.37l-0.84-1.457l2.277-4.368
      l0.355-3.886l2.519-8.127l-1.916-7.892l10.907-12.5l3.476-6.672l5.755-5.58v-3.763l3.526-3.161l-0.042-1.999l0.83,0.033l0.84,2.58
      l2.876-0.365l2.036-2.974l1.92-2.483l5.272,3.76l0.479,5.218l1.858,2.27l1.021,1.247l3.206,2.291l2.064,1.471l2.097,5.019
      l1.858,3.11l0.451,3.562l0.39,3.107l1.795,0.609l1.784-1.972l2.173-2.397l2.877,0.852L512.108,264.098z M239.227,160.717
      l-2.185,0.303l3.994-0.592L239.227,160.717z M240.65,88.67l-2.629,0.162l8.25-0.85L240.65,88.67z M211.378,284.071l-1.063-1.544
      l-1.758-1.758c0.082-0.183-1.1-1.354-1.022-1.537l-0.258-0.203c-0.207-0.414,0.082-0.769,0.439-0.869
      c0.43-0.125,0.896-0.041,1.358-0.041c-0.262,0.604,1.313,0.58,0.453,1.383c1.911,0.377,2.466,2.512,4.244,3.378L211.378,284.071z
      M275.327,375.216c0,0.06-0.007,0.125,0,0.185c-0.013-0.067-0.007-0.157-0.007-0.219l-1.438-0.517l-1.345-1.185l-0.911-1.272
      l-0.486-1.771l-0.141-0.916l-1.121-0.5l-0.275-0.84l-1.114-1.346l-0.976-1.695l-0.215-1.561l-1.048-0.141l-0.765-0.701l0.067-1.201
      l0.561-1.35l-0.073-1.342c0,0-0.485-1.91-0.485-2.117c0-0.213,0.438-1.199,0.438-1.199l0.75,0.213l0.83,0.912l0.829,1.256
      l0.775,2.104l0.058,1.484c0,0,0.644,1.094,0.717,1.305c0.071,0.213,0.42,0.494,0.42,0.494s0.273,0.781,0.273,1.129
      c0,0.359-0.486,0.287-0.486,0.287s0.282,0.988,0.422,1.344c0.139,0.356,0.487,0.92,0.487,0.92h0.905l0.348,0.354l0.913,1.484
      l0.277,0.775l-0.562,0.492v0.775l1.188,1.348c0,0,0.493,1.273,0.7,1.48c0.207,0.215,0.555,0.846,0.555,0.846L275.327,375.216z
      M286.565,382.95c0.066,0.28,0.208,1.268,0.142,1.479c-0.073,0.207,0.764,1.269,0.764,1.269v1.133l0.115,0.647l-0.01-0.013
      l0.312,2.189l0.492,2.26l-0.071,1.272c0,0-0.701,1.203-0.77,1.414c-0.071,0.209,0.066,1.276,0.066,1.276l1.189,2.115l1.117,1.269
      c0,0,0.903,0.28,1.112,0.28c0.211,0,0.696,0.707,0.696,0.707l-0.102,0.459l-0.948-0.239l-0.903-0.22l-0.345,0.285l-0.771-0.144
      l-0.559-0.916l-0.421-0.142l-0.138,0.283l-0.628,0.062l-0.487-1.19l-0.842-2.896l-0.274-1.413l-0.492-1.134l0.28-0.707l0.632-0.637
      l-0.632-5.295v-1.56l-0.345-0.279l-0.417-1.131l-0.215-1.623v-0.852h0.694l1.255,0.635
      C286.071,381.604,286.489,382.663,286.565,382.95z M276.862,337.864l1.257-1.767l1.047-1.058l0.484,0.28l0.495,0.916h0.691
      l1.262,0.216l1.531,0.641c0,0,1.073,0.777,1.351,1.136c0.283,0.351,0.396,1.051,0.396,1.407c0,0.349-0.279,0.914-0.279,0.914
      l-1.06,0.033c0,0,0.084,0.017,0.066,0.121c-0.062,0.278-0.192,0.836-0.192,1.188c0,0.489-0.626,1.125-0.771,1.483
      c-0.14,0.354-0.346,0.424-0.346,0.424l-0.979-0.069l-0.487,0.845l-0.908-0.066h-0.695l0.276,0.488l0.979,0.142l0.979,0.354
      l0.766-0.354l0.771-0.142l0.629,0.496l0.07,0.639H283l-0.901,0.22l-0.913-0.22l-1.253,0.354l-0.979-0.135l-0.274-0.646
      l-0.632-0.418c0,0-0.069,1.062-0.069,1.27c0,0.211,0.069,0.777,0.069,0.984c0,0.217-0.555,0.645-0.555,0.645l-0.699-0.074
      l0.135-0.568v-0.775c0,0-0.345-0.354-0.276-0.635c0.071-0.283-0.212-1.836-0.212-1.836l-0.344-0.428v-1.197l-0.397-0.855
      l0.604-0.633v-0.984l-0.134-1.27L276.862,337.864z M345.187,176.979l-0.835,0.212l-0.348,0.496l-0.485,0.144l-1.334,0.421
      l-0.974,0.919l-0.767,0.07l-1.534,0.709l-0.907,0.422h-0.488l-0.632-0.422l-1.673,0.14l-1.188-0.281l-0.561-0.425h-2.72
      l-1.257-0.919l-0.068-1.273l0.632-1.413l0.414-1.27l0.066-1.556l0.493-0.92l-0.562-0.775l-0.348-1.413l0.348-1.059l0.279-1.131
      l-0.139-0.847l-0.282-0.709l0.07-0.921l0.491-0.138l0.764-0.354l0.212-0.706l-0.275-0.992l-0.771-0.775l-1.324-1.126l-1.116-0.994
      l-0.905-1.41l-0.56-1.2L326,157.06l-0.701-0.919l0.068-0.989l-0.14-0.634l-0.419-0.072l-0.561-1.129l-0.693-0.568l-0.142-0.425
      l-0.35-1.128l-0.77-0.495l-0.631-1.131l-0.976-1.343h-1.325l-0.417-1.554l-0.419-0.636l-0.07-1.695l0.348-0.14l0.561-1.129
      l1.395-0.637l0.978-0.846l0.353-1.275l1.535-0.21l0.207-0.567h0.699l0.837,0.709l0.771-0.142l0.624-0.846l0.632-1.416l1.465,0.354
      l0.975-0.564l2.096-0.072l0.838-0.284l0.628-0.21l0.7,0.566h0.695l0.419-0.849l0.697,0.14l1.328,0.072l0.56,1.273l0.209,1.977
      l0.208,2.051l0.067,1.198l-0.835-0.212l-0.771-0.211l-0.416,0.07l-1.188-0.354l-2.305,0.495v1.058l-0.419,0.707l-0.764,0.499v2.894
      l1.037,1.341l1.263,0.776l1.468,0.142l0.271,0.495l0.704,0.281h1.188l0.766,0.847l0.277,1.206l-0.485,1.413l0.419,0.849l0.141,1.48
      l0.209,1.907l0.421,0.635l0.769-0.423c0,0,0.625-2.191,0.625-2.4c0-0.213,1.186-0.426,1.186-0.426l0.7,0.426l0.142,1.412
      l1.046,1.129l-0.354,1.768l-1.254,0.991l-1.047-0.355l-0.978-0.776h-1.046l-0.069,0.917l0.413,0.14l0.915,2.334l0.14,0.707
      c0,0,0.557,0.069,0.832,0.139c0.284,0.071,0.142,0.92,0.142,0.92l-0.142,1.13l0.63,0.283l0.489-0.354c0,0,0.835,0.423,0.904,0.636
      c0.069,0.212-0.135,0.989-0.135,0.989l-0.071,0.991l0.908,0.491l0.348,1.134l0.697,0.637c0,0,0.138,1.268,0.138,1.692
      c0,0.424,0.423,1.129,0.351,1.34c-0.065,0.216,0.495,1.413,0.495,1.413L345.187,176.979z M362.427,138.409l-0.07,0.916
      l-0.836,0.428l0.698,1.837l0.208,0.986l-0.563,0.142l-1.11-0.918l-0.417,1.837l-1.604,0.844l-1.469,0.072l-0.84-0.352l-0.205,0.352
      l-1.331-0.139l-0.208-0.85l-0.491-1.129l0.145-0.636l-0.488-1.131l0.276-0.916l-0.276-0.991l-0.209-1.201l1.661,0.052
      c-0.296,0.629-0.182,2.456,0.35,2.87c0.663,0.515,1.829,0.292,2.113-0.21c0.282-0.5-0.566-1.796-0.566-1.796
      c0.007-0.453-0.277-0.613-0.74-0.873l-1.146-0.176l0.632-1.562v-0.849l1.121-0.137l2.72-1.559l0.625,0.143l0.212,0.988l0.561,1.131
      l0.903,0.209l0.768,1.559L362.427,138.409z M419.092,134.38l-1.256,0.282l-1.676,1.415l-0.905,0.425l-1.604-0.566l-0.771,0.142
      l-1.531,0.282l-0.845,0.637l-3.065,1.125l-1.119,0.148l-0.906-0.287l-0.769,0.496l-0.488,0.073l-1.604,0.916l-0.14,0.494
      l0.694,1.343l-0.834,0.425l0.071,0.422l-0.145,0.284l-0.417-0.424l-1.464-1.766l-0.837-0.987l-0.213-0.641l0.562-0.14l0.831-0.706
      l-0.136-0.918l0.769-0.567l0.562,0.284l0.416-0.424l0.555-0.564l0.91,0.143l0.904-0.282l1.469-0.639l2.231-0.282l1.604-0.707
      c0,0,2.164,0.357,2.373,0.357c0.212,0,1.118-0.285,1.118-0.285l3.213-0.212l1.322-0.706l0.769,0.209l0.7,0.847L419.092,134.38z
      M502.489,99.131l-0.071,0.71l0.278,1.62l-0.628,0.281l-0.421-0.207l-0.206,0.635l0.278,0.561c0,0,0.416,0.497,0.624,0.71
      c0.209,0.209-0.415,0.776-0.415,0.776h-0.768l-1.126,1.837l-0.758,0.989l-2.023,0.916l-0.771,0.143l-0.488-0.422l-1.742,1.482
      l-0.91,0.637l-1.321,0.919l-1.539,0.14l-0.417-0.566l0.489-0.353l0.558-0.425l0.352-0.352l-0.072,0.637h0.422l4.533-5.158
      l0.841-0.844l0.348-0.851l1.604-1.553l0.628-0.707l-0.14-1.979l-0.418-1.835l-0.07-1.695l-0.624-0.285l-0.074-0.849l0.634-0.353
      l0.965-0.636l0.281-0.492l0.565,0.35l0.414,0.991l1.189,1.273c0,0,0.142,1.128,0.063,1.343c-0.063,0.21-0.063,0.916,0,1.126
      c0.076,0.215,0.352,0.637,0.422,0.851C503.043,98.707,502.489,99.131,502.489,99.131z"/>
      <polygon class="st7" points="308.482,16.639 311.843,14.743 313.638,13.122 318.549,12.517 320.823,10.815 324.781,9.603
      327.18,5.476 326.22,3.78 324.303,3.78 322.265,6.449 309.56,7.904 309.052,9.118 307.882,11.905 303.568,11.905 302.971,15.184
      301.771,15.424 301.241,16.731 300.693,18.093 307.526,18.579 "/>
      <polygon class="st7" points="318.55,32.896 318.788,34.958 322.295,35.413 322.596,34.73 321.069,32.29 319.629,31.682 "/>
      <path class="st7" d="M36.649,37.509l1.917-0.85V34.11l0.36-0.97l0,0c0.145,0.135,1.677,0.365,1.677,0.365l1.438-0.852l-0.839-1.816
      l-2.638-0.611l-0.479,1.214c0,0,0.695,1.561,0.84,1.699l-4.316,0.605C34.71,34.437,36.649,37.509,36.649,37.509z"/>
      <polygon class="st7" points="340.963,18.339 342.043,17.123 340.364,15.668 338.925,16.639 339.163,18.094 "/>
      <polygon class="st7" points="662.732,339.614 661.938,339.055 660.935,339.691 660.26,340.116 661.533,341.282 "/>
      <polygon class="st7" points="501.213,2.319 508.044,1.472 508.646,0.259 499.414,-0.834 498.337,0.259 498.817,2.077 "/>
      <polygon class="st7" points="295.776,40.179 296.379,37.873 294.336,37.024 293.501,38.718 294.101,40.419 "/>
      <polygon class="st7" points="493.062,0.016 491.383,-1.803 489.107,-1.198 482.994,-2.654 480.116,-1.441 480.116,2.566
      491.984,3.534 "/>
      <polygon class="st7" points="495.699,10.449 495.699,10.45 499.413,6.93 497.377,6.081 493.422,8.752 494.259,10.449 "/>
      <polygon class="st7" points="301.53,29.379 305.842,31.683 313.876,32.291 313.876,30.837 310.401,27.679 307.28,22.1
      300.692,21.854 300.093,24.767 298.055,27.315 299.254,29.743 "/>
      <polygon class="st7" points="231.842,32.791 231.244,31.88 229.147,32.488 229.745,33.549 "/>
      <polygon class="st7" points="149.315,33.505 146.439,34.11 146.199,36.05 149.074,36.05 "/>
      <path class="st7" d="M111.439,41.391l3.717-1.819v-2.547l-6.595-0.974l-6.952,1.822l-2.037-1.459l0.841-2.061l5.753-0.608
      l1.478-2.549l-4.353-1.454v-1.455l3.476-0.367l1.438,2.306l2.636,2.428l6.354,1.943v-2.306l-6.354-4.004l-0.84-3.52l0.839-1.213
      l2.878-0.607l4.555,3.884l1.199-1.214L118.63,22.1l1.08-0.608l4.313,2.914l0.603-0.852l-1.2-4.611c0,0-0.116-3.712,0-3.758
      c0.119-0.05,2.638,1.938,2.638,1.938l2.035-0.484l-0.355-4.733l-1.68-2.547l3.715-3.276V4.02h-3.114l-2.877,2.428l-4.676,2.306
      l-1.437-1.214l-0.24-2.064l6.591-4.61l8.633,0.85l2.396-1.729L23.944-0.06l3.116,0.924L25.143,2.93L21.85,2.415L16.991,2.93
      l-0.479,1.09l4.315,0.608l0.236,2.06l15.823,0.608l4.552,4.007v4.122l0.96,2.669l-3.234,7.279l0.6,0.243l4.076-2.67l1.079,1.213
      l-0.602,1.214l1.2,2.306l-0.839,1.093l0.597,4.368l-4.674,4.974l-1.677,3.761L34.61,42.24l-2.274,1.455l0.839,2.551L31.975,47.7
      l-0.839,2.909l1.437,1.457L30.3,55.345l1.677,2.062l-0.839,1.94l1.198,1.457l-1.438,1.82l1.679,1.696l-0.84,2.307l0.84,1.214
      l-0.6,2.306h2.039l3.714,1.214l2.037-1.214h2.637l-0.96,2.306l0.602,1.455l-1.077,1.457l1.438,2.061l9.108-6.064l-0.239-1.457
      l2.278-1.455v-1.214l2.037-2.064l5.515-3.396l-1.201-2.428l0.905-1.319l0.295-2.079l2.52-0.603l1.57-1.488l1.9-1.791l1.68,0.971
      l1.201-0.603l2.034,0.846l2.278-1.697l2.637,0.852l5.155-4.734l7.789-4.368l4.931-0.385l5.378-1.313L111.439,41.391z"/>
      <polygon class="st7" points="149.912,97.809 151.711,97.809 152.548,101.329 157.463,102.784 157.942,106.544 157.463,107.394
      153.988,107.394 153.75,108.809 153.397,110.885 153.149,112.367 149.911,113.823 150.271,115.279 152.188,115.279 156.265,116.13
      155.067,117.344 151.711,117.585 148.235,120.255 149.074,121.105 158.305,120.255 163.457,117.95 166.933,118.554 168.97,116.492
      168.371,114.676 171.246,111.762 170.406,109.821 165.494,111.522 165.338,109.614 165.149,107.349 164.893,104.242
      162.858,100.117 156.025,96.115 156.505,95.505 158.901,95.265 161.42,91.139 160.34,89.922 153.987,89.68 154.587,88.833
      158.303,87.011 159.138,85.314 157.941,84.099 154.225,84.099 148.473,93.199 "/>
      <polygon class="st7" points="137.33,111.276 134.691,112.366 134.092,114.187 136.131,115.642 139.246,114.431 143.559,113.581
      145.769,112.461 146.568,111.542 148.294,106.273 149.911,102.175 148.835,100.476 146.198,100.476 142.013,99 141.044,98.655
      140.205,99.626 140.303,101.036 140.399,102.351 140.445,103.024 139.246,103.389 136.131,107.149 136.97,108.847 "/>
      <path class="st7" d="M202.288,1.473h1.438l1.198,0.605l-1.438,3.155l5.395,2.062l1.797,2.062l1.676-0.605
      c0,0,1.417-5.882,1.438-6.188c0.021-0.308,1.678-4.007,1.678-4.007l-2.275-1.818l-5.988,2.427l-1.439-1.454l-3.477-0.367
      l-0.84,1.456l0.349,1.105L202.288,1.473z"/>
      <polygon class="st7" points="213.57,40.95 214.391,40.42 214.167,39.918 213.267,40.602 "/>
      <polygon class="st7" points="205.556,46.44 206.901,45.755 206.603,45.15 205.406,45.755 "/>
      <polygon class="st7" points="209.597,43.331 210.079,43.694 210.919,43.088 210.648,42.726 "/>
      <polygon class="st7" points="551.195,249.836 551.195,252.139 553.827,252.991 557.307,251.291 558.386,244.619 557.007,244.014
      554.07,246.076 "/>
      <polygon class="st7" points="615.976,283.086 616.516,286.242 617.787,285.468 617.041,282.738 "/>
      <path class="st7" d="M625.808,314.861c0-0.719-0.497-1.299-1.104-1.299c-0.604,0-1.104,0.58-1.104,1.299
      c0,0.718,0.498,1.3,1.104,1.3C625.311,316.161,625.808,315.579,625.808,314.861z"/>
      <ellipse class="st7" cx="623.497" cy="342.759" rx="0.946" ry="0.964"/>
      <path class="st7" d="M606.119,285.791l2.603-0.158l2.278-4.369c0,0-0.795-1.324-1.076-1.092c-0.284,0.236-4.678,1.092-4.678,1.092
      L606.119,285.791z"/>
      <path class="st7" d="M622.509,348.852l1.436,2.67l2.039-1.213v-1.457c0,0-1.03-0.851-1.679-0.851S622.509,348.852,622.509,348.852z
      "/>
      <polygon class="st7" points="243.155,185.167 250.35,186.38 250.591,184.316 242.796,183.104 242.555,184.315 "/>
      <path class="st7" d="M611.961,274.833l-1.438-4.613c0,0-2.139-0.993-2.401-0.85c-0.253,0.146-2.724,0.153-2.724,0.153l5.604,6.277
      L611.961,274.833z"/>
      <polygon class="st7" points="616.516,276.896 614.836,277.5 617.565,280.964 618.194,280.415 "/>
      <path class="st7" d="M623.945,303.714l0.36-1.455l-0.839-8.979l-2.638-3.275c0,0-2.132-0.077-2.041,0
      c0.095,0.076-0.236,2.303-0.236,2.303l-2.479,1.268c0,0-1.947,1.974-2.195,2.258c-0.252,0.281-1.078-0.609-1.078-0.609
      l-4.679,2.426v3.763l3.858-2.709c0,0,3.216,1.873,3.336,2.104c0.118,0.231-0.48,3.766-0.48,3.766l2.518,2.912h2.037l1.44-4.979
      l2.275,1.82L623.945,303.714z"/>
      <polygon class="st7" points="630.656,170.001 631.137,166.603 634.369,167.696 634.613,166.603 632.935,163.086 632.574,159.566
      630.298,157.259 629.459,151.678 622.028,142.094 619.151,144.156 619.556,147.124 623.105,152.285 622.508,155.806
      623.944,158.957 621.666,162.233 619.389,162.717 618.551,159.808 617.352,159.808 616.752,161.262 617.711,165.993
      615.673,169.513 609.322,170.365 607.884,173.882 606.206,174.125 605.245,175.822 606.444,177.642 610.161,177.642
      610.522,174.974 612.441,174.124 620.828,174.729 623.466,177.641 624.902,177.036 625.382,175.338 623.466,173.274
      622.268,170.969 623.704,169.999 626.578,171.21 627.422,170.366 "/>
      <polygon class="st7" points="647.577,348.126 646.116,348.001 648.399,352.37 649.593,351.52 649.836,349.702 648.995,348.245 "/>
      <polygon class="st7" points="640.365,370.689 641.805,370.085 642.166,368.628 640.727,368.628 "/>
      <path class="st7" d="M647.601,359.568c-0.767-0.002-1.392,0.556-1.392,1.242c0,0.686,0.625,1.24,1.392,1.24
      c0.771,0,1.396-0.557,1.396-1.24C648.995,360.125,648.371,359.568,647.601,359.568z"/>
      <path class="st7" d="M705.086,379.428l-0.238-2.066l-5.516-8.367l2.036-2.676l-0.361-0.896l-0.475-1.16l-5.516-3.521l-2.276-4.366
      l-10.669-8.736l-4.059-0.213l-5.171-0.271l-7.188-4.733l-5.155,3.521l-2.278,4.123h-1.438l-1.97-2.455l-2.585-1.911l0.84-1.457
      v-4.73l-5.513-3.762l-2.279,2.303h-2.272l-1.201,2.673l1.796,2.062l5.996,0.485c0,0,1.798,2.744,2.016,2.655
      c-0.018,0.693,0.023,3.775,0.023,3.775l0.841,2.668l2.278,1.09l3.231,4.369l3.953,0.973l4.077,2.548l1.284,5.252l-0.686,5.303
      l-3.232-0.363v1.455l1.195,0.359l2.037-1.449l0,0l1.077,1.697l3.715,0.244l3.076,2.331l1.241,0.939l6.951,1.092l1.2-1.092
      l-0.967-2.91l3.24-3.519h2.035l6.596,2.666l3.478,9.586l9.71,2.549l1.192-0.848L705.086,379.428z"/>
      <polygon class="st7" points="637.338,343.876 639.525,344.239 640.113,343.102 636.816,342.497 "/>
      <polygon class="st7" points="627.781,342.175 629.803,341.889 630.432,340.968 630.525,340.372 627.225,340.829 "/>
      <path class="st7" d="M638.69,348.245l-5.156-0.606l-2.875,1.213l0.479,1.213h3.835l4.793,1.095v-1.097
      C639.771,350.184,638.69,348.245,638.69,348.245z"/>
      <polygon class="st7" points="630.657,336.961 630.657,335.141 633.531,335.141 633.774,334.046 632.575,332.833 632.337,327.861
      630.299,327.861 629.222,325.311 627.422,327.01 628.263,329.92 628.263,333.68 "/>
      <polygon class="st7" points="611,290.607 611,286.85 609.924,286.85 608.944,289.915 "/>
      <polygon class="st7" points="257.118,181.792 257.38,181.329 257.224,180.539 256.555,180.145 255.673,180.554 255.534,181.359
      256.232,182.043 "/>
      <polygon class="st7" points="625.984,137.482 626.341,136.268 628.262,133.965 629.221,131.294 625.984,126.32 621.8,127.189
      617.216,125.967 614.479,124.013 612.442,123.773 612.442,124.621 613.879,126.32 616.516,131.658 616.275,132.751
      613.641,132.511 615.074,138.331 616.754,139.787 619.153,139.787 618.552,137.119 619.631,136.267 "/>
      <polygon class="st7" points="278.517,183.104 275.644,183.736 273.006,184.316 272.526,186.38 273.364,186.985 277.32,186.015 "/>
      <path class="st7" d="M589.784,218.653l-1.193,0.849c0.095,0.178-1.443,6.796-1.443,6.796l3.479,6.675c0,0,1.886,0.455,2.036-0.367
      c0.147-0.819,0-1.939,0-1.939l-1.437-1.819l0.238-8.375L589.784,218.653z"/>
      <polygon class="st7" points="250.291,170.886 249.834,170.384 249.235,170.301 248.852,170.465 248.539,170.86 248.488,171.484
      249.121,172.165 250.094,171.92 "/>
      <polygon class="st7" points="254.215,183.285 253.705,184.176 254.035,184.869 254.93,185.06 255.498,184.579 255.578,184.372
      255.575,183.883 254.895,183.207 "/>
      <polygon class="st7" points="617.712,328.225 613.038,330.775 605.848,329.682 600.095,333.079 599.855,335.986 597.317,340.025
      594.943,345.331 595.779,348.607 597.576,349.702 598.416,352.007 597.221,358.802 599.018,359.286 602.732,355.891
      601.984,351.456 603.571,350.062 602.136,346.788 603.813,345.939 604.771,346.788 604.409,350.062 606.209,356.739
      607.287,356.739 611.002,354.673 607.047,343.025 612.802,337.205 610.767,336.6 605.61,340.118 602.137,338.052 602.92,334.796
      604.409,332.835 618.791,331.624 619.392,328.227 617.712,328.227 "/>
      <polygon class="st7" points="247.126,165.648 246.871,166.241 247.409,166.905 247.874,166.1 "/>
      <polygon class="st7" points="594.103,289.396 596.138,287.939 595.538,284.176 593.74,285.391 593.502,288.911 591.228,290.852
      588.591,297.282 590.386,297.646 "/>
      <path class="st7" d="M245.075,171.455c-0.001,0,0.245-0.834,0.401-1.105l-1.324-0.587l-1.071-0.477l-0.286,0.715l1.159,0.737
      L245.075,171.455z"/>
      <polygon class="st7" points="594.698,326.766 591.467,323.855 592.307,321.43 590.027,317.672 591.825,316.574 590.867,313.906
      594.699,313.664 594.944,311.844 597.221,311.6 597.221,309.782 593.504,307.234 591.467,307.234 590.387,302.864 586.909,302.864
      583.393,309.169 582.238,311.241 579.36,311.6 573.125,319.975 570.731,319.975 568.811,321.793 568.213,327.252 564.736,326.766
      560.183,327.618 559.971,328.618 561.025,333.441 560.421,337.204 563.534,341.812 563.057,344.48 564.976,346.548
      568.213,346.548 572.003,348.57 578.521,348.85 578.737,350.969 578.882,352.369 580.32,353.215 582.836,351.762 592.307,332.59
      595.541,329.316 "/>
      <polygon class="st7" points="572.766,365.475 568.211,361.71 561.26,362.807 556.944,360.253 550.951,359.286 545.799,363.165
      546.278,364.018 548.314,363.654 552.63,368.02 555.506,367.536 559.822,368.384 561.861,368.02 569.801,371.061 577.918,372.996
      578.281,370.086 573.605,367.777 "/>
      <path class="st7" d="M549.154,349.46l-8.025-10.19v-3.281l-0.844-2.307l-2.637,0.364l-0.24-1.815l-5.51-7.28l-1.682-0.24
      l-10.664-12.258l-9.71-2.304l-0.604,1.095l0.84,2.666l5.995,6.432l1.796,3.763l4.316,2.666l0.24,5.463l4.072,4.731l2.521,6.675
      l11.505,14.192c0,0,4.146,1.244,4.314,1.217c0.165-0.034,2.876-2.065,2.876-2.065L549.154,349.46z"/>
      <polygon class="st7" points="616.753,343.271 618.193,343.271 618.835,341.736 616.439,342.195 "/>
      <polygon class="st7" points="602.134,276.898 602.73,275.803 601.533,273.74 598.655,273.74 598.655,274.833 600.934,277.262 "/>
      <polygon class="st7" points="601.892,270.675 603.328,269.613 601.296,266.46 600.095,261.484 601.892,260.025 602.731,255.658
      600.451,248.986 595.18,248.986 594.343,252.75 595.78,257.359 593.505,260.025 593.505,262.333 593.503,262.333 598.416,269.613
      "/>
      <polygon class="st7" points="610.765,121.469 611.961,120.011 614.836,119.043 614.836,117.949 608.12,113.218 605.607,108.363
      609.323,106.912 600.45,98.174 594.942,95.503 593.503,90.526 591.466,89.92 586.071,85.919 583.435,85.555 585.711,90.527
      591.057,96.943 603.811,112.127 608.12,119.649 "/>
      <ellipse class="st7" cx="603.448" cy="307.531" rx="1.253" ry="1.134"/>
    </g>
    <path id="europe" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" d="M123.694,127.567
      c0-46.341,37.567-83.908,83.908-83.908c46.349,0,83.915,37.567,83.915,83.908c0,46.342-37.566,83.908-83.915,83.908
      C161.261,211.476,123.694,173.909,123.694,127.567z"/>
    <g id="europe_hover" class="st10">
      <path id="europe_on" class="st12" d="M123.694,127.567c0-46.341,37.567-83.908,83.908-83.908c46.349,0,83.915,37.567,83.915,83.908
      c0,46.342-37.566,83.908-83.915,83.908C161.261,211.476,123.694,173.909,123.694,127.567z"/>
      <text id="europe_title" transform="matrix(1 0 0 1 1.1331 103.4023)" class="st6 st2 st9">Europe</text>
      <polyline id="europe_line1" class="st0" points="1.134,109.898 114,109.898 124.448,116.277 "/>
      <line id="europe_line2" class="st11" x1="124.448" y1="116.277" x2="147.5" y2="130.75"/>
      <text transform="matrix(1 0 0 1 1.1331 130.75)" class="st3 st5 st8">Baltic States, Riga</text>
      <text transform="matrix(1 0 0 1 1.1331 150.75)" class="st3 st5 st8">Bulgaria, Sofia</text>
      <text transform="matrix(1 0 0 1 1.1331 170.75)" class="st3 st5 st8">Germany, Hamburg </text>
      <text transform="matrix(1 0 0 1 1.1331 190.75)" class="st3 st5 st8">Italy, Milan</text>
      <text transform="matrix(1 0 0 1 1.1331 210.75)" class="st3 st5 st8">Romania, Sibiu</text>
      <text transform="matrix(1 0 0 1 1.1331 230.75)" class="st3 st5 st8">Turkey, Istanbul</text>
      <text transform="matrix(1 0 0 1 1.1331 250.75)" class="st3 st5 st8">Turkey, Izmir</text>
    </g>
    <circle id="n_china" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="535.401" cy="171.693" r="31.172"/>
    <g id="n_x5F_china_hover" class="st10">
      <circle id="n_china_on" class="st12" cx="535.401" cy="171.693" r="31.172"/>
      <text id="n_china_title" transform="matrix(1 0 0 1 636.8401 112.7305)" class="st6 st2 st9">North China</text>
      <polyline id="n_china_line1" class="st0" points="736.469,119.23 636.85,119.23 563.303,157.579 "/>
      <line id="n_china_line2" class="st11" x1="546.053" y1="166.25" x2="563.303" y2="157.579"/>
      <text transform="matrix(1 0 0 1 636.8401 139.666)" class="st4 st5 st8">Qingdao</text>
      <text transform="matrix(1 0 0 1 636.8401 159.666)" class="st4 st5 st8">Shanghai</text>
    </g>
    <circle id="s_china" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="555.402" cy="214.026" r="31.172"/>
    <g id="s_china_hover" class="st10">
      <circle id="s_china_on" class="st12" cx="555.402" cy="214.026" r="31.172"/>
      <text id="s_china_title" transform="matrix(1 0 0 1 636.844 197.2979)" class="st6 st2 st9">South China</text>
      <polyline id="s_china_line1" class="st0" points="736.469,203.798 636.85,203.798 586.509,215.995 "/>
      <line id="s_china_line2" class="st11" x1="568.345" y1="220.417" x2="586.509" y2="215.995"/>
      <text transform="matrix(1 0 0 1 636.844 224.2344)" class="st4 st5 st8">Dongguan</text>
      <text transform="matrix(1 0 0 1 636.844 244.2344)" class="st4 st5 st8">Hong Kong</text>
      <text transform="matrix(1 0 0 1 636.844 264.2344)" class="st4 st5 st8">Xiamen</text>
    </g>
    <circle id="india" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="450.069" cy="260.693" r="53.839"/>
    <g id="india_hover" class="st10">
      <circle id="india_on" class="st12" cx="450.069" cy="260.693" r="53.839"/>
      <text id="india_title" transform="matrix(1 0 0 1 345.0662 321.583)" class="st6 st2 st9">India</text>
      <line id="india_line2" class="st11" x1="468.979" y1="311.176" x2="468.979" y2="285.875"/>
      <polyline id="india_line1" class="st0" points="345.071,328.083 468.979,328.083 468.979,311.176 "/>
      <text transform="matrix(1 0 0 1 345.0662 348.5176)" class="st4 st5 st8">Bangladesh, Dhaka</text>
      <text transform="matrix(1 0 0 1 345.0662 368.5176)" class="st4 st5 st8">India, Delhi</text>
      <text transform="matrix(1 0 0 1 345.0662 388.5176)" class="st4 st5 st8">India, Mumbai</text>
    </g>
    <circle id="se_asia" onmouseover="showMe(this);" onmouseout="hideMe(this);" class="st1" cx="574.369" cy="312.013" r="71.839"/>
    <g id="se_asia_hover" class="st10">
      <circle id="se_asia_on" class="st12" cx="574.369" cy="312.013" r="71.839"/>
      <text id="se_asia_title" transform="matrix(1 0 0 1 465.8616 392)" class="st6 st2 st9">SE Asia</text>
      <line id="se_asia_line2" class="st11" x1="586.387" y1="389.083" x2="586.387" y2="361"/>
      <polyline id="se_asia_line1" class="st0" points="465.861,398.5 586.387,398.5 586.387,383.271 "/>
      <text transform="matrix(1 0 0 1 465.8616 418.9355)" class="st4 st5 st8">Indonesia, Jakarta</text>
      <text transform="matrix(1 0 0 1 465.8616 438.9355)" class="st4 st5 st8">Singapore</text>
      <text transform="matrix(1 0 0 1 465.8616 458.9355)" class="st4 st5 st8">Thailand, Bangkok</text>
      <text transform="matrix(1 0 0 1 465.8616 478.9355)" class="st4 st5 st8">Vietnam, Ho Chi Minh City</text>
    </g>
    </svg>

  • One more person who can't send mail but can receive

    I sent mail last night and woke up this morning not being able to send mail.
    I can receive, but can't send. I can send to my self, but can't reply to others or create new.
    The email time out message say's the authentication is on. How that changed over night? Not sure.
    Under Mail preferences, Account information, outgoing server settings-
    I've been using 2525 with no authentication for over a year. I noticed someone suggesting 465 and 587... didn't work.
    I went into advanced and saw where it IS asking for authentication (using password) but in the drop down list it doesn't give the word 'none' just like the account option had to select.
    I used the connection Doctor and I have connection...
    what else can I do?
    Thank you for the help
    Chelle

    The standard TCP-port for SMTP is 25. If this doesn't work, try to authenticate to the SMTP-server with the credentials of your POP3-login. Maybe your ISP reconfigured his SMTP-servers to use aSMTP.
    Some other ISP use a method called "SMTP-after-POP3". This means, that you must fetch your mail using POP3 first. After doing this, you have a specific period of time (at most ISPs 5 to 15 minutes) to send mail from the same IP-address as you have POPed before. This is for additional security.
    One more reason could be that your configured SMTP-server is simply "dead" or offline for system maintenance. To check if the machine is alive, go to terminal and
    ping nameofyourserver
    and see if it responds. If so, try connecting on the SMTP port by typing
    telnet nameofyourserver 25
    These steps can provide additional information to find the cause for your problem.

  • Strange bug -- adding one more button OR page causes Form warning to appear

    I'm building a simple interactive document in InDesign CS4 on the Mac, to be exported/delivered as a PDF. There are a few text-based buttons on the Master Page that are set to Go To a Text Anchor on Release. There are 4 buttons of these buttons on the page, and each one leads to a different page in the document, and they all work fine. They are all built the same way.
    I want to export a PDF that opens cleanly in Reader, meaning no unexpected dialog boxes or warning messages appear. Up until this point, my document opens cleanly in Reader.
    However, when I create a FIFTH button (using the exact same method used to create the other buttons), OR I add ANY more pages to my document (which currently stands at 16 pages, but will need to ultimately be upwards of 40), for some reason, opening the PDF in Reader causes Reader to start displaying the large, distracting pink warning message at the top of the page:
    "Please fill out the following form. You cannot save data typed into this form. Please print your completed form if you would like a copy for your records."
    The fifth button I create (from scratch) causes this message to appear.
    Or, if I add another page (using my Master Page, where the buttons are used), this message appears. Even if the fifth button is not created, and I add another page from the Master, this message appears.
    If I add a blank new page (without using the Master Page), the message does NOT appear.
    So, for some reason, adding ONE more button, or referring to the Master Page in the document ONE more time by adding a 17th (or more) pages, seems to kick InDesign/Acrobat Reader into thinking my document is suddenly a form, and causes Reader to display that obnoxious pink message when opening the document.
    I've tried several troubleshooting steps.
    - I've ensured my buttons have unique names.
    - I've tried creating the fifth button from scratch, and also tried creating it from duplicating one of the existing "good" buttons.
    - I've made sure the button has a destination page/Text Anchor to go to.
    - I've opened the PDF in Acrobat Pro 9, and gone through all of the page and buttons in the Forms Manager, and there is nothing out of the ordinary in that view.
    Why is Reader suddenly thinking my document is a form (that "cannot be edited/saved") when I add one more button, or one more page!? It's bizarre, and quite frustrating.
    Thanks for any insights,
    Robbie

    You can use that same workaround with ID CS4 files. You just have to make the PDF and then go into Acrobat to add the security that doesn't allow editing (Acrobat -> Security -> Encrypt with Password) . That gets rid of the warning about the form. Of course if you actually have a form somewhere in your document, you won't be able to use that......

Maybe you are looking for

  • Problem with InDesign CC exported epub for upload to IngramSpark

    I am completely frustrated with IngramSpark.  I have an epub file exported directly from InDesign and it repeatedly is being rejected by Ingram with the following message: Adobe Format Rejected - Invalid Metadata or Content File 04/10/2014 12:05:48 C

  • Time measure has changed from frames to centesimal.

    After upgrading from QT 7.2 (or 7.1) to 7.5 today the time measument in the film info window has changed from showing the time in frames to showing it in seconds with decimals. Now shows time as 00:00:03:96 instead of 00:00:03:24. I have looked aroun

  • Still using BW 3.5 query designer for BI 7.0 backend

    Has anyone worked on an upgrade where only the backend has been upgraded to 7.0 but still using query designer 3.5? Have there been any query performance issues? Would you recommend upgrading the query designer to 7.0 soon?

  • IMovie Selection Problems

    Hello, This is my second time posting and this one is far less complex than my previous question (I hope). I find that everytime I select a clip from my Event Library. And say I select the clip to be 12 seconds long, and I move it up into where my pr

  • How do i mark email as read

    Hello, I have several email acounts, receive numerouse emails daily, many I read on my Mac, but it doesn't syn the read emails,  how can I do this with having to go in and re-read each email?