added scripts and SUPERMICRO

This commit is contained in:
2012-02-29 15:47:11 -05:00
parent 939e57d438
commit b9cd8bbfd2
818 changed files with 35440 additions and 0 deletions

30
ChangeDNS-WINS-NJ.ps1 Normal file
View File

@@ -0,0 +1,30 @@
# Paste the script below into a PowerShell prompt
get-content c:\computernamesnj.txt | foreach {
$Server = $_
$NICs = Get-WMIObject Win32_NetworkAdapterConfiguration -computername $Server -filter "IpEnabled=True"
Foreach ($NIC in $NICs) {
if ($NIC.DNSServerSearchOrder -ne $null) {
#Gets the individual NIC adapter name based on the index number of the NIC
$Adapter = Get-WMIObject Win32_NetworkAdapter -computername $Server | where {$_.index -eq $NIC.index}
write-host "name " $Adapter.NetConnectionID
#we need to convert this to a normal variable so that we can use it nicely later
$interface = $Adapter.NetConnectionID
#sets wins based on the NIC name
#compiles scriptblocks first to allow us to add a varible into the command
$sb1 = [scriptblock]::create('psexec \\$Server netsh interface ip add wins $Interface 10.4.72.40 index=1')
$sb2 = [scriptblock]::create('psexec \\$Server netsh interface ip add wins $Interface 10.4.72.41 index=2')
$sb3 = [scriptblock]::create('psexec \\$Server netsh interface ip add wins $Interface 10.0.0.1 index=3')
#invokes the compiled commadn on the remote server
Invoke-Command -ScriptBlock $sb1
Invoke-Command -ScriptBlock $sb2
Invoke-Command -ScriptBlock $sb3
}
}
}

25
EnableKerbLog.vbs Normal file
View File

@@ -0,0 +1,25 @@
'==========================================================================
'
' VBScript Source File -- Created with SAPIEN Technologies PrimalSCRIPT(TM)
'
' NAME: EnableKerbLog.vbs
'
' AUTHOR: Microsoft Corp.
' DATE : 12/14/2001
'
' COMMENT: Script is designed to assist Customers with Enabling Kerberos Logging
' on Multiple Clients.
'==========================================================================
Dim wsObj
Set wsObj = CreateObject("Wscript.Shell")
' Add the LogLevel Value to Kerberos Key in Registry.
On Error Resume Next
WScript.Echo "Enabling Kerberos Logging..."
wsObj.RegWrite "HKLM\System\CurrentControlSet\Control\LSA\Kerberos\Parameters\LogLevel",1,"REG_DWORD"
Set wsObj = Nothing
WScript.Echo "-=[Complete!]=-"

102
EnumSites.vbs Normal file
View File

@@ -0,0 +1,102 @@
OPTION EXPLICIT
DIM CRLF, TAB
DIM strServer
DIM objWebService
TAB = CHR( 9 )
CRLF = CHR( 13 ) & CHR( 10 )
IF WScript.Arguments.Length = 1 THEN
strServer = WScript.Arguments( 0 )
ELSE
strServer = "localhost"
END IF
SET objWebService = GetObject( "IIS://" & strServer & "/W3SVC" )
WScript.Echo "Enumerating websites on " & strServer & CRLF
EnumWebsites objWebService
SUB EnumWebsites( objWebService )
DIM objWebServer, objWebServerRoot, strBindings
FOR EACH objWebServer IN objWebService
IF objWebserver.Class = "IIsWebServer" THEN
SET objWebServerRoot = GetObject(objWebServer.adspath & "/root")
WScript.Echo _
"Site ID = " & objWebserver.Name & CRLF & _
"Comment = """ & objWebServer.ServerComment & """ " & CRLF & _
"State = " & State2Desc( objWebserver.ServerState ) & CRLF & _
"Path = " & objWebServerRoot.path & CRLF & _
"LogDir = " & objWebServer.LogFileDirectory & _
""
' Enumerate the HTTP bindings (ServerBindings) and
' SSL bindings (SecureBindings)
strBindings = EnumBindings( objWebServer.ServerBindings ) & _
EnumBindings( objWebServer.SecureBindings )
IF NOT strBindings = "" THEN
WScript.Echo "IP Address" & TAB & _
"Port" & TAB & _
"Host" & CRLF & _
strBindings
END IF
END IF
NEXT
END SUB
FUNCTION EnumBindings( objBindingList )
DIM i, strIP, strPort, strHost
DIM reBinding, reMatch, reMatches
SET reBinding = NEW RegExp
reBinding.Pattern = "([^:]*):([^:]*):(.*)"
FOR i = LBOUND( objBindingList ) TO UBOUND( objBindingList )
' objBindingList( i ) is a string looking like IP:Port:Host
SET reMatches = reBinding.Execute( objBindingList( i ) )
FOR EACH reMatch IN reMatches
strIP = reMatch.SubMatches( 0 )
strPort = reMatch.SubMatches( 1 )
strHost = reMatch.SubMatches( 2 )
' Do some pretty processing
IF strIP = "" THEN strIP = "All Unassigned"
IF strHost = "" THEN strHost = "*"
IF LEN( strIP ) < 8 THEN strIP = strIP & TAB
EnumBindings = EnumBindings & _
strIP & TAB & _
strPort & TAB & _
strHost & TAB & _
""
NEXT
EnumBindings = EnumBindings & CRLF
NEXT
END FUNCTION
FUNCTION State2Desc( nState )
SELECT CASE nState
CASE 1
State2Desc = "Starting (MD_SERVER_STATE_STARTING)"
CASE 2
State2Desc = "Started (MD_SERVER_STATE_STARTED)"
CASE 3
State2Desc = "Stopping (MD_SERVER_STATE_STOPPING)"
CASE 4
State2Desc = "Stopped (MD_SERVER_STATE_STOPPED)"
CASE 5
State2Desc = "Pausing (MD_SERVER_STATE_PAUSING)"
CASE 6
State2Desc = "Paused (MD_SERVER_STATE_PAUSED)"
CASE 7
State2Desc = "Continuing (MD_SERVER_STATE_CONTINUING)"
CASE ELSE
State2Desc = "Unknown state"
END SELECT
END FUNCTION

View File

@@ -0,0 +1,226 @@
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''''SFTP Folder Management Script'''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Author: Stuart Stent
'LastUpdated: 9/24/10
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Description:
'This script looks in a root directory and for each subdirectory
'under that folder it manages the files in folders one level below that.
'
'i.e SrootSource = e:\BulkuploadFiles + \Username + \sAppendSource \ managedfolders
'
'For each of the managed folders three passes are run
' 1 - Delete files older than that defined in MaxAge -- eg. kill all files older than 60 days
' 2 - Zip remaining files in to archives - by week (named by final day of week - sunday)
' 3 - Deletes zip files older than MaxAge
' 4 - finally, check each folder to ensure it is within the prescribed size limit. If not delete old zip files until under defined limit
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Define Constants and Initialise environment
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Const sRootSource = "d:\test" 'top level folders
Const sAppendSource = "\Listings\" ' subdir to append to subdirs of sRootSource
const sWinzipLocation = "C:\Progra~1\WinZip\WZZIP.EXE -e0 " 'needs a trailing space-
Const MaxAgeInterval = "D" 'Accepts D for days or M for Months
Const ConstMaxAge = 60 'Maximum intervals to keep a file -- see MaxAgeInterval
Const WeeksofActiveFiles = 0 'number of weeks (over the current week) of active files (not zipped) to keep --zero = this week only
Const MaxSize = 524288000 'Size in bytes -- Size in MB * 1024 * 1024 (524288000 = 500MB)
DIM MaxAge
Const TESTRUN = false 'Log stuff only, don't delete anything
' note: testrun will show duplicate files being zipped etc due to order of operations
' Turn Modules on/off
Const CleanUp = true 'Delete files older than MaxAge before zipping
Const ZipFiles = true 'Zip files into weekly packages
Const CheckZipFiles = true 'clean up zip files older than maxage
Const FoldersizeQuotas = true 'Cull old zip files to meet maximum foldersize
'EXCEPTIONS
'Seller ID BNA0000003 will carry different rules:
'-files will be kept for 30 days, regardless of folder size
Const Exceptions = True
XFolder = "BNA0000003"
XMaxAge = 30 'Maximum intervals to keep a file (on exception match) -- see MaxAgeInterval
'Setup Environment
Set objShell = wscript.createObject("wscript.shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oLogFile = oFSO.OpenTextFile(oFSO.GetParentFolderName(WScript.ScriptFullName) & "\Listings_Cleanup_Log-"&Year(now()) & Right("0" & Month(now()), 2) & Right("00" & Day(now()), 2) &".csv", 8, True, -2)
oLogFile.Write "<----------------------Script started at: " & Now() & "---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "<----------------------TESTING MODE---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "note: testrun will show duplicate files being zipped etc due to order of operations" & vbCrLf
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''''''''''''''''''''' DO NOT EDIT BELOW THIS LINE'''''''''''''''''''''''''''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
ListFolder oFSO.GetFolder(sRootSource)
Sub ListFolder (oRootFldr)
For Each oSubfolder In oRootFldr.SubFolders
if oSubfolder.name = XFolder and Exceptions then
MaxAge = XMaxAge
oLogFile.Write "ExceptionMatched,"& oSubfolder & vbCrLf
Else
MaxAge = ConstMaxAge
end if
if oFSO.FolderExists(oSubfolder & sAppendSource) Then
IterateSubfolders oFSO.GetFolder(oSubfolder & sAppendSource)
end if
Next
End Sub
Sub IterateSubfolders (oFldr)
For Each oSubfolder In oFldr.Subfolders
if CleanUp then
CheckFolder_Delete(oSubfolder) ' deletes files older than MaxAge(ConstMaxAge or XMaxAge)
end if
if ZipFiles then
CheckFolder_Zip(oSubfolder) 'zips up files into weekly archives
end if
if CheckZipFiles then
CheckOld_Zip (oSubfolder) 'delete zips older than maxage
end if
if FoldersizeQuotas and not oSubfolder.name = XFolder then
CheckFoldersize(oSubfolder) 'deletes old zip files until MaxSize reached
end if
Next
End Sub
Sub CheckFolder_Delete (oFldr)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff(MaxAgeInterval, oFile.DateCreated, Now()) > MaxAge Then
oLogFile.Write "Deleted_OLD_File," & MaxAge & "," & oFile & vbCrLf
if not TESTRUN then oFile.Delete
End If
end if
Next
End Sub
Sub CheckFolder_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
ZipIterations = DateDiff("w",oldestZipDate,now())
i = ZipIterations + 5
do until i = WeeksofActiveFiles
'caluate ZipAge from WeeksofActiveFiles requirement and todays date
ZipAge = ((WeekDay(Date, vbSaturday))-1)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff("D", oFile.DateLastModified, Now()) >= ZipAge Then
nDate = DateAdd("d", (0-(ZipAge+6)), now())
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip " 'zipfilename
if TESTRUN and not DateDiff(MaxAgeInterval, oFile.DateLastModified, Now()) > MaxAge and not DateDiff("D", oFile.DateLastModified, Now()) >= (ZipAge + 7) Then
oLogFile.Write "Zipped_File_1," & oFile & "," & zipName & vbCrLf
end if
if not TESTRUN then
oLogFile.Write "Zipped_File," & oFile & "," & zipName & vbCrLf
zipFolder=oFldr & "\WK_" & sDate
If (Not oFSO.FolderExists(zipFolder)) Then
Set f = oFSO.CreateFolder(zipFolder)
End If
oFSO.MoveFile oFile, zipFolder & "\"
end if
End If
End If
Next
strCommand = sWinzipLocation & zipName & zipFolder & "\*.*"
strRun = objShell.Run(strCommand, 0, True)
If (oFSO.FolderExists(zipFolder)) Then
oFSO.DeleteFolder zipFolder, force
End If
i = i - 1
Loop
End Sub
Sub CheckOld_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
NumberOfZips = DateDiff("w",oldestZipDate,now())
'init array
dim ZipNamesArray()
redim ZipNamesArray(NumberOfZips)
'calculate zip names
i = 0
do until i = NumberOfZips
ZipAge = ((WeekDay(Date, vbSaturday))-1)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
nDate = DateAdd("d", (0-(ZipAge+6)), now())
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip" 'zipfilename
ZipNamesArray(i) = zipName 'add zipfilename to array
i = i + 1
loop
' check each file to see if it matches any of the 'safe' zip names
For Each oFile in oFldr.files
toDelete = 0
if (Right(oFile.Name, 3)) = "zip" then
i=0
do until i = NumberOfZips
if not oFile = ZipNamesArray(i) then toDelete = toDelete + 1
i = i + 1
loop
end if
if toDelete = NumberOfZips then
oLogFile.Write "Deleted_OLD_Zip," & oFile & vbCrLf
if not TESTRUN then oFSO.DeleteFile(oFile)
end if
next
End Sub
Sub CheckFoldersize(oFldr)
i = 0
subfolderSize = Int(oFldr.Size)
if TESTRUN then
if subfolderSize > MaxSize then oLogFile.Write "Folder_Over_Quota," & oFldr & vbCrLf
end if
Do While subfolderSize > MaxSize And i < 100 and not TESTRUN
OldestFile = ""
dtmOldestDate = Now
For Each oFile in oFldr.files
if (Right(oFile.Name, 3)) = "zip" then
dtmFileDate = oFile.DateLastModified
If dtmFileDate < dtmOldestDate Then
dtmOldestDate = dtmFileDate
OldestFile = oFile
End If
end if
Next
oLogFile.Write "Deleted_OLDEST_File," & OldestFile & vbCrLf
if not TESTRUN then
if not OldestFile = "" then oFSO.DeleteFile(OldestFile)
end if
subfolderSize = Int(oFldr.Size)
i = i + 1
Loop
End Sub
oLogFile.Write "<----------------------Script ended at: " & Now() & "---------------------->" & vbCrLf
oLogFile.Close

View File

@@ -0,0 +1,265 @@
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''''SFTP Folder Management Script'''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Author: Stuart Stent
'LastUpdated: 9/24/10
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Description:
'This script looks in a root directory and for each subdirectory
'under that folder it manages the files in folders one level below that.
'
'i.e SrootSource = e:\BulkuploadFiles + \Username + \sAppendSource \ managedfolders
'
'For each of the managed folders three passes are run
' 1 - Delete files older than that defined in MaxAge -- eg. kill all files older than 60 days
' 2 - Zip remaining files in to archives - by week (named by final day of week - sunday)
' 3 - Deletes zip files older than MaxAge
' 4 - finally, check each folder to ensure it is within the prescribed size limit. If not delete old zip files until under defined limit
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Define Constants and Initialise environment
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Const sRootSource = "C:\TESTING\Bulkuploadfiles" 'top level folders
Const sAppendSource = "\Listings\" ' subdir to append to subdirs of sRootSource
const sWinzipLocation = "C:\Progra~1\WinZip\WZZIP.EXE -e0 " 'needs a trailing space-
Const MaxAgeInterval = "D" 'Accepts D for days or M for Months
Const ConstMaxAge = 60 'Maximum intervals to keep a file -- see MaxAgeInterval
Const WeeksofActiveFiles = 0 'number of weeks (over the current week) of active files (not zipped) to keep --zero = this week only
Const MaxSize = 524288000 'Size in bytes -- Size in MB * 1024 * 1024 (524288000 = 500MB)
DIM MaxAge
DIM Ziprun
arrNames = Array()
dim filenames
Const TESTRUN = false 'Log stuff only, don't delete anything
' note: testrun will show duplicate files being zipped etc due to order of operations
' Turn Modules on/off
Const CleanUp = false 'Delete files older than MaxAge before zipping
Const ZipFiles = true 'Zip files into weekly packages
Const CheckZipFiles = true 'clean up zip files older than maxage
Const FoldersizeQuotas = true 'Cull old zip files to meet maximum foldersize
'EXCEPTIONS
'Seller ID BNA0000003 will carry different rules:
'-files will be kept for 30 days, regardless of folder size
Const Exceptions = True
XFolder = "BNA0000003"
XMaxAge = 30 'Maximum intervals to keep a file (on exception match) -- see MaxAgeInterval
'Setup Environment
Set objShell = wscript.createObject("wscript.shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oLogFile = oFSO.OpenTextFile(oFSO.GetParentFolderName(WScript.ScriptFullName) & "\Listings_Cleanup_Log-"&Year(now()) & Right("0" & Month(now()), 2) & Right("00" & Day(now()), 2) &".csv", 8, True, -2)
oLogFile.Write "<----------------------Script started at: " & Now() & "---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "<----------------------TESTING MODE---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "note: testrun will show duplicate files being zipped etc due to order of operations" & vbCrLf
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''''''''''''''''''''' DO NOT EDIT BELOW THIS LINE'''''''''''''''''''''''''''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
ListFolder oFSO.GetFolder(sRootSource)
Sub ListFolder (oRootFldr)
For Each oSubfolder In oRootFldr.SubFolders
if oSubfolder.name = XFolder and Exceptions then
MaxAge = XMaxAge
oLogFile.Write "ExceptionMatched,"& oSubfolder & vbCrLf
Else
MaxAge = ConstMaxAge
end if
if oFSO.FolderExists(oSubfolder & sAppendSource) Then
IterateSubfolders oFSO.GetFolder(oSubfolder & sAppendSource)
end if
Next
End Sub
Sub IterateSubfolders (oFldr)
For Each oSubfolder In oFldr.Subfolders
if CleanUp then
CheckFolder_Delete(oSubfolder) ' deletes files older than MaxAge(ConstMaxAge or XMaxAge)
end if
if ZipFiles then
CheckFolder_Zip(oSubfolder) 'zips up files into weekly archives
end if
if CheckZipFiles then
CheckOld_Zip (oSubfolder) 'delete zips older than maxage
end if
if FoldersizeQuotas and not oSubfolder.name = XFolder then
CheckFoldersize(oSubfolder) 'deletes old zip files until MaxSize reached
end if
Next
End Sub
Sub CheckFolder_Delete (oFldr)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff(MaxAgeInterval, oFile.DateCreated, Now()) > MaxAge Then
oLogFile.Write "Deleted_OLD_File," & MaxAge & "," & oFile & vbCrLf
if not TESTRUN then oFile.Delete
End If
end if
Next
End Sub
Sub CheckFolder_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
ZipIterations = DateDiff("w",oldestZipDate,now())
i = ZipIterations + 5
j = 0
do until i = WeeksofActiveFiles
'caluate ZipAge from WeeksofActiveFiles requirement and todays date
ZipAge = ((WeekDay(Date, vbSaturday))-1)
Ziprun=0
j=0
ReDim arrNames(0)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff("D", oFile.DateLastModified, Now()) >= ZipAge Then
nDate = DateAdd("d", (0-(ZipAge+6)), now())
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip " 'zipfilename
if TESTRUN and not DateDiff(MaxAgeInterval, oFile.DateLastModified, Now()) > MaxAge and not DateDiff("D", oFile.DateLastModified, Now()) >= (ZipAge + 7) Then
oLogFile.Write "Zipped_File_1," & oFile & "," & zipName & vbCrLf
end if
if not TESTRUN then
Ziprun=1
end if
if j=UBound(arrNames) then
redim preserve arrnames(j+10)
arrnames(j+1) = " "
arrnames(j+2) = " "
arrnames(j+3) = " "
arrnames(j+4) = " "
arrnames(j+5) = " "
arrnames(j+6) = " "
arrnames(j+7) = " "
arrnames(j+8) = " "
arrnames(j+9) = " "
arrnames(j+10) = " "
end if
oLogFile.Write "Zipped_File," & oFile & "," & zipName & vbCrLf
arrNames(j)=oFile
j=j+1
End If
End If
Next
if Ziprun = 1 then
For x = 0 To UBound(arrNames)-10 Step 10
filenames=filenames & " " & arrNames(x) & " " & arrNames(x+1) & " " & arrNames(x+2) & " " & arrNames(x+3) & " " & arrNames(x+4) & " " & arrNames(x+5) & " " & arrNames(x+6) & " " & arrNames(x+7) & " " & arrNames(x+8) & " " & arrNames(x+9)
strCommand = sWinzipLocation & zipName & filenames
oLogFile.Write "x=" & x & " UBound(arrNames)-5 =" & UBound(arrNames)-10 & vbCrLf
rem oLogFile.Write strCommand & vbCrLf
rem strRun = objShell.Run(strCommand, 0, True)
filenames=""
for n = 0 to 9
if x+n<=UBound(arrNames) and not arrNames(x+n) = " " then
Set MyFile=oFSO.GetFile(""& arrNames(x+n) &"")
MyFile.Delete
end if
next
Next
rem ofile.Delete
end if
erase arrNames
redim arrNames(0)
i = i - 1
Loop
End Sub
Sub CheckOld_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
NumberOfZips = DateDiff("w",oldestZipDate,now())
'init array
dim ZipNamesArray()
redim ZipNamesArray(NumberOfZips)
'calculate zip names
i = 0
do until i = NumberOfZips
ZipAge = ((WeekDay(Date, vbSaturday))-1)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
nDate = DateAdd("d", (0-(ZipAge+6)), now())
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip" 'zipfilename
ZipNamesArray(i) = zipName 'add zipfilename to array
i = i + 1
loop
' check each file to see if it matches any of the 'safe' zip names
For Each oFile in oFldr.files
toDelete = 0
if (Right(oFile.Name, 3)) = "zip" then
i=0
do until i = NumberOfZips
if not oFile = ZipNamesArray(i) then toDelete = toDelete + 1
i = i + 1
loop
end if
if toDelete = NumberOfZips then
oLogFile.Write "Deleted_OLD_Zip," & oFile & vbCrLf
if not TESTRUN then oFSO.DeleteFile(oFile)
end if
next
End Sub
Sub CheckFoldersize(oFldr)
i = 0
subfolderSize = Int(oFldr.Size)
if TESTRUN then
if subfolderSize > MaxSize then oLogFile.Write "Folder_Over_Quota," & oFldr & vbCrLf
end if
Do While subfolderSize > MaxSize And i < 100 and not TESTRUN
OldestFile = ""
dtmOldestDate = Now
For Each oFile in oFldr.files
if (Right(oFile.Name, 3)) = "zip" then
dtmFileDate = oFile.DateLastModified
If dtmFileDate < dtmOldestDate Then
dtmOldestDate = dtmFileDate
OldestFile = oFile
End If
end if
Next
oLogFile.Write "Deleted_OLDEST_File," & OldestFile & vbCrLf
if not TESTRUN then
if not OldestFile = "" then oFSO.DeleteFile(OldestFile)
end if
subfolderSize = Int(oFldr.Size)
i = i + 1
Loop
End Sub
oLogFile.Write "<----------------------Script ended at: " & Now() & "---------------------->" & vbCrLf
oLogFile.Close

View File

@@ -0,0 +1,225 @@
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''''SFTP Folder Management Script'''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Author: Stuart Stent
'LastUpdated: 9/24/10
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Description:
'This script looks in a root directory and for each subdirectory
'under that folder it manages the files in folders one level below that.
'
'i.e SrootSource = e:\BulkuploadFiles + \Username + \sAppendSource \ managedfolders
'
'For each of the managed folders three passes are run
' 1 - Delete files older than that defined in MaxAge -- eg. kill all files older than 60 days
' 2 - Zip remaining files in to archives - by week (named by final day of week - sunday)
' 3 - Deletes zip files older than MaxAge
' 4 - finally, check each folder to ensure it is within the prescribed size limit. If not delete old zip files until under defined limit
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Define Constants and Initialise environment
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Const sRootSource = "C:\TESTING\Bulkuploadfiles" 'top level folders
Const sAppendSource = "\Listings\" ' subdir to append to subdirs of sRootSource
const sWinzipLocation = "C:\Progra~1\WinZip\WZZIP.EXE " 'needs a trailing space-
Const MaxAgeInterval = "D" 'Accepts D for days or M for Months
Const ConstMaxAge = 60 'Maximum intervals to keep a file -- see MaxAgeInterval
Const WeeksofActiveFiles = 0 'number of weeks (over the current week) of active files (not zipped) to keep --zero = this week only
Const MaxSize = 524288000 'Size in bytes -- Size in MB * 1024 * 1024 (524288000 = 500MB)
DIM MaxAge
Const TESTRUN = false 'Log stuff only, don't delete anything
' note: testrun will show duplicate files being zipped etc due to order of operations
' Turn Modules on/off
Const CleanUp = true 'Delete files older than MaxAge before zipping
Const ZipFiles = true 'Zip files into weekly packages
Const CheckZipFiles = true 'clean up zip files older than maxage
Const FoldersizeQuotas = true 'Cull old zip files to meet maximum foldersize
'EXCEPTIONS
'Seller ID BNA0000003 will carry different rules:
'-files will be kept for 30 days, regardless of folder size
Const Exceptions = True
XFolder = "BNA0000003"
XMaxAge = 30 'Maximum intervals to keep a file (on exception match) -- see MaxAgeInterval
'Setup Environment
Set objShell = wscript.createObject("wscript.shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oLogFile = oFSO.OpenTextFile(oFSO.GetParentFolderName(WScript.ScriptFullName) & "\Listings_Cleanup_Log-"&Year(now()) & Right("0" & Month(now()), 2) & Right("00" & Day(now()), 2) &".csv", 8, True, -2)
oLogFile.Write "<----------------------Script started at: " & Now() & "---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "<----------------------TESTING MODE---------------------->" & vbCrLf
if TESTRUN then oLogFile.Write "note: testrun will show duplicate files being zipped etc due to order of operations" & vbCrLf
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''''''''''''''''''''' DO NOT EDIT BELOW THIS LINE'''''''''''''''''''''''''''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
ListFolder oFSO.GetFolder(sRootSource)
Sub ListFolder (oRootFldr)
For Each oSubfolder In oRootFldr.SubFolders
if oSubfolder.name = XFolder and Exceptions then
MaxAge = XMaxAge
oLogFile.Write "ExceptionMatched,"& oSubfolder & vbCrLf
Else
MaxAge = ConstMaxAge
end if
if oFSO.FolderExists(oSubfolder & sAppendSource) Then
IterateSubfolders oFSO.GetFolder(oSubfolder & sAppendSource)
end if
Next
End Sub
Sub IterateSubfolders (oFldr)
For Each oSubfolder In oFldr.Subfolders
if CleanUp then
CheckFolder_Delete(oSubfolder) ' deletes files older than MaxAge(ConstMaxAge or XMaxAge)
end if
if ZipFiles then
CheckFolder_Zip(oSubfolder) 'zips up files into weekly archives
end if
if CheckZipFiles then
CheckOld_Zip (oSubfolder) 'delete zips older than maxage
end if
if FoldersizeQuotas and not oSubfolder.name = XFolder then
CheckFoldersize(oSubfolder) 'deletes old zip files until MaxSize reached
end if
Next
End Sub
Sub CheckFolder_Delete (oFldr)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff(MaxAgeInterval, oFile.DateCreated, Now()) > MaxAge Then
oLogFile.Write "Deleted_OLD_File," & MaxAge & "," & oFile & vbCrLf
if not TESTRUN then oFile.Delete
End If
end if
Next
End Sub
Sub CheckFolder_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
ZipIterations = DateDiff("w",oldestZipDate,now())
i = ZipIterations + 5
do until i = WeeksofActiveFiles
'caluate ZipAge from WeeksofActiveFiles requirement and todays date
ZipAge = ((WeekDay(Date, vbSaturday))-1)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
For Each oFile In oFldr.Files
if not (Right(oFile.Name, 3)) = "zip" then
If DateDiff("D", oFile.DateLastModified, startTime) >= ZipAge Then
nDate = DateAdd("d", (0-(ZipAge+6)), startTime)
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip " 'zipfilename
if TESTRUN and not DateDiff(MaxAgeInterval, oFile.DateLastModified, startTime) > MaxAge and not DateDiff("D", oFile.DateLastModified, startTime) >= (ZipAge + 7) Then
oLogFile.Write "Zipped_File_1," & oFile & "," & zipName & vbCrLf
end if
if not TESTRUN then
oLogFile.Write "Zipped_File," & oFile & "," & zipName & vbCrLf
zipFolder=oFldr & "\WK_" & sDate
If (Not oFSO.FolderExists(zipFolder)) Then
Set f = oFSO.CreateFolder(zipFolder)
End If
oFSO.MoveFile oFile, zipFolder & "\"
end if
End If
End If
Next
strCommand = sWinzipLocation & zipName & zipFolder & "\*.*"
strRun = objShell.Run(strCommand, 0, True)
If (oFSO.FolderExists(zipFolder)) Then
oFSO.DeleteFolder zipFolder, force
End If
i = i - 1
Loop
End Sub
Sub CheckOld_Zip (oFldr)
'determine number of weeks of zip files
oldestZipDate = DateAdd(MaxAgeInterval,-(MaxAge), now())
NumberOfZips = DateDiff("w",oldestZipDate,now())
'init array
dim ZipNamesArray()
redim ZipNamesArray(NumberOfZips)
'calculate zip names
i = 0
do until i = NumberOfZips
ZipAge = ((WeekDay(Date, vbSaturday))-1)
'modify ZipAge keep current week + x weeks of active(unzipped) files
if ZipAge = 0 then ZipAge = ((i-2) * 7) else ZipAge = ZipAge + 7 + ((i-2) * 7)
nDate = DateAdd("d", (0-(ZipAge+6)), now())
sDate = Year(nDate) & Right("0" & Month(nDate), 2) & Right("00" & Day(nDate), 2)
zipName = oFldr & "\WK_" & sDate & ".zip" 'zipfilename
ZipNamesArray(i) = zipName 'add zipfilename to array
i = i + 1
loop
' check each file to see if it matches any of the 'safe' zip names
For Each oFile in oFldr.files
toDelete = 0
if (Right(oFile.Name, 3)) = "zip" then
i=0
do until i = NumberOfZips
if not oFile = ZipNamesArray(i) then toDelete = toDelete + 1
i = i + 1
loop
end if
if toDelete = NumberOfZips then
oLogFile.Write "Deleted_OLD_Zip," & oFile & vbCrLf
if not TESTRUN then oFSO.DeleteFile(oFile)
end if
next
End Sub
Sub CheckFoldersize(oFldr)
i = 0
subfolderSize = Int(oFldr.Size)
if TESTRUN then
if subfolderSize > MaxSize then oLogFile.Write "Folder_Over_Quota," & oFldr & vbCrLf
end if
Do While subfolderSize > MaxSize And i < 100 and not TESTRUN
OldestFile = ""
dtmOldestDate = Now
For Each oFile in oFldr.files
if (Right(oFile.Name, 3)) = "zip" then
dtmFileDate = oFile.DateLastModified
If dtmFileDate < dtmOldestDate Then
dtmOldestDate = dtmFileDate
OldestFile = oFile
End If
end if
Next
oLogFile.Write "Deleted_OLDEST_File," & OldestFile & vbCrLf
if not TESTRUN then
if not OldestFile = "" then oFSO.DeleteFile(OldestFile)
end if
subfolderSize = Int(oFldr.Size)
i = i + 1
Loop
End Sub
oLogFile.Write "<----------------------Script ended at: " & Now() & "---------------------->" & vbCrLf
oLogFile.Close

Binary file not shown.

View File

@@ -0,0 +1,93 @@
dnjpod1sm07=10.225.118.237:DESCRIPTION
!dnjpod1sms=:DESCRIPTION
dnjpod1sms01=10.225.119.83:DESCRIPTION
dnjpod1sms02=10.225.119.84:DESCRIPTION
dnjpod1sms03=10.225.119.85:DESCRIPTION
dnjpod1sms04=10.225.119.86:DESCRIPTION
dnjpod1sms05=10.225.119.87:DESCRIPTION
dnjpod1sms06=10.225.119.88:DESCRIPTION
dnjpod1sms07=10.225.119.89:DESCRIPTION
dnjpod1sms08=10.225.119.90:DESCRIPTION
dnjpod1sm02=10.225.118.231:10.225.118.231
dnjpod1sm03=10.225.118.232:10.225.118.232
dnjpod1sm04=10.225.118.233:10.225.118.233
dnjpod1sm05=10.225.118.234:10.225.118.234
dnjpod1sm06=10.225.118.236:10.225.118.236
dnjpod1sm08=10.225.118.238:10.225.118.238
dnjpod1sm01=10.225.118.229:DESCRIPTION
dnjpod1sms09=10.225.119.179:DESCRIPTION
dnjpod1sms10=10.225.119.180:DESCRIPTION
dnjpod1sms11=10.225.119.181:DESCRIPTION
dnjpod1sms12=10.225.119.182:DESCRIPTION
dnjpod1sm12=10.225.119.214:DESCRIPTION
dnjpod1sm09=10.225.119.211:DESCRIPTION
box=10.225.119.45:DESCRIPTION
dnjpod1sm10=10.225.119.212:DESCRIPTION
pwbneokhost01=10.231.118.248:DESCRIPTION
pwbneokhost02=10.231.118.249:DESCRIPTION
pwbneokhost03=10.231.118.250:DESCRIPTION
pnjneokhost01=10.225.120.64:DESCRIPTION
pnjneokhost02=10.225.120.65:DESCRIPTION
pnjneokhost03=10.225.120.66:DESCRIPTION
pnjneokhost04=10.225.120.67:DESCRIPTION
pnjneokhost05=10.225.120.68:DESCRIPTION
pnjneokhost06=10.225.120.69:DESCRIPTION
pnjneodb01=10.225.120.70:DESCRIPTION
pnjsrche02=10.225.120.39:DESCRIPTION
pnjsrche01=10.225.120.35:10.225.120.35
pnjsrchf01=10.225.120.36:PNJSRCHF01-ipmi.barnesandnoble.com
pnjsrchg01=10.225.120.37:PNJSRCHG01-ipmi.barnesandnoble.com
pnjsrchh01=10.225.120.38:PNJSRCHH01-ipmi.barnesandnoble.com
pnjsrchf02=10.225.120.40:PNJSRCHF02-ipmi.barnesandnoble.com
pnjsrchg02=10.225.120.41:PNJSRCHG02-ipmi.barnesandnoble.com
pnjsrchh02=10.225.120.42:PNJSRCHH02-ipmi.barnesandnoble.com
pnjsrche03=10.225.120.43:10.225.120.43
pnjsrchf03=10.225.120.44:10.225.120.44
pnjsrchg03=10.225.120.45:10.225.120.45
pnjsrchh03=10.225.120.46:10.225.120.46
pnjsrche04=10.225.120.47:10.225.120.47
pnjsrchf04=10.225.120.48:10.225.120.48
pnjsrchg04=10.225.120.49:10.225.120.49
pnjsrchh04=10.225.120.50:10.225.120.50
pnjsrche05=10.225.120.51:10.225.120.51
pnjsrchf05=10.225.120.52:10.225.120.52
pnjsrchg05=10.225.120.53:10.225.120.53
pnjsrchh05=10.225.120.54:10.225.120.54
!All=:DESCRIPTION
pwbsrche02=10.231.119.5:10.231.119.5
pwbsrchf02=10.231.119.6:10.231.119.6
pwbsrchg02=10.231.119.7:10.231.119.7
pwbsrchh02=10.231.119.8:10.231.119.8
pwbsrche03=10.231.119.9:10.231.119.9
pwbsrchf03=10.231.119.10:10.231.119.10
pwbsrchg03=10.231.119.11:10.231.119.11
pwbsrchh03=10.231.119.12:10.231.119.12
pwbsrche04=10.231.119.13:10.231.119.13
pwbsrchg04=10.231.119.15:10.231.119.15
pwbsrchh04=10.231.119.16:10.231.119.16
pwbsrche05=10.231.119.17:10.231.119.17
pwbsrchf05=10.231.119.18:10.231.119.18
pwbsrchg05=10.231.119.19:10.231.119.19
pwbsrchh05=10.231.119.20:10.231.119.20
pwbsrche06=10.231.119.21:10.231.119.21
pwbsrchf06=10.231.119.22:10.231.119.22
pwbsrchg06=10.231.119.23:10.231.119.23
pwbsrchh06=10.231.119.24:10.231.119.24
pwbsrche01=10.231.119.1:10.231.119.1
pwbsrchf01=10.231.119.2:10.231.119.2
pwbsrchg01=10.231.119.3:10.231.119.3
pwbsrchh01=10.231.119.4:10.231.119.4
pwbsrchf04=10.231.119.14:DESCRIPTION
pwbneodb01=10.231.118.251:DESCRIPTION
dnjneod01=10.225.118.196:DESCRIPTION
pwbeaidb01=10.231.118.253:DESCRIPTION
New System1=0.0.0.0:DESCRIPTION
tester1=10.1.102.64:DESCRIPTION
tester2=10.1.102.65:DESCRIPTION
pwbxhost06=10.231.119.71:DESCRIPTION
pwbxhost07=10.231.119.72:DESCRIPTION
pwbxhost08=10.231.119.73:DESCRIPTION
pnjxhost06=10.225.120.136:DESCRIPTION
pnjxhost07=10.225.120.137:DESCRIPTION
pnjxhost08=10.225.120.138:DESCRIPTION
dnjpod1sm11=10.255.119.213:DESCRIPTION

Binary file not shown.

View File

@@ -0,0 +1 @@
%IF_EXISTS%("MAX_JAVA_HEAP", "@MAX_JAVA_HEAP@256m")

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
java.library.path=.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
java.library.path=.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,52 @@
Copyright <20> 2007 Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, U.S.A. All
rights reserved. U.S.
Government Rights - Commercial software. Government users
are subject to the Sun Microsystems, Inc. standard license
agreement and applicable provisions of the FAR and its
supplements. Use is subject to license terms. This
distribution may include materials developed by third
parties. Sun, Sun Microsystems, the Sun logo, Java, Jini,
Solaris and J2SE are trademarks or registered trademarks of
Sun Microsystems, Inc. in the U.S. and other
countries. This product is covered and controlled by U.S.
Export Control laws and may be subject to the export or
import laws in other countries. Nuclear, missile, chemical
biological weapons or nuclear maritime end uses or end
users, whether direct or indirect, are strictly prohibited.
Export or reexport to countries subject to U.S.
embargo or to entities identified on U.S. export exclusion
lists, including, but not limited to, the denied persons and
specially designated nationals lists is strictly prohibited.
Copyright <20> 2007 Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, Etats-Unis.
Tous droits r<>serv<72>s.L'utilisation est soumise aux termes du
contrat de licence.
Cette distribution peut comprendre des
composants d<>velopp<70>s par des tierces parties.Sun, Sun
Microsystems, le logo Sun, Java, Jini, Solaris et J2SE sont
des marques de fabrique ou des marques d<>pos<6F>es de Sun
Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Ce
produit est soumis <20> la l<>gislation am<61>ricaine en mati<74>re de
contr<EFBFBD>le des exportations et peut <20>tre soumis <20> la
r<EFBFBD>glementation en vigueur dans d'autres pays dans le domaine
des exportations et importations. Les utilisations, ou
utilisateurs finaux, pour des armes nucl<63>aires, des missiles,
des armes biologiques et chimiques ou du nucl<63>aire maritime,
directement ou indirectement, sont strictement interdites.
Les exportations ou r<>exportations vers les pays sous
embargo am<61>ricain, ou vers des entit<69>s figurant sur les
listes d'exclusion d'exportation am<61>ricaines, y compris,
mais de mani<6E>re non exhaustive, la liste de personnes qui
font objet d'un ordre de ne pas participer, d'une fa<66>on
directe ou indirecte, aux exportations des produits ou des
services qui sont r<>gis par la l<>gislation am<61>ricaine en
mati<EFBFBD>re de contr<74>le des exportations et la liste de
ressortissants sp<73>cifiquement d<>sign<67>s, sont rigoureusement
interdites.

View File

@@ -0,0 +1 @@
1

View File

@@ -0,0 +1,273 @@
Sun Microsystems, Inc. Binary Code License Agreement
for the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6
SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE
SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION
THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY
CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS
(COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT
CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU
ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY
SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE
AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE
TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE
AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT
CONTINUE.
1. DEFINITIONS. "Software" means the identified above in
binary form, any other machine readable materials
(including, but not limited to, libraries, source files,
header files, and data files), any updates or error
corrections provided by Sun, and any user manuals,
programming guides and other documentation provided to you
by Sun under this Agreement. "Programs" mean Java applets
and applications intended to run on the Java Platform,
Standard Edition (Java SE) on Java-enabled general purpose
desktop computers and servers.
2. LICENSE TO USE. Subject to the terms and conditions of
this Agreement, including, but not limited to the Java
Technology Restrictions of the Supplemental License Terms,
Sun grants you a non-exclusive, non-transferable, limited
license without license fees to reproduce and use
internally Software complete and unmodified for the sole
purpose of running Programs. Additional licenses for
developers and/or publishers are granted in the
Supplemental License Terms.
3. RESTRICTIONS. Software is confidential and copyrighted.
Title to Software and all associated intellectual property
rights is retained by Sun and/or its licensors. Unless
enforcement is prohibited by applicable law, you may not
modify, decompile, or reverse engineer Software. You
acknowledge that Licensed Software is not designed or
intended for use in the design, construction, operation or
maintenance of any nuclear facility. Sun Microsystems, Inc.
disclaims any express or implied warranty of fitness for
such uses. No right, title or interest in or to any
trademark, service mark, logo or trade name of Sun or its
licensors is granted under this Agreement. Additional
restrictions for developers and/or publishers licenses are
set forth in the Supplemental License Terms.
4. LIMITED WARRANTY. Sun warrants to you that for a period
of ninety (90) days from the date of purchase, as evidenced
by a copy of the receipt, the media on which Software is
furnished (if any) will be free of defects in materials and
workmanship under normal use. Except for the foregoing,
Software is provided "AS IS". Your exclusive remedy and
Sun's entire liability under this limited warranty will be
at Sun's option to replace Software media or refund the fee
paid for Software. Any implied warranties on the Software
are limited to 90 days. Some states do not allow
limitations on duration of an implied warranty, so the
above may not apply to you. This limited warranty gives you
specific legal rights. You may have others, which vary from
state to state.
5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS
AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,
REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED
WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE
EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY
INVALID.
6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY
LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,
CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT
OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE,
EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES. In no event will Sun's liability to you, whether
in contract, tort (including negligence), or otherwise,
exceed the amount paid by you for Software under this
Agreement. The foregoing limitations will apply even if the
above stated warranty fails of its essential purpose. Some
states do not allow the exclusion of incidental or
consequential damages, so some of the terms above may not
be applicable to you.
7. TERMINATION. This Agreement is effective until
terminated. You may terminate this Agreement at any time by
destroying all copies of Software. This Agreement will
terminate immediately without notice from Sun if you fail
to comply with any provision of this Agreement. Either
party may terminate this Agreement immediately should any
Software become, or in either party's opinion be likely to
become, the subject of a claim of infringement of any
intellectual property right. Upon Termination, you must
destroy all copies of Software.
8. EXPORT REGULATIONS. All Software and technical data
delivered under this Agreement are subject to US export
control laws and may be subject to export or import
regulations in other countries. You agree to comply
strictly with all such laws and regulations and acknowledge
that you have the responsibility to obtain such licenses to
export, re-export, or import as may be required after
delivery to you.
9. TRADEMARKS AND LOGOS. You acknowledge and agree as
between you and Sun that Sun owns the SUN, SOLARIS, JAVA,
JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS,
JAVA, JINI, FORTE, and iPLANET-related trademarks, service
marks, logos and other brand designations ("Sun Marks"),
and you agree to comply with the Sun Trademark and Logo
Usage Requirements currently located at
http://www.sun.com/policies/trademarks. Any use you make of
the Sun Marks inures to Sun's benefit.
10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being
acquired by or on behalf of the U.S. Government or by a
U.S. Government prime contractor or subcontractor (at any
tier), then the Government's rights in Software and
accompanying documentation will be only as set forth in
this Agreement; this is in accordance with 48 CFR 227.7201
through 227.7202-4 (for Department of Defense (DOD)
acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD
acquisitions).
11. GOVERNING LAW. Any action related to this Agreement
will be governed by California law and controlling U.S.
federal law. No choice of law rules of any jurisdiction
will apply.
12. SEVERABILITY. If any provision of this Agreement is
held to be unenforceable, this Agreement will remain in
effect with the provision omitted, unless omission would
frustrate the intent of the parties, in which case this
Agreement will immediately terminate.
13. INTEGRATION. This Agreement is the entire agreement
between you and Sun relating to its subject matter. It
supersedes all prior or contemporaneous oral or written
communications, proposals, representations and warranties
and prevails over any conflicting or additional terms of
any quote, order, acknowledgment, or other communication
between the parties relating to its subject matter during
the term of this Agreement. No modification of this
Agreement will be binding, unless in writing and signed by
an authorized representative of each party.
SUPPLEMENTAL LICENSE TERMS
These Supplemental License Terms add to or modify the terms
of the Binary Code License Agreement. Capitalized terms not
defined in these Supplemental Terms shall have the same
meanings ascribed to them in the Binary Code License
Agreement . These Supplemental Terms shall supersede any
inconsistent or conflicting terms in the Binary Code
License Agreement, or in any license contained within the
Software.
A. Software Internal Use and Development License Grant.
Subject to the terms and conditions of this Agreement and
restrictions and exceptions set forth in the Software
"README" file incorporated herein by reference, including,
but not limited to the Java Technology Restrictions of
these Supplemental Terms, Sun grants you a non-exclusive,
non-transferable, limited license without fees to reproduce
internally and use internally the Software complete and
unmodified for the purpose of designing, developing, and
testing your Programs.
B. License to Distribute Software. Subject to the terms and
conditions of this Agreement and restrictions and
exceptions set forth in the Software README file,
including, but not limited to the Java Technology
Restrictions of these Supplemental Terms, Sun grants you a
non-exclusive, non-transferable, limited license without
fees to reproduce and distribute the Software, provided
that (i) you distribute the Software complete and
unmodified and only bundled as part of, and for the sole
purpose of running, your Programs, (ii) the Programs add
significant and primary functionality to the Software,
(iii) you do not distribute additional software intended to
replace any component(s) of the Software, (iv) you do not
remove or alter any proprietary legends or notices
contained in the Software, (v) you only distribute the
Software subject to a license agreement that protects Sun's
interests consistent with the terms contained in this
Agreement, and (vi) you agree to defend and indemnify Sun
and its licensors from and
C. License to Distribute Redistributables. Subject to the
terms and conditions of this Agreement and restrictions and
exceptions set forth in the Software README file, including
but not limited to the Java Technology Restrictions of
these Supplemental Terms, Sun grants you a non-exclusive,
non-transferable, limited license without fees to reproduce
and distribute those files specifically identified as
redistributable in the Software "README" file
("Redistributables") provided that: (i) you distribute the
Redistributables complete and unmodified, and only bundled
as part of Programs, (ii) the Programs add significant and
primary functionality to the Redistributables, (iii) you do
not distribute additional software intended to supersede
any component(s) of the Redistributables (unless otherwise
specified in the applicable README file), (iv) you do not
remove or alter any proprietary legends or notices
contained in or on the Redistributables, (v) you only
distribute the Redistributables pursuant to a license ag
D. Java Technology Restrictions. You may not create,
modify, or change the behavior of, or authorize your
licensees to create, modify, or change the behavior of,
classes, interfaces, or subpackages that are in any way
identified as "java", "javax", "sun" or similar convention
as specified by Sun in any naming convention designation.
E. Distribution by Publishers. This section pertains to
your distribution of the Software with your printed book or
magazine (as those terms are commonly used in the industry)
relating to Java technology ("Publication"). Subject to and
conditioned upon your compliance with the restrictions and
obligations contained in the Agreement, in addition to the
license granted in Paragraph 1 above, Sun hereby grants to
you a non-exclusive, nontransferable limited right to
reproduce complete and unmodified copies of the Software on
electronic media (the "Media") for the sole purpose of
inclusion and distribution with your Publication(s),
subject to the following terms: (i) You may not distribute
the Software on a stand-alone basis; it must be distributed
with your Publication(s); (ii) You are responsible for
downloading the Software from the applicable Sun web site;
(iii) You must refer to the Software as JavaTM SE
Development Kit 6; (iv) The Software must be reproduced in
its entirety and without any modification what
F. Source Code. Software may contain source code that,
unless expressly licensed for other purposes, is provided
solely for reference purposes pursuant to the terms of this
Agreement. Source code may not be redistributed unless
expressly provided for in this Agreement.
G. Third Party Code. Additional copyright notices and
license terms applicable to portions of the Software are
set forth in the THIRDPARTYLICENSEREADME.txt file. In
addition to any terms and conditions of any third party
opensource/freeware license identified in the
THIRDPARTYLICENSEREADME.txt file, the disclaimer of
warranty and limitation of liability provisions in
paragraphs 5 and 6 of the Binary Code License Agreement
shall apply to all Software in this distribution.
H. Termination for Infringement. Either party may terminate
this Agreement immediately should any Software become, or
in either party's opinion be likely to become, the subject
of a claim of infringement of any intellectual property
right.
I. Installation and Auto-Update. The Software's
installation and auto-update processes transmit a limited
amount of data to Sun (or its service provider) about those
specific processes to help Sun understand and optimize
them. Sun does not associate the data with personally
identifiable information. You can find more information
about the data Sun collects at http://java.com/data/.
For inquiries please contact: Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, U.S.A.

View File

@@ -0,0 +1,122 @@
{\rtf1\ansi\deff0\adeflang1025
{\fonttbl{\f0\froman\fprq2\fcharset0 Nimbus Roman No9 L{\*\falt Times New Roman};}{\f1\froman\fprq2\fcharset0 Nimbus Roman No9 L{\*\falt Times New Roman};}{\f2\fmodern\fprq1\fcharset0 Nimbus Mono L{\*\falt Courier New};}{\f3\fnil\fprq2\fcharset0 Nimbus Sans L{\*\falt Arial};}{\f4\fnil\fprq2\fcharset0 Tahoma{\*\falt Lucidasans};}{\f5\fnil\fprq0\fcharset0 Tahoma{\*\falt Lucidasans};}}
{\colortbl;\red0\green0\blue0;\red128\green128\blue128;}
{\stylesheet{\s1\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af4\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\snext1 Default;}
{\s2\sa120\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af4\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon1\snext2 Text body;}
{\s3\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon2\snext3 List;}
{\s4\sb120\sa120\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs20\lang255\ai\ltrch\dbch\af3\afs20\langfe255\ai\loch\f0\fs20\lang1033\i\sbasedon1\snext4 Caption;}
{\s5\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon1\snext5 Index;}
{\s6\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af2\afs20\lang255\ltrch\dbch\af2\afs20\langfe255\loch\f2\fs20\lang1033\sbasedon1\snext6 Preformatted Text;}
}
{\info{\creatim\yr2006\mo9\dy18\hr9\min14}{\revtim\yr1601\mo1\dy1\hr0\min0}{\printim\yr1601\mo1\dy1\hr0\min0}{\comment StarWriter}{\vern6450}}\deftab709
{\*\pgdsctbl
{\pgdsc0\pgdscuse195\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\pgdscnxt0 Default;}}
\paperh15840\paperw12240\margl1800\margr1800\margt1440\margb1440\sectd\sbknone\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\ftnbj\ftnstart1\ftnrstcont\ftnnar\aenddoc\aftnrstcont\aftnstart1\aftnnrlc
\pard\plain \ltrpar\s6\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af2\afs20\lang255\ltrch\dbch\af2\afs20\langfe255\loch\f2\fs20\lang1033 {\loch\f2\fs20\lang1033\i0\b0 Sun Microsystems, Inc. Binary Code License Agreement}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 for the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT").\u65533 ? P
LEASE READ THE AGREEMENT CAREFULLY.\u65533 ? BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS
, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any use
r manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java Platform, Standard Edition (Java SE) on Java-enabled general purpose desktop comput
ers and servers.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fe
es to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reve
rse engineer Software.\u65533 ? You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness fo
r such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental L
icense Terms.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 4. LIMITED WARRANTY.\u65533 ? Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under n
ormal use.\u65533 ? Except for the foregoing, Software is provided "AS IS".\u65533 ? Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties
on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.
}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 5. DISCLAIMER OF WARRANTY.\u65533 ? UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEP
T TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 6. LIMITATION OF LIABILITY.\u65533 ? TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF TH
E THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\u65533 ? In no event will Sun's liability to you, whether in contract, tort (including negligence), or oth
erwise, exceed the amount paid by you for Software under this Agreement.\u65533 ? The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages,
so some of the terms above may not be applicable to you. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 7. TERMINATION.\u65533 ? This Agreement is effective until terminated.\u65533 ? You may terminate this Agreement at any time by destroying all copies of Software.\u65533 ? This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision o
f this Agreement.\u65533 ? Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must des
troy all copies of Software. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries.\u65533 ? You agree to comply strictly with all such laws and regulati
ons and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other bran
d designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 10. U.S. GOVERNMENT RESTRICTED RIGHTS.\u65533 ? If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation wi
ll be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 11. GOVERNING LAW.\u65533 ? Any action related to this Agreement will be governed by California law and controlling U.S. federal law.\u65533 ? No choice of law rules of any jurisdiction will apply. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately term
inate. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 13. INTEGRATION.\u65533 ? This Agreement is the entire agreement between you and Sun relating to its subject matter.\u65533 ? It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflic
ting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement.\u65533 ? No modification of this Agreement will be binding, unless in writing and signed by a
n authorized representative of each party. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 SUPPLEMENTAL LICENSE TERMS}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemen
tal Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java T
echnology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and
testing your Programs. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun
grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, you
r Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notice
s contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and
against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs
and/or Software.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 C. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Term
s, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Re
distributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the
Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agr
eement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorney
s' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 D. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun"
or similar convention as specified by Sun in any naming convention designation.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 E. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon you
r compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of t
he Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publ
ication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM SE Development Kit 6; (iv) The Software must be reproduced in its entirety and without any modification whats
oever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2006, S
un Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE, and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Micros
ystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you
may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall inde
mnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of
competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall ari
se provided that Sun: (a) provides you prompt notice of the claim; (b) gives you sole control of the defense and settlement of the claim; (c) provides you, at your expense, with all available information, assistance and authority to defend; and (d) has not
compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publ
ication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 F. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in th
is Agreement.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 G. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identif
ied in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 H. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 I. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the
data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.}
\par }

View File

@@ -0,0 +1,685 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=us-ascii">
<title>README -- Java Platform, Standard Edition Development Kit</title>
<meta name="collection" content="reference">
</head>
<body lang="en-US" bgcolor="#FFFFFF">
<h1 align="center">README</h1>
<h2 align="center">Java<sup><font size="-2">TM</font></sup> Platform,
Standard Edition 6<br>
Development Kit</h2>
<p align="center"><b>JDK<sup><font size="-2">TM</font></sup> 6</b></p>
<h2>Contents</h2>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#install">System Requirements &amp; Installation</a></li>
<li><a href="#docs">JDK Documentation</a></li>
<li><a href="#relnotes">Release Notes</a></li>
<li><a href="#compatibility">Compatibility</a></li>
<li><a href="#bugs">Bug Reports and Feedback</a></li>
<li><a href="#contents">Contents of the JDK</a></li>
<li><a href="#jre">Java Runtime Environment</a></li>
<li><a href="#redistribution">Redistribution</a></li>
<li><a href="#endorsed">Java Endorsed Standards Override
Mechanism</a></li>
<li><a href="#javadb">Java DB</a></li>
<li><a href="#webpages">Web Pages</a></li>
</ul>
<h2><a name="introduction" id="introduction"></a>Introduction</h2>
<blockquote>
Thank you for downloading this release of the Java<sup><font size="
-2">TM</font></sup> Platform, Standard Edition Development Kit
(JDK<sup><font size="-2">TM</font></sup>). The JDK is a development
environment for building applications, applets, and components using the
Java programming language.
</blockquote>
<blockquote>
The JDK includes tools useful for developing and testing programs written
in the Java programming language and running on the Java<sup><font size="
-2">TM</font></sup> platform.
</blockquote>
<h2><a name="install" id="install"></a>System Requirements &amp;
Installation</h2>
<blockquote>
System requirements, installation instructions and troubleshooting tips
are located on the Java Software web site at:
</blockquote>
<blockquote>
<a href="http://java.sun.com/javase/6/webnotes/install/">JDK 6
Installation Instructions</a>
</blockquote>
<h2><a name="docs" id="docs"></a>JDK<sup><font size="-2">TM</font></sup>
Documentation</h2>
<blockquote>
The on-line <a href="
http://java.sun.com/javase/6/docs/">Java<sup><font size="
-2">TM</font></sup> Platform, Standard Edition (Java SE)
Documentation</a> contains API specifications, feature descriptions,
developer guides, reference pages for JDK<sup><font size="
-2">TM</font></sup> tools and utilities, demos, and links to related
information. This documentation is also available in a download bundle
which you can install on your machine. To obtain the documentation bundle,
see the <a href="http://java.sun.com/javase/6/download.jsp">download
page</a>. For API documentation, refer to the <a href="
http://java.sun.com/javase/6/docs/api/index.html">The
Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition API
Specification</a> This provides brief descriptions of the API with an
emphasis on specifications, not on code examples.
</blockquote>
<h2><a name="relnotes" id="relnotes"></a>Release Notes</h2>
<blockquote>
See the <a href="http://java.sun.com/javase/6/webnotes/">Java SE 6 Release
Notes</a> on the Java Software web site for additional information
pertaining to this release. Please check the on-line release notes
occasionally for the latest information as they will be updated as needed.
</blockquote>
<h2><a name="compatibility" id="compatibility"></a>Compatibility</h2>
<blockquote>
See <a href="
http://java.sun.com/javase/6/webnotes/compatibility.html">Compatibility
with Previous Releases</a> on the Java Software web site for the list of
known compatibility issues. Every effort has been made to support programs
written for previous versions of the Java<sup><font size="
-2">TM</font></sup> platform. Although some incompatible changes were
necessary, most software should migrate to the current version with no
reprogramming. Any failure to do so is considered a bug, except for a
small number of cases where compatibility was deliberately broken, as
described on our compatibility web page. Some compatibility-breaking
changes were required to close potential security holes or to fix
implementation or design bugs.
</blockquote>
<h2><a name="bugs" id="bugs"></a>Bug Reports and Feedback</h2>
<blockquote>
The <a href="http://bugs.sun.com/bugdatabase/index.jsp">Bug Database</a>
web site lets you search for and examine existing bug reports, submit your
own bug reports, and tell us which bug fixes matter most to you. To
directly submit a bug or request a feature, fill out this form:
</blockquote>
<blockquote>
<a href="
http://bugs.sun.com/services/bugreport/index.jsp">http://bugs.sun.com/services/bugreport/index.jsp</a>
</blockquote>
<blockquote>
You can send feedback to the <a href="
http://java.sun.com/docs/forms/sendusmail.html">Java SE documentation
team</a>. You can also send comments directly to <a href="
http://developers.sun.com/contact/index.jsp">Java Software engineering
team email addresses</a>.
</blockquote>
<blockquote>
<b>Note</b> - Please do not seek technical support through the Bug
Database or our development teams. For support options, see <a href="
http://java.sun.com/developer/support/">Support and Services</a> on the
Java Software web site.
</blockquote>
<h2><a name="contents" id="contents"></a>Contents of the JDK<sup><font size="
-2">TM</font></sup></h2>
<blockquote>
This section contains a general summary of the files and directories in
the JDK<sup><font size="-2">TM</font></sup>. For details on the files and
directories, see the <a href="
http://java.sun.com/javase/6/docs/technotes/tools/index.html#general">JDK
File Structure</a> section of the Java SE documentation for your platform.
</blockquote>
<dl>
<dd>
<dl>
<dt><b>Development Tools</b></dt>
<dd>(In the <code>bin/</code> subdirectory) Tools and utilities that
will help you develop, execute, debug, and document programs written
in the Java<sup><font size="-2">TM</font></sup> programming language.
For further information, see the <a href="
http://java.sun.com/javase/6/docs/technotes/tools/index.html">tool
documentation</a>.<br>
<br></dd>
<dt><b>Runtime Environment</b></dt>
<dd>(In the <code>jre/</code> subdirectory) An implementation of the
Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>) for
use by the JDK. The JRE includes a Java<sup><font size="
-2">TM</font></sup> Virtual Machine (JVM<sup><font size="
-2">TM</font></sup>), class libraries, and other files that support
the execution of programs written in the Java<sup><font size="
-2">TM</font></sup> programming language.<br>
<br></dd>
<dt><b>Additional Libraries</b></dt>
<dd>(In the <code>lib/</code> subdirectory) Additional class libraries
and support files required by the development tools.<br>
<br></dd>
<dt><b>Demo Applets and Applications</b></dt>
<dd>(In the <code>demo/</code> subdirectory) Examples, with source
code, of programming for the Java<sup><font size="-2">TM</font></sup>
platform. These include examples that use Swing and other
Java<sup><font size="-2">TM</font></sup> Foundation Classes, and the
Java<sup><font size="-2">TM</font></sup> Platform Debugger
Architecture.<br>
<br></dd>
<dt><b>Sample Code</b></dt>
<dd>(In the <code>sample</code> subdirectory) Samples, with source
code, of programming for certain Java API's.<br>
<br></dd>
<dt><b>C header Files</b></dt>
<dd>(In the <code>include/</code> subdirectory) Header files that
support native-code programming using the <a href="
http://java.sun.com/javase/6/docs/technotes/guides/jni/">Java Native
Interface</a>, the <a href="
http://java.sun.com/javase/6/docs/technotes/guides/jvmti/">JVM<sup><font size="-2">TM</font></sup>
Tool Interface</a>, and other functionality of the
Java<sup><font size="-2">TM</font></sup> platform.<br>
<br></dd>
<dt><b>Source Code</b></dt>
<dd>(In <code>src.zip</code>) Java<sup><font size="-2">TM</font></sup>
programming language source files for all classes that make up the
Java&nbsp;core API (that is, sources files for the java.*, javax.* and
some org.* packages, but not for com.sun.* packages). This source code
is provided for informational purposes only, to help developers learn
and use the Java<sup><font size="-2">TM</font></sup> programming
language. These files do not include platform-specific implementation
code and cannot be used to rebuild the class libraries. To extract
these file, use any common zip utility. Or, you may use the Jar
utility in the JDK's <code>bin/</code> directory:<br>
<br>
<code>jar xvf src.zip</code></dd>
</dl>
</dd>
</dl>
<h2><a name="jre" id="jre"></a>The Java Runtime Environment
(JRE<sup><font size="-2">TM</font></sup>)</h2>
<blockquote>
The Java<sup><font size="-2">TM</font></sup> Runtime Environment
(JRE<sup><font size="-2">TM</font></sup>) is available as a separately
downloadable product. See the <a href="
http://java.sun.com/javase/6/download.jsp">download web site</a>.
</blockquote>
<blockquote>
The JRE allows you to run applications written in the Java<sup><font size="
-2">TM</font></sup> programming language. Like the JDK<sup><font size="
-2">TM</font></sup>, it contains the Java<sup><font size="
-2">TM</font></sup> Virtual Machine (JVM<sup><font size="
-2">TM</font></sup>), classes comprising the Java<sup><font size="
-2">TM</font></sup> platform API, and supporting files. Unlike the JDK,
it does not contain development tools such as compilers and debuggers.
</blockquote>
<blockquote>
You can freely redistribute the JRE with your application, according to
the terms of the JRE license. Once you have developed your application
using the JDK, you can ship it with the JRE so your end-users will have a
Java<sup><font size="-2">TM</font></sup> platform on which to run your
software.
</blockquote>
<h2><a name="redistribution" id="redistribution"></a>Redistribution</h2>
<blockquote>
<blockquote>
<hr>
NOTE - The license for this software does not allow the redistribution
of beta and other pre-release versions.
<hr>
</blockquote>
</blockquote>
<blockquote>
Subject to the terms and conditions of the Software License Agreement and
the obligations, restrictions, and exceptions set forth below, You may
reproduce and distribute the Software (and also portions of Software
identified below as Redistributable), provided that:
</blockquote>
<blockquote>
<ol type="a">
<li>you distribute the Software complete and unmodified and only bundled
as part of Your applets and applications ("Programs"),</li>
<li>your Programs add significant and primary functionality to the
Software,</li>
<li>your Programs are only intended to run on Java-enabled general
purpose desktop computers and servers,</li>
<li>you distribute Software for the sole purpose of running your
Programs,</li>
<li>you do not distribute additional software intended to replace any
component(s) of the Software,</li>
<li>you do not remove or alter any proprietary legends or notices
contained in or on the Software,</li>
<li>you only distribute the Software subject to a license agreement that
protects Sun's interests consistent with the terms contained in this
Agreement, and</li>
<li>you agree to defend and indemnify Sun and its licensors from and
against any damages, costs, liabilities, settlement amounts and/or
expenses (including attorneys' fees) incurred in connection with any
claim, lawsuit or action by any third party that arises or results from
the use or distribution of any and all Programs and/or Software.</li>
</ol>
</blockquote>
<blockquote>
The term "vendors" used here refers to licensees, developers, and
independent software vendors (ISVs) who license and distribute the
Java<sup><font size="-2">TM</font></sup> Development Kit
(JDK<sup><font size="-2">TM</font></sup>) with their programs.
</blockquote>
<blockquote>
Vendors must follow the terms of the Java Development Kit Binary Code
License agreement.
</blockquote>
<h3>Required vs. Optional Files</h3>
<blockquote>
The files that make up the Java<sup><font size="-2">TM</font></sup>
Development Kit (JDK<sup><font size="-2">TM</font></sup>) are divided into
two categories: required and optional. Optional files may be excluded from
redistributions of the JDK at the vendor's discretion.
</blockquote>
<blockquote>
The following section contains a list of the files and directories that
may optionally be omitted from redistributions of the JDK. All files not
in these lists of optional files must be included in redistributions of
the JDK.
</blockquote>
<h3>Optional Files and Directories</h3>
<blockquote>
The following files may be optionally excluded from redistributions. These
files are located in the jdk1.6.0_&lt;version&gt; directory, where
&lt;version&gt; is the update version number. Solaris<sup><font size="-2">TM</font></sup> and Linux filenames
and separators are shown. Windows executables have the ".exe" suffix.
Corresponding files with <code>_g</code> in the name can also be excluded.
The corresponding man pages should be excluded for any excluded
executables (with paths listed below beginning with
<code>bin/</code>, for the Solaris<sup><font size="-2">TM</font></sup>
Operating System and Linux).
</blockquote>
<dl>
<dd>
<dl>
<dt><code>jre/lib/charsets.jar</code></dt>
<dd>Character conversion classes</dd>
<dt><code>jre/lib/ext/</code></dt>
<dd><code>sunjce_provider.jar</code> - the SunJCE provider for Java
Cryptography APIs<br>
<code>localedata.jar</code> - contains many of the resources needed
for non US English locales<br>
<code>ldapsec.jar</code> - contains security features supported by the
LDAP service provider<br>
<code>dnsns.jar</code> - for the InetAddress wrapper of JNDI DNS
provider</dd>
<dt><code>bin/rmid</code> and <code>jre/bin/rmid</code></dt>
<dd>Java RMI Activation System Daemon</dd>
<dt><code>bin/rmiregistry</code> and
<code>jre/bin/rmiregistry</code></dt>
<dd>Java Remote Object Registry</dd>
<dt><code>bin/tnameserv</code> and <code>jre/bin/tnameserv</code></dt>
<dd>Java IDL Name Server</dd>
<dt><code>bin/keytool</code> and <code>jre/bin/keytool</code></dt>
<dd>Key and Certificate Management Tool</dd>
<dt><code>bin/kinit</code> and <code>jre/bin/kinit</code></dt>
<dd>Used to obtain and cache Kerberos ticket-granting tickets</dd>
<dt><code>bin/klist</code> and <code>jre/bin/klist</code></dt>
<dd>Kerberos display entries in credentials cache and keytab</dd>
<dt><code>bin/ktab</code> and <code>jre/bin/ktab</code></dt>
<dd>Kerberos key table manager</dd>
<dt><code>bin/policytool</code> and
<code>jre/bin/policytool</code></dt>
<dd>Policy File Creation and Management Tool</dd>
<dt><code>bin/orbd</code> and <code>jre/bin/orbd</code></dt>
<dd>Object Request Broker Daemon</dd>
<dt><code>bin/servertool</code> and
<code>jre/bin/servertool</code></dt>
<dd>Java IDL Server Tool</dd>
<dt><code>bin/javaws</code>, <code>jre/bin/javaws</code>,
<code>jre/lib/javaws/</code> and <code>jre/lib/javaws.jar</code></dt>
<dd>Java Web Start</dd>
<dt><code>demo/</code></dt>
<dd>Demo Applets and Applications</dd>
<dt><code>sample/</code></dt>
<dd>Sample Code</dd>
<dt><code>src.zip</code></dt>
<dd>Archive of source files</dd>
</dl>
</dd>
</dl>
<h3><a name="redistributablejdkfiles" id="
redistributablejdkfiles"></a>Redistributable JDK<sup><font size="
-2">TM</font></sup> Files</h3>
<blockquote>
The limited set of files and directories from the JDK listed below may be
included in vendor redistributions of the Java<sup><font size="
-2">TM</font></sup> Runtime Environment (JRE<sup><font size="
-2">TM</font></sup>). They cannot be redistributed separately, and must
accompany a JRE distribution. All paths are relative to the top-level
directory of the JDK. The corresponding man pages should be included for
any included executables (with paths listed below beginning with
<code>bin/</code>, for the Solaris<sup><font size="-2">TM</font></sup>
Operating System and Linux).
</blockquote>
<dl>
<dd>
<dl>
<dt><code>jre/lib/cmm/PYCC.pf</code></dt>
<dd>Color profile. This file is required only if one wishes to convert
between the PYCC color space and another color space.</dd>
<dt>All <code>.ttf</code> font files in the
<code>jre/lib/fonts/</code> directory.</dt>
<dd>Note that the LucidaSansRegular.ttf font is already contained in
the JRE, so there is no need to bring that file over from the
JDK.</dd>
<dt><code>jre/lib/audio/soundbank.gm</code></dt>
<dd>This MIDI soundbank is present in the JDK, but it has been removed
from the JRE in order to reduce the size of the JRE download bundle.
However, a soundbank file is necessary for MIDI playback, and
therefore the JDK's <code>soundbank.gm</code> file may be included in
redistributions of the JRE at the vendor's discretion. Several
versions of enhanced MIDI soundbanks are available from the Java Sound
web site: <a href="
http://java.sun.com/products/java-media/sound/">http://java.sun.com/products/java-media/sound/</a>.
These alternative soundbanks may be included in redistributions of the
JRE.</dd>
<dt>The javac bytecode compiler, consisting of the following
files:</dt>
<dd><code>bin/javac</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System and
Linux]<br>
<code>bin/sparcv9/javac</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System (SPARC(R)
Platform Edition)]<br>
<code>bin/amd64/javac</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System (AMD)]<br>
<code>bin/javac.exe</code> [Microsoft Windows]<br>
<code>lib/tools.jar</code> [All platforms]</dd>
<dt>The Annotation Processing Tool, consisting of the following
files:</dt>
<dd><code>bin/apt</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System and Linux]<br>
<code>bin/sparcv9/apt</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System (SPARC(R)
Platform Edition)]<br>
<code>bin/amd64/apt</code> [Solaris<sup><font size="-2">TM</font></sup> Operating System (AMD)]<br>
<code>bin/apt.exe</code> [Microsoft Windows]</dd>
<dt><code>lib/jconsole.jar</code></dt>
<dd>The Jconsole application.</dd>
<dt><code>jre\bin\server\</code></dt>
<dd>On Microsoft Windows platforms, the JDK includes both the Java
HotSpot<sup><font size="-2">TM</font></sup> Server VM and Java
HotSpot<sup><font size="-2">TM</font></sup> Client VM. However, the
JRE for Microsoft Windows platforms includes only the Java
HotSpot<sup><font size="-2">TM</font></sup> Client VM. Those wishing
to use the Java HotSpot<sup><font size="-2">TM</font></sup> Server VM
with the JRE may copy the JDK's <code>jre\bin\server</code> folder to
a <code>bin\server</code> directory in the JRE. Software vendors may
redistribute the Java HotSpot<sup><font size="-2">TM</font></sup>
Server VM with their redistributions of the JRE.</dd>
</dl>
</dd>
</dl>
<h3>Unlimited Strength Java Cryptography Extension</h3>
<blockquote>
Due to import control restrictions for some countries, the Java
Cryptography Extension (JCE) policy files shipped with the JDK and the JRE
allow strong but limited cryptography to be used. These files are located
at<br>
<br>
<code>&lt;java-home&gt;/lib/security/local_policy.jar</code><br>
<code>&lt;java-home&gt;/lib/security/US_export_policy.jar</code><br>
<br>
where <code>&lt;java-home&gt;</code> is the <code>jre</code> directory of
the JDK or the top-level directory of the JRE.
</blockquote>
<blockquote>
An unlimited strength version of these files indicating no restrictions on
cryptographic strengths is available on the JDK web site for those living
in eligible countries. Those living in eligible countries may download the
unlimited strength version and replace the strong cryptography jar files
with the unlimited strength files.
</blockquote>
<h3>The cacerts Certificates File</h3>
<blockquote>
Root CA certificates may be added to or removed from the Java SE
certificate file located at
</blockquote>
<blockquote>
<code>&lt;java-home&gt;/lib/security/cacerts</code>
</blockquote>
<blockquote>
For more information, see <a href="
http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">
The cacerts Certificates File</a> section in the keytool documentation.
</blockquote>
<h2><a name="endorsed" id="endorsed"></a> Java Endorsed Standards Override
Mechanism</h2>
<blockquote>
From time to time it is necessary to update the Java platform in order to
incorporate newer versions of standards that are created outside of the
Java Community Process<font size="-2"><sup>SM</sup></font> (JCP<font size="
-2"><sup>SM</sup></font> <a href="
http://www.jcp.org/">http://www.jcp.org/</a>) (<i>Endorsed
Standards</i>), or in order to update the version of a technology included
in the platform to correspond to a later standalone version of that
technology (<i>Standalone Technologies</i>).
</blockquote>
<blockquote>
The <i>Endorsed Standards Override Mechanism</i> provides a means whereby
later versions of classes and interfaces that implement Endorsed Standards
or Standalone Technologies may be incorporated into the Java Platform.
</blockquote>
<blockquote>
For more information on the Endorsed Standards Override Mechanism,
including the list of platform packages that it may be used to override,
see
</blockquote>
<blockquote>
<a href="
http://java.sun.com/javase/6/docs/technotes/guides/standards/">http://java.sun.com/javase/6/docs/technotes/guides/standards/</a>
</blockquote>
<h2><a name="javadb" id="javadb"></a>Java DB</h2>
<blockquote>
This distribution bundles Java DB, Sun Microsystems' distribution
of the Apache Derby pure Java database technology.
Default installation locations are:
<ul>
<li>
Solaris: <code>/opt/SUNWjavadb</code>
</li>
<li>
Linux : <code>/opt/sun/javadb</code>
</li>
<li>
Windows: <code>C:\Program Files\Sun\JavaDB</code>
</li>
</ul>
<p>
For information on Java DB and Derby, including user and API
documentation, the capabilities of Java DB and further resources,
see the index.html file in the above directories.
</blockquote>
<h2><a name="webpages" id="webpages"></a>Web Pages</h2>
<blockquote>
For additional information, refer to these Sun Microsystems pages on the
World Wide Web:
</blockquote>
<dl>
<dd>
<dl>
<dt><a href="http://java.sun.com/">http://java.sun.com/</a></dt>
<dd>The Java Software web site, with the latest information on Java
technology, product information, news, and features.</dd>
<dt><a href="
http://java.sun.com/docs">http://java.sun.com/docs</a></dt>
<dd>Java<sup><font size="-2">TM</font></sup> platform Documentation
provides access to white papers, the Java Tutorial and other
documents.</dd>
<dt><a href="
http://developer.java.sun.com/">http://developer.java.sun.com</a></dt>
<dd>Developer Services web site (Free registration required).
Additional technical information, news, and features; user forums;
support information, and much more.</dd>
<dt><a href="
http://developers.sun.com/downloads/">http://developers.sun.com/downloads/</a></dt>
<dd>Technology Downloads </dd>
</dl>
</dd>
</dl>
<hr>
<p><font size="2">The Java<sup><font size="-2">TM</font></sup> Development
Kit (JDK<sup><font size="-2">TM</font></sup>) is a product of Sun
Microsystems<sup><font size="-2">TM</font></sup>, Inc.<br>
<br>
Copyright &copy; 2007 Sun Microsystems, Inc.<br>
4150 Network Circle, Santa Clara, California 95054, U.S.A.<br>
All rights reserved.</font></p>
</body>
<script language="JavaScript" src="/js/omi/jsc/s_code_remote.js"></script></html>

View File

@@ -0,0 +1,440 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!-- Inserted by TRADOS: -->
<meta http-equiv="content-type" content="text/html; charset=EUC-JP">
<title>README -- Java Platform, Standard Edition Development Kit</title>
<link rel="stylesheet" href="/css/local/jp.css"></head>
<body bgcolor="#ffffff">
<center>
<h1>README</h1>
<h2>Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition
6<br>
Development Kit</h2>
<b>JDK<sup><font size="-2">TM</font></sup> 6</b>
</center>
<p>
</p>
<h2><EFBFBD>ܼ<EFBFBD></h2>
<ul>
<li><a href="#introduction"><EFBFBD>Ϥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#install"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD>׷浪<EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><EFBFBD>󥹥ȡ<EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#docs">JDK <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#relnotes"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ρ<EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#compatibility"><EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#bugs"><EFBFBD>Х<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХå<EFBFBD></a> </li>
<li><a href="#contents">JDK <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#jre">Java Runtime Environment</a> </li>
<li><a href="#redistribution"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a> </li>
<li><a href="#endorsed"><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD>ɵ<EFBFBD><EFBFBD><EFBFBD></a></li>
<li><a href="#javadb">Java DB</a></li>
<li><a href="#webpages">Web <20>ڡ<EFBFBD><DAA1><EFBFBD></a>
</li>
</ul>
<a name="introduction">
<h2><EFBFBD>Ϥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote>Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20>Τ<EFBFBD><CEA4>Υ<EFBFBD><CEA5><EFBFBD><EAA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> JDK <20>ϡ<EFBFBD>Java <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<DFA5><F3A5B0B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ƥ<EFBFBD><C6A5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󡢥<EFBFBD><F3A1A2A5>ץ<EFBFBD><D7A5>åȡ<C3A5><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ͥ<EFBFBD><CDA5>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4>뤿<EFBFBD><EBA4BF><EFBFBD>γ<EFBFBD>ȯ<EFBFBD>Ķ<EFBFBD><C4B6>Ǥ<EFBFBD><C7A4><EFBFBD>
<p>JDK <20>ˤϡ<CBA4>Java <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<DFA5><F3A5B0B8><EFBFBD><EFBFBD>ǵ<EFBFBD><C7B5>Ҥ<EFBFBD><D2A4>줿<EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>γ<EFBFBD>ȯ<EFBFBD>ȥƥ<C8A5><C6A5>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥμ¹Ԥ˻<D4A4><CBBB>ѤǤ<D1A4><C7A4><EFBFBD><EFBFBD>Ƽ<EFBFBD><C6BC>ġ<EFBFBD><C4A1><EFBFBD><EBA4AC>°<EFBFBD><C2B0><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
<!--
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υġ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><EFBFBD>ɹԤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߷פ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥿥ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD> appletviewer <20><><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
-->
</p>
<p></p>
</blockquote>
<a name="install">
<h2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD>׷浪<EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><EFBFBD>󥹥ȡ<EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD>׷<EFBFBD><EFBFBD><EFBFBD>󥹥ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥȥ<EFBFBD><EFBFBD>֥륷<EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD>󥰤Υҥ<EFBFBD><EFBFBD>ȤˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java Software
Web <20><><EFBFBD><EFBFBD><EFBFBD>Ȥ򻲾Ȥ<F2BBB2BE><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<ul>
<li><a href="install/index.html">JDK 6 <20><><EFBFBD>󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a>
</li>
</ul>
</blockquote>
<a name="docs">
<h2>JDK<sup><font size="-2">TM</font></sup> <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote><a href="http://java.sun.com/javase/6/docs/index.html">Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition (Java SE) <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><E9A5A4><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD>ˤϡ<EFBFBD>API <20><><EFBFBD>͡<EFBFBD><CDA1><EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȯ<EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD>ɡ<EFBFBD>JDK<sup><font size="-2">TM</font></sup> <20>ġ<EFBFBD><C4A1><EFBFBD><EBA4AA><EFBFBD>ӥ桼<D3A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>󥹥ڡ<F3A5B9A5><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǥ⡢<C7A5><E2A1A2><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>ؤΥ<D8A4><CEA5>󥯤<EFBFBD><F3A5AFA4>ޤޤ<DEA4><DEA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> JDK
<EFBFBD>ɥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˥<EFBFBD><EFBFBD>󥹥ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǽ<EFBFBD>ʥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ<EFBFBD><EFBFBD>ɥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥХ<C8A5><D0A5>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EAA4B9><EFBFBD>ˤϡ<CBA4><a
href="../6/download.html"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥڡ<EFBFBD><EFBFBD><EFBFBD></a><EFBFBD>򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> API <20>ˤĤ<CBA4><C4A4>Ƥϡ<C6A4><a href="http://java.sun.com/javase/6/docs/api/index.html">Java<sup><font size="-2">TM</font></sup>
Platform, Standard Edition <20><> API <20><><EFBFBD><EFBFBD></a><EFBFBD>򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>API
<EFBFBD>ˤĤ<EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͤ˽<EFBFBD><EFBFBD><EFBFBD><EFBFBD>򤪤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ñ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤळ<EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<p>
<a name="relnotes">
<h2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ρ<EFBFBD><EFBFBD><EFBFBD></h2>
</a></p>
<blockquote><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˴ؤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲþ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD>Java Software Web <20><><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><a
href="6/index.html">Java SE 6 <20><><EFBFBD><EFBFBD><EAA1BC><EFBFBD>Ρ<EFBFBD><CEA1><EFBFBD></a><EFBFBD>򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǤΥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ρ<EFBFBD><EFBFBD>ȤϿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τǡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ū<EFBFBD>˥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƺǿ<EFBFBD><EFBFBD>ξ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǧ<EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<a name="compatibility">
<h2><EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote>
<p><EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˴ؤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD>Java Software Web <20><><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><a href="compatibility.html"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥθߴ<EFBFBD><EFBFBD><EFBFBD></a><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ˵<D1A4><CBB5>Ҥ<EFBFBD><D2A4>줿<EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>ݡ<EFBFBD><DDA1>ȤˤĤ<CBA4><C4A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>򼺤<EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פʲս<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤȤ<EFBFBD><EFBFBD>ɤΥ<EFBFBD><EFBFBD>եȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϥץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥʤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߤΥС<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˰ܹԤǤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˴ؤ<EFBFBD><EFBFBD><EFBFBD> Web
<EFBFBD>ڡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʰտ<EFBFBD>Ū<EFBFBD>˸ߴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD>ȰܹԤǤ<EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϥХ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥߤʤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ū<EFBFBD>ʥ<EFBFBD><CAA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ۡ<EFBFBD><DBA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD><D5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>ϼ<EFBFBD><CFBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߷׾<DFB7><D7BE>ΥХ<CEA5><D0A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>뤿<EFBFBD><EBA4BF><EFBFBD><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4>ѹ<EFBFBD><D1B9>ˤ<EFBFBD><CBA4>äơ<C3A4><C6A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>θߴ<CEB8><DFB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
</p>
</blockquote>
<h2><a name="bugs"></a><EFBFBD>Х<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХå<EFBFBD></h2>
<blockquote>
<a href="http://bugs.sun.com/bugdatabase/index.jsp"><EFBFBD>Х<EFBFBD><EFBFBD>ǡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>١<EFBFBD><EFBFBD><EFBFBD></a> Web
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤǤϡ<EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD>ΥХ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>θ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ν<EFBFBD><EFBFBD><EFBFBD><EFBFBD>٤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<EFBFBD>Х<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>䵡ǽ<EFBFBD>˴ؤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˾<EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<blockquote><code><a
href="http://bugs.sun.com/services/bugreport/index.jsp">http://bugs.sun.com/services/bugreport/index.jsp</a></code>
</blockquote>
<EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХå<EFBFBD><EFBFBD>ϡ<EFBFBD><a href="http://java.sun.com/docs/forms/sendusmail.html">Java
SE <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ޤ<EFBFBD><DEA4><EFBFBD><a href="http://java.sun.com/mail/">Java
Software <20><><EFBFBD>󥸥˥<F3A5B8A5><CBA5><EFBFBD><EFBFBD>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Żҥ᡼<D2A5><EFBFBD>ɥ쥹</a><EFBFBD>˥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<p><b><EFBFBD><EFBFBD></b> - Bug Database <20><><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD>ȯ<EFBFBD><C8AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0A4AB><EFBFBD>ƥ<EFBFBD><C6A5>˥<EFBFBD><CBA5><EFBFBD>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD>Java Software Web <20><><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><a
href="http://java.sun.com/support/"><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><EFBFBD>Ȥȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD></a><EFBFBD>򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</p>
</blockquote>
<a name="contents">
<h2>JDK<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥϡ<EFBFBD>JDK<sup><font size="-2">TM</font></sup> <20>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥǥ<C8A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>γ<EFBFBD><CEB3>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥǥ<C8A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>ξܺ٤ˤĤ<CBA4><C4A4>Ƥϡ<C6A4><CFA1><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Υץ<CEA5><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java SE <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤΡ<C8A4><a href="http://java.sun.com/javase/6/docs/technotes/tools/index.html#general">JDK File Structure</a><EFBFBD>פ򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<dl>
<dt><b><EFBFBD><EFBFBD>ȯ<EFBFBD>ġ<EFBFBD><EFBFBD><EFBFBD></b> </dt>
<dd><code>bin</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> Java<sup><font size="-2">TM</font></sup>
<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵ<EFBFBD><EFBFBD>Ҥ<EFBFBD><EFBFBD>줿<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>γ<EFBFBD>ȯ<EFBFBD><EFBFBD><EFBFBD>¹ԡ<EFBFBD><EFBFBD>ǥХå<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥɥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٱ礹<EFBFBD><EFBFBD><EFBFBD>ġ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ桼<EFBFBD>ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD> <20>ܺ٤ˤĤ<CBA4><C4A4>Ƥϡ<C6A4><a
href="http://java.sun.com/javase/6/docs/technotes/tools/index.html"><EFBFBD>ƥġ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υޥ˥奢<EFBFBD><EFBFBD></a><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<p> </p>
</dd>
<dt><b>Runtime Environment</b> </dt>
<dd><code>jre</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> JDK <20>ǻ<EFBFBD><C7BB>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD><EFBFBD> Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)
<EFBFBD>¹ԴĶ<EFBFBD><EFBFBD>μ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD> JRE<52>ˤϡ<CBA4>Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ۥޥ<DBA5><DEA5>󡢥<EFBFBD><F3A1A2A5><EFBFBD><EFBFBD>֥<EFBFBD><D6A5><EFBFBD><EAA1A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup>
<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵ<EFBFBD><EFBFBD>Ҥ<EFBFBD><EFBFBD>줿<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ¹Ԥ򥵥ݡ<EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>¾<EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤޤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<p> </p>
</dd>
<dt><b><EFBFBD>ɲå饤<EFBFBD>֥<EFBFBD><EFBFBD><EFBFBD></b> </dt>
<dd><code>lib</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD><EFBFBD>ȯ<EFBFBD>ġ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><EFBFBD>ɲäΥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֥<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>ݡ<EFBFBD><EFBFBD>ȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD>
<p> </p>
</dd>
<dt><b><EFBFBD>ǥ⥢<EFBFBD>ץ<EFBFBD><EFBFBD>åȤȥǥ⥢<EFBFBD>ץꥱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b> </dt>
<dd><code>demo</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> Java<sup><font size="-2">TM</font></sup>
<EFBFBD>ץ<EFBFBD><EFBFBD>åȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѤΥץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤ<EFBFBD><EFBFBD>ޤޤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> Swing <20><EFBFBD><E4A4BD>¾<EFBFBD><C2BE> Java<sup><font size="-2">TM</font></sup> Foundation
Classes<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> Platform Debugger Architecture <20><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤޤ<DEA4><DEA4>ޤ<EFBFBD><DEA4><EFBFBD>
<p> </p>
</dd>
<dt><b><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ륳<EFBFBD><EFBFBD><EFBFBD><EFBFBD></b></dt>
<dd><code>sample</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java API <20>Υץ<CEA5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰤Υ<F3A5B0A4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD><D5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5>Ǥ<EFBFBD><C7A4><EFBFBD>
<br>
<br></dd>
<dt><b>C <20>إå<D8A5><C3A5><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD></b> </dt>
<dd><code>include</code> <20><><EFBFBD>֥ǥ<D6A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> <a
href="http://java.sun.com/javase/6/docs/technotes/guides/jni/index.html">Java
Native Interface</a><EFBFBD><EFBFBD><a
href="http://java.sun.com/javase/6/docs/technotes/guides/jvmti/index.html">JVM<sup><font size="-2">TM</font></sup> Tool Interface</a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӥ<EFBFBD><EFBFBD><EFBFBD>¾<EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> Platform <20>ε<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD>ͥ<EFBFBD><CDA5>ƥ<EFBFBD><C6A5>֥<EFBFBD><D6A5><EFBFBD><EFBFBD>ɥץ<C9A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰤򥵥ݡ<F2A5B5A5><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>إå<D8A5><C3A5><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
<p> </p>
</dd>
<dt><b><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b> </dt>
<dd><code>src.zip</code> <20>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> Java&nbsp; <20><><EFBFBD><EFBFBD> API
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٤ƤΥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ф<EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<DFA5><F3A5B0B8><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>Ĥޤꡢjava.*<2A><>javax.*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӱ<EFBFBD><D3B0><EFBFBD><EFBFBD><EFBFBD>
org.* <20>ѥå<D1A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ꡢcom.sun.* <20>ѥå<D1A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϴޤޤ<DEA4><DEA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤϾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>󶡤Τߤ<EFBFBD><EFBFBD><EFBFBD>Ū<EFBFBD>Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȯ<EFBFBD>Ԥ<EFBFBD> Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<DFA5><F3A5B0B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򤷳<EFBFBD><F2A4B7B3>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD>Τ<EFBFBD><CEA4><EFBFBD>Ω<EFBFBD><CEA9><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤϡ<EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD>åȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͭ<EFBFBD>μ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤϴޤޤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD>󡣤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƹ<EFBFBD><EFBFBD>ۤ<EFBFBD><EFBFBD><EFBFBD>ȤϤǤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ÿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ū<EFBFBD><EFBFBD> zip <20><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ޤ<EFBFBD><DEA4><EFBFBD> <20>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<CEA4>ˡ<EFBFBD>JDK <20><> <tt>bin</tt>
<EFBFBD>ǥ<EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѱդ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD> Jar <20><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
<pre> jar xvf src.zip<br></pre>
</dd>
</dl>
</blockquote>
<a name="jre">
<h2>Java SE Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)</h2>
</a>
<blockquote> Java<sup><font size="-2">TM</font></sup> Runtime Environment (JRE<sup><font size="-2">TM</font></sup>) <20>ϡ<EFBFBD>ñ<EFBFBD>Ȥǥ<C8A4><C7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤǤ<C9A4><C7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤȤ<CAA4><C8A4><EFBFBD><EFBFBD>󶡤<EFBFBD><F3B6A1A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> <a
href="../6/download.html"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Web <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD>򻲾<EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<p> JRE <20><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD>ȡ<EFBFBD>Java<sup><font size="-2">TM</font></sup>
<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߥ󥰸<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵ<EFBFBD><EFBFBD>Ҥ<EFBFBD><EFBFBD>줿<EFBFBD><EFBFBD><EFBFBD>ץꥱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¹ԤǤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> JDK<sup><font size="-2">TM</font></sup> <20><>Ʊ<EFBFBD>ͤˡ<CDA4>Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ۥޥ<DBA5><DEA5><EFBFBD><EFBFBD><EFBFBD>Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD> API
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><EFBFBD>ݡ<EFBFBD><EFBFBD>ȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤޤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> JDK <20>Ȥϰۤʤꡢ<CAA4><EAA1A2><EFBFBD><EFBFBD><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǥХå<D0A5><C3A5>ʤɤγ<C9A4>ȯ<EFBFBD>ġ<EFBFBD><C4A1><EFBFBD><EFBFBD>ϴޤޤ<DEA4><DEA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> </p>
<p> JRE <20>ϡ<EFBFBD>JRE <20>Υ<CEA5><E9A5A4><EFBFBD>󥹾<EFBFBD><F3A5B9BE><EFBFBD><EFBFBD>˽<EFBFBD><CBBD>äơ<C3A4><C6A1>ȼ<EFBFBD><C8BC>˳<EFBFBD>ȯ<EFBFBD><C8AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤȤ<C8A4><C8A4>˼<EFBFBD>ͳ<EFBFBD>˺<EFBFBD><CBBA><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD> JDK
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD>ץꥱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȯ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ桼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD>եȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǽ¹ԤǤ<D4A4><C7A4><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>JRE <20>ȤȤ<C8A4><C8A4>˽в٤<D0B2><D9A4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
</p>
</blockquote>
<a name="redistribution">
<h2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
</a>
<blockquote>
<blockquote>
<hr> <20><> - <20><><EFBFBD>Υ<EFBFBD><CEA5>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<CEA5><E9A5A4><EFBFBD>󥹤ϡ<F3A5B9A4><CFA1>١<EFBFBD><D9A1><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>Ӥ<EFBFBD><D3A4><EFBFBD>¾<EFBFBD>Υץ<CEA5><D7A5><EFBFBD><EFBFBD><EFBFBD><EAA1BC><EFBFBD>Ǥκ<C7A4><CEBA><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΤǤϤ<C7A4><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
<hr></blockquote>
<EFBFBD><EFBFBD><EFBFBD>եȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥹷<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ξ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӱʲ<EFBFBD><EFBFBD>ǵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¡<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˽<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>եȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
(<28><><EFBFBD><EFBFBD><EFBFBD>Ӱʲ<D3B0><CAB2>Ǻ<EFBFBD><C7BA><EFBFBD><EFBFBD>۲<EFBFBD>ǽ<EFBFBD>ȸ<EFBFBD><C8B8>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD><EFBFBD><EBA1A2><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΰ<EFBFBD><CEB0><EFBFBD>) <20><>ʣ<EFBFBD><CAA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤǤ<DBA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
<ol type="a">
<li> <20><><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʲ<EFBFBD><CAB2>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD>֤ǡ<D6A4><C7A1><EFBFBD><EFBFBD>ĥ<EFBFBD><C4A5>ץ<EFBFBD><D7A5>åȤ<C3A5><C8A4><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28>֥ץ<D6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)
<EFBFBD>ΰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>ƥХ<EFBFBD><EFBFBD>ɥ뤵<EFBFBD>줿<EFBFBD><EFBFBD><EFBFBD>֤ǤΤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><EFBFBD>
</li>
<li> <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0A4AC><EFBFBD>פ<EFBFBD><D7A4>ļ<EFBFBD><C4BC>פʵ<D7A4>ǽ<EFBFBD>򥽥եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲä<C9B2><C3A4>
</li>
<li> <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ब Java <20>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѥǥ<D1A5><C7A5><EFBFBD><EFBFBD>ȥåץ<C3A5><D7A5><EFBFBD><EFBFBD>ԥ塼<D4A5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5><EFBFBD><EFBFBD>С<EFBFBD><D0A1>Ǽ¹Ԥ<C2B9><D4A4><EFBFBD><EFBFBD><EFBFBD>ȤΤߤ<CEA4><DFA4><EFBFBD>Ū<EFBFBD>Ȥ<EFBFBD><C8A4>
</li>
<li> <20>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ¹ԤΤߤ<CEA4><DFA4><EFBFBD>Ū<EFBFBD>Ȥ<EFBFBD><C8A4>ơ<EFBFBD><C6A1><EFBFBD><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4>
</li>
<li> <20><><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ͥ<EFBFBD><CDA5>Ȥ<EFBFBD><C8A4>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD>Ū<EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD>ɲäΥ<C3A4><CEA5>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4>ʤ<EFBFBD><CAA4><EFBFBD>
</li>
<li> <20><><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><CBB5>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EBA4A4><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD>ͭ<EFBFBD><CDAD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD>
</li>
<li> <20>ܷ<EFBFBD><DCB7><EFBFBD><EFBFBD>˴ޤޤ<DEA4><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȹ<EFBFBD><C8B9>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD>Sun <20><><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD><D7A4>ݸ<DDB8><EEA4B9><EFBFBD><EFBFBD><E9A5A4><EFBFBD>󥹷<EFBFBD><F3A5B9B7><EFBFBD><EFBFBD>˽<EFBFBD><CBBD>äƤΤߥ<CEA4><DFA5>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4>
</li>
<li>
<EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><EFBFBD>եȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD>Ϥ<EFBFBD><EFBFBD>٤Ƥλ<EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ١<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤˴<EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD>»<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>
<EFBFBD><EFBFBD>̳<EFBFBD><EFBFBD><EFBFBD>²<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӽ<EFBFBD><EFBFBD><EFBFBD> (<28>۸<EFBFBD><DBB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ޤ<EFBFBD>) <20><><EFBFBD>顢Sun <20>Ȥ<EFBFBD><C8A4>Υ<CEA5><E9A5A4><EFBFBD>󥵤<EFBFBD><F3A5B5A4>ʸ<CAB8><EEA4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD>Ʊ<EFBFBD>դ<EFBFBD><D5A4>
</li>
</ol>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǻ<EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֥٥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>פȤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѹ<EFBFBD><EFBFBD>ϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤȤ<EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20><><EFBFBD><EFBFBD><E9A5A4><EFBFBD>󥹶<EFBFBD>Ϳ<EFBFBD><CDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD><EFBFBD><EFBFBD><E9A5A4><EFBFBD>󥷡<EFBFBD><F3A5B7A1><EFBFBD>ȯ<EFBFBD>ԡ<EFBFBD><D4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ω<EFBFBD>ϥ<EFBFBD><CFA5>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٥<EFBFBD><D9A5><EFBFBD><EFBFBD><EFBFBD> (ISV) <20><><EFBFBD>ؤ<EFBFBD><D8A4>ޤ<EFBFBD><DEA4><EFBFBD>
<p><EFBFBD>٥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>Java Development Kit <20>Х<EFBFBD><D0A5>ʥꥳ<CAA5><EAA5B3><EFBFBD>ɥ饤<C9A5><E9A5A4><EFBFBD>󥹷<EFBFBD><F3A5B9B7><EFBFBD><EFBFBD>ξ<EFBFBD><CEBE><EFBFBD><EFBFBD>˽<EFBFBD><CBBD><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
</p>
<h3>ɬ<EFBFBD>ܥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h3>
Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>ɬ<EFBFBD>ܤȥ<DCA4><C8A5>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 2 <20>Ĥ<EFBFBD>ʬ<EFBFBD><EFBFBD><E0A4B5><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD><EFBFBD>٥<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƚ<EFBFBD>Ǥˤ<EFBFBD><EFBFBD><EFBFBD> JDK <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
<p>JDK <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>Ǥ<EFBFBD>դǽ<D5A4><C7BD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EBA4AA><EFBFBD>ӥǥ<D3A5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>򼡤˼<F2BCA1A4><CBBC><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˴ޤޤ<EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>٤<EFBFBD> JDK <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤ˴ޤ<CBB4><DEA4><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
</p>
<h3><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥǥ<EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD></h3>
<EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD>դ˽<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> jdk1.6.0_&lt;version&gt;
<EFBFBD>ǥ<EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>˳<EFBFBD>Ǽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>&lt;version&gt; <20>ϡ<EFBFBD><CFA1><EFBFBD><EFBFBD>åץǡ<D7A5><C7A1>ȥС<C8A5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><D6B9>Ǥ<EFBFBD><C7A4><EFBFBD> Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Linux
<EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD>ȶ<EFBFBD><EFBFBD>ڤ국<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> Windows <20>μ¹Բ<C2B9>ǽ<EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤ<EFBFBD><CBA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>.exe<78>פ<EFBFBD><D7A4>դ<EFBFBD><D5A4>ޤ<EFBFBD><DEA4><EFBFBD> ̾<><CCBE><EFBFBD><EFBFBD> <code>_g</code>
<EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD><EFBFBD>б<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>줿<EFBFBD>¹Բ<EFBFBD>ǽ<EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥप<C6A5><E0A4AA><EFBFBD><EFBFBD> Linux <20>ξ<EFBFBD><CEBE><EFBFBD>ʲ<EFBFBD><CAB2>ΰ<EFBFBD><CEB0><EFBFBD><EFBFBD>ǥѥ<C7A5><D1A5><EFBFBD> bin/ <20><><EFBFBD><EFBFBD><EFBFBD>Ϥޤ<CFA4>) <20><><EFBFBD>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ˥奢<CBA5><E5A5A2><EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD>Ͻ<EFBFBD><CFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
<dl>
<dt><tt>jre/lib/charsets.jar</tt> </dt>
<dd>ʸ<EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</dd>
<dt><tt>jre/lib/ext/</tt> </dt>
<dd><tt>sunjce_provider.jar</tt> - Java <20>Ź沽 API <20><> SunJCE <20>ץ<EFBFBD><D7A5>Х<EFBFBD><D0A5><EFBFBD><br>
<tt>localedata.jar</tt> - <20>ƹ<EFBFBD><C6B9>Ѹ<EFBFBD><D1B8>ʳ<EFBFBD><CAB3>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פʥ꥽<CAA5><EAA5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¿<EFBFBD><C2BF><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><br>
<tt>ldapsec.jar</tt> - LDAP <20><><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5>ץ<EFBFBD><D7A5>Х<EFBFBD><D0A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>Ȥ<EFBFBD><C8A4><EFBFBD><EBA5BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>ޤ<EFBFBD><br>
<tt>dnsns.jar</tt> - JNDI DNS <20>ץ<EFBFBD><D7A5>Х<EFBFBD><D0A5><EFBFBD><EFBFBD><EFBFBD> InetAddress <20><><EFBFBD>åѡ<C3A5><D1A1><EFBFBD>
</dd>
<dt><tt>bin/rmid</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/rmid</tt> </dt>
<dd>Java RMI <20><>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD><EFBFBD>
</dd>
<dt><tt>bin/rmiregistry</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/rmiregistry</tt> </dt>
<dd>Java <20><><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ쥸<C8A5><ECA5B8><EFBFBD>ȥ<EFBFBD>
</dd>
<dt><tt>bin/tnameserv</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/tnameserv</tt> </dt>
<dd>Java IDL <20>͡<EFBFBD><CDA1><EFBFBD><E0A5B5><EFBFBD>С<EFBFBD>
</dd>
<dt><tt>bin/keytool</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/keytool</tt> </dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ġ<EFBFBD><EFBFBD><EFBFBD>
</dd>
<dt><tt>bin/kinit</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/kinit</tt> </dt>
<dd>Kerberos <20><><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>ǧ<EFBFBD>ĥ<EFBFBD><C4A5><EFBFBD><EFBFBD>åȤμ<C8A4><CEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD>˻<EFBFBD><CBBB><EFBFBD>
</dd>
<dt><tt>bin/klist</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/klist</tt> </dt>
<dd><EFBFBD><EFBFBD><EFBFBD>ʥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Kerberos ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD>
</dd>
<dt><tt>bin/ktab</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/ktab</tt> </dt>
<dd>Kerberos <20><><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>ޥ͡<DEA5><CDA1><EFBFBD><EFBFBD>
</dd>
<dt><tt>bin/policytool</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/policytool</tt> </dt>
<dd><EFBFBD>ݥꥷ<EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ġ<EFBFBD><EFBFBD><EFBFBD>
</dd>
<dt><tt>bin/orbd</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/orbd</tt> </dt>
<dd>Object Request Broker Daemon
</dd>
<dt><tt>bin/servertool</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/bin/servertool</tt> </dt>
<dd>Java IDL <20><><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1>ġ<EFBFBD><C4A1><EFBFBD>
</dd>
<dt><tt>bin/javaws</tt><EFBFBD><EFBFBD><tt>jre/bin/javaws</tt><EFBFBD><EFBFBD><tt>jre/lib/javaws/</tt>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>jre/lib/javaws.jar</tt> </dt>
<dd>Java Web Start </dd>
<dt><code>demo/</code></dt>
<dd><EFBFBD>ǥ⥢<EFBFBD>ץ<EFBFBD><EFBFBD>åȤȥ<EFBFBD><EFBFBD>ץꥱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>sample/</code></dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ륳<EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><tt>src.zip</tt> </dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</dd>
</dl>
<p>
<a name="redistributablejdkfiles"></a></p>
<h3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>۲<EFBFBD>ǽ<EFBFBD><EFBFBD> JDK<sup><font size="-2">TM</font></sup> <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD></h3>
<EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><EFBFBD><EFBFBD> JDK <20>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥꥻ<C8A5>åȤϡ<C8A4><CFA1>٥<EFBFBD><D9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󶡤<EFBFBD><F3B6A1A4><EFBFBD> Java<sup><font size="-2">TM</font></sup> Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)
<EFBFBD>κ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ˴ޤ<EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̤˺<CCA4><CBBA><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>ȤϤǤ<CFA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>JRE <20>ȤȤ<C8A4><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> <20><><EFBFBD>Υѥ<CEA5><D1A5>ϡ<EFBFBD><CFA1><EFBFBD><EFBFBD>٤<EFBFBD>
JDK <20>κǾ<CEBA><C7BE>̥ǥ<CCA5><C7A5><EFBFBD>ȥ꤫<C8A5><EAA4AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Хѥ<D0A5><D1A5>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¹Բ<C2B9>ǽ<EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥप<C6A5><E0A4AA><EFBFBD><EFBFBD> Linux <20>ξ<EFBFBD><CEBE><EFBFBD>ʲ<EFBFBD><CAB2>ΰ<EFBFBD><CEB0><EFBFBD><EFBFBD>ǥѥ<C7A5><D1A5><EFBFBD> bin/ <20><><EFBFBD><EFBFBD><EFBFBD>Ϥޤ<CFA4>) <20><><EFBFBD>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ˥奢<CBA5><E5A5A2><EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD>ϴޤ<CFB4><DEA4><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
<dl>
<dt><tt>jre/lib/cmm/PYCC.pf</tt> </dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><20><><EFBFBD>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>PYCC <20><><EFBFBD><EFBFBD>ΰ<EFBFBD><CEB0>Ȥ<EFBFBD><C8A4><EFBFBD>¾<EFBFBD>Υ<EFBFBD><CEA5><EFBFBD>ΰ<EFBFBD><CEB0>δ֤<CEB4><D6A4>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˤΤ<CBA4>ɬ<EFBFBD>פǤ<D7A4><C7A4><EFBFBD>
</dd>
<dt><tt>jre/lib/fonts</tt> <20>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>Τ<EFBFBD><CEA4>٤Ƥ<D9A4> <tt>.ttf</tt> <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>ȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD> </dt>
<dd>LucidaSansRegular.ttf <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>ȤϤ<C8A4><CFA4>Ǥ<EFBFBD> JRE
<EFBFBD>˴ޤޤ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>뤿<EFBFBD>ᡢJDK <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פϤ<D7A4><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
</dd>
<dt><tt>jre/lib/audio/soundbank.gm</tt> </dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MIDI <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ󥯤<D0A5> JDK <20>˴ޤޤ<DEA4><DEA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>JRE
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ<C9A5><D0A5>ɥ<EFBFBD><C9A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򸺤餹<F2B8BAA4><E9A4B9><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD>Ū<EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ󥯥ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MIDI <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פʤ<D7A4><CAA4><EFBFBD>٥<EFBFBD><D9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƚ<EFBFBD>Ǥ<EFBFBD> JDK <20><> <tt>soundbank.gm</tt>
<EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤ˴ޤ<CBB4><DEA4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD> <20><>ĥ MIDI <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ󥯤Τ<F3A5AFA4><CEA4><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
Java Sound Web <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <a
href="http://java.sun.com/products/java-media/sound/">http://java.sun.com/products/java-media/sound/</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؤΥ<D8A4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥХ󥯤Ϥɤ<CFA4><C9A4>⡢JRE <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤ˴ޤ<CBB4><DEA4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
</dd>
<dt>javac <20>Х<EFBFBD><D0A5>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD>ʲ<EFBFBD><CAB2>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǹ<EFBFBD><C7B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> </dt>
<dd><tt>bin/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥप<C6A5><E0A4AA><EFBFBD><EFBFBD> Linux]<br>
<tt>bin/sparcv9/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥ<EFBFBD> (SPARC(R)
<EFBFBD>ץ<EFBFBD><EFBFBD>åȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)]<br>
<tt>bin/amd64/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥ<EFBFBD> (AMD)]<br>
<tt>bin/javac.exe</tt> [Microsoft Windows]<br>
<tt>lib/tools.jar</tt> [<5B><><EFBFBD>٤ƤΥץ<CEA5><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD>]
</dd>
<dt>Annotation Processing Tool<6F><6C><EFBFBD>ʲ<EFBFBD><CAB2>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǹ<EFBFBD><C7B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><br>
</dt>
<dd><tt>bin/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥप<C6A5><E0A4AA><EFBFBD><EFBFBD> Linux]<br>
<tt>bin/sparcv9/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥ<EFBFBD> (SPARC(R)
<EFBFBD>ץ<EFBFBD><EFBFBD>åȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)]<br>
<tt>bin/amd64/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD>ڥ졼<DAA5>ƥ<EFBFBD><C6A5>󥰥<EFBFBD><F3A5B0A5><EFBFBD><EFBFBD>ƥ<EFBFBD> (AMD)]<br>
<tt>bin/apt.exe</tt> [Microsoft Windows]
</dd>
<dt><code>lib/jconsole.jar</code></dt>
<dd>Jconsole <20><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><tt>jre\bin\server\</tt> </dt>
<dd>Microsoft Windows <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥϡ<C7A4>JDK <20><> Java HotSpot<sup><font size="-2">TM</font></sup> Server VM <20><>
Java HotSpot<sup><font size="-2">TM</font></sup> Client VM <20><>ξ<EFBFBD><CEBE><EFBFBD><EFBFBD><EFBFBD>ޤޤ<DEA4><DEA4>ޤ<EFBFBD><DEA4><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Microsoft Windows <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD> JRE <20>ˤ<EFBFBD> Java HotSpot<sup><font size="-2">TM</font></sup> Client VM <20><><EFBFBD><EFBFBD><EFBFBD>ޤޤ<DEA4><DEA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> Java
HotSpot<sup><font size="-2">TM</font></sup> Server VM <20><> JRE <20>ǻ<EFBFBD><C7BB>Ѥ<EFBFBD><D1A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>JDK <20><> <tt>jre\bin\server</tt>
<EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE <20><> <tt>bin\server</tt>
<EFBFBD>ǥ<EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>˥<EFBFBD><EFBFBD>ԡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>եȥ<D5A5><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٥<EFBFBD><D9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>JRE <20>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۤκݤˡ<DDA4>Java HotSpot<sup><font size="-2">TM</font></sup> Server VM <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
</dd>
</dl>
<h3>̵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java <20>Ź沽<C5B9><E6B2BD>ĥ<EFBFBD><C4A5>ǽ</h3>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ι<EFBFBD><EFBFBD><EFBFBD>͢<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><EFBFBD><EFBFBD><EFBFBD>뤿<EFBFBD>ᡢJDK <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE <20>ȤȤ<C8A4><C8A4>˽в٤<D0B2><D9A4><EFBFBD><EFBFBD><EFBFBD> Java <20>Ź沽<C5B9><E6B2BD>ĥ<EFBFBD><C4A5>ǽ (JCE)
<EFBFBD>Υݥꥷ<EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϤǤϤ<EFBFBD><EFBFBD>äƤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>դ<EFBFBD><EFBFBD>ΰŹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC>ξ<EFBFBD><CEBE><EFBFBD><EFBFBD>˳<EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
<blockquote>
<pre>&lt;java-home&gt;/lib/security/local_policy.jar<br>&lt;java-home&gt;/lib/security/US_export_policy.jar<br></pre>
</blockquote>
<tt>&lt;java-home&gt;</tt> <20>ϡ<EFBFBD>JDK <20><> <tt>jre</tt> <20>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>ޤ<EFBFBD><DEA4><EFBFBD> JRE <20>κǾ<CEBA><C7BE>̥ǥ<CCA5><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>Ǥ<EFBFBD><C7A4><EFBFBD>
<p><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD><EFBFBD>Ź沽<EFBFBD><EFBFBD><EFBFBD>٤<EFBFBD><EFBFBD><EFBFBD><EFBFBD>¤Τʤ<EFBFBD>̵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٥С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<EFBFBD><EFBFBD><EFBFBD><EFBFBD>뤬 JDK Web
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ѱդ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ι<EFBFBD><CEB9>Υ<CEA5><E6A1BC><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>̵<EFBFBD><CCB5><EFBFBD><EFBFBD><C2B6>٥С<D9A5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϰŹ沽 jar
<EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٥ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> </p>
<h3>cacerts <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD></h3>
<blockquote>
<20>ʲ<EFBFBD><CAB2>ˤ<EFBFBD><CBA4><EFBFBD> Java SE <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǥ롼<C7A5><EBA1BC>ǧ<EFBFBD>ڶɾ<DAB6><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲäޤ<C3A4><DEA4>Ϻ<EFBFBD><CFBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
</blockquote>
<blockquote>
<code>&lt;java-home&gt;/lib/security/cacerts</code>
</blockquote>
<blockquote>
<20>ܺ٤<DCBA> keytool <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD> <a href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">The cacerts Certificates File</a> <20>򻲾Ȥ<F2BBB2BE><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
</blockquote>
<!--
<h3>jconsole</h3>
<dl>
<dt><tt>jconsole.jar</tt>
</dt>
<dd>jconsole <20><> JDK <20>Ȥ<EFBFBD><C8A4>̤˺<CCA4><CBBA><EFBFBD><EFBFBD>ۤǤ<DBA4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>Sun <20><> JRE <20>ȤȤ<C8A4><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
</dd>
</dl>
-->
<a name="endorsed">
<h2>Java <20><EFBFBD><E4BEA9><EFBFBD>ʥ<EFBFBD><CAA5><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD></h2>
Java <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>Java Community Process<sup><font size="-1">SM</font></sup> (JCP<sup><font size="-1">SM</font></sup><a href="http://www.jcp.org/">http://www.jcp.org/</a>) <20>ʳ<EFBFBD><CAB3>Ǻ<EFBFBD><C7BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>줿ɸ<ECA4BF><C9B8> (<28>侩ɸ<E4BEA9><C9B8>) <20>κǿ<CEBA><C7BF>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ߹<C8A4><DFB9>ि<EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>ϥץ<CFA5><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˴ޤޤ<DEA4><DEA4><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򡢤<EFBFBD><F2A1A2A4>Υƥ<CEA5><C6A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ο<EFBFBD><CEBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><><C9B8><EFBFBD>ƥ<EFBFBD><C6A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD>) <20><><EFBFBD>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>뤿<EFBFBD>ᡢŬ<E1A1A2><C5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4><C7A4><EFBFBD>
<p>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD>ɵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD>Java <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ߹<C8A4><DFB9>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD>侩ɸ<E4BEA9><C9B8><EFBFBD><EFBFBD><E4A5B9><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBA1A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD>󥿥ե<F3A5BFA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󶡤Ǥ<F3B6A1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
<p><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD>ɵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ξܺ٤ˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򻲾Ȥ<EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˻<EFBFBD><EFBFBD>ѤǤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><EFBFBD>åȥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѥå<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǻܤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
</p>
<blockquote> <a
href="http://java.sun.com/javase/6/docs/technotes/guides/standards/index.html">http://java.sun.com/javase/6/docs/technotes/guides/standards/</a>
</blockquote>
<h2><a name="javadb" id="javadb"></a>Java DB</h2>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ۤϡ<EFBFBD>Sun Microsystems <20><><EFBFBD><EFBFBD><EFBFBD>ۤ<EFBFBD><DBA4><EFBFBD> Apache Derby pure Java <20>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD> Java DB <20><><EFBFBD>Х<EFBFBD><D0A5>ɥ뤷<C9A5>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
<EFBFBD>ǥե<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤǤϰʲ<EFBFBD><EFBFBD>˥<EFBFBD><EFBFBD>󥹥ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD>
<ul>
<li>
Solaris: <code>/opt/SUNWjavadb</code>
</li>
<li>
Linux : <code>/opt/sun/javadb</code>
</li>
<li>
Windows: <code>C:\Program Files\Sun\JavaDB</code>
</li>
</ul>
<p>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD> API <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD>Java DB <20>ε<EFBFBD>ǽ<EFBFBD><EFBFBD><E4A4BD>¾<EFBFBD><EFBFBD><EAA5BD><EFBFBD><EFBFBD><EFBFBD>ʤɤ<CAA4> Java DB <20><> Derby <20>ξ<EFBFBD><CEBE><EFBFBD><EFBFBD>ˤĤ<CBA4><C4A4>Ƥϡ<C6A4><CFA1><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD> index.html <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򻲾Ȥ<F2BBB2BE><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</p></blockquote>
<!--
<p>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> Web <20>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD>˷Ǻܤ<C7BA><DCA4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>ѥå<D1A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><E9A5B9><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD>Τϡ<CEA4>Ŭ<EFBFBD>ڤ<EFBFBD>ɸ<EFBFBD><C9B8><EFBFBD><EFBFBD><EFBFBD>Τˤ<CEA4><CBA4>ä<EFBFBD><C3A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>줿 API
<EFBFBD>κǿ<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD>
</p>
<p>Sun <20><> Java SE <20><><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>󥹼<EFBFBD><F3A5B9BC><EFBFBD><EFBFBD>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ۼԤϡ<D4A4><CFA1><EFBFBD><E5B5AD> URL <20>Υɥ<CEA5><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ˷Ǻܤ<C7BA><DCA4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>ѥå<D1A5><C3A5><EFBFBD><EFBFBD><EFBFBD> (Java
Platform, Standard Edition (Java SE) <20>λ<EFBFBD><CEBB>ͤΰ<CDA4><CEB0><EFBFBD>) <20>ʳ<EFBFBD><CAB3>ˡ<EFBFBD><CBA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ο侩ɸ<E4BEA9><C9B8><EFBFBD>ѥå<D1A5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
public API <20><><EFBFBD>󶡤<EFBFBD><F3B6A1A4>뵡ǽ<EBB5A1>μ<EFBFBD><CEBC><EFBFBD><EFBFBD>Τߤ<CEA4><DFA4><EFBFBD>Ū<EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><E9A5B9><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD> <20>ޤ<EFBFBD><DEA4><EFBFBD><tt>org.w3c.dom.*</tt>
<EFBFBD>ѥå<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> API <20>μ<EFBFBD><CEBC><EFBFBD><EFBFBD>Τߤ<CEA4><DFA4><EFBFBD>Ū<EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EBA4BD>¾<EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><E9A5B9><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
</p>
<h3>cacerts <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><br>
</h3>
<code>&lt;java-home&gt;/lib/security/cacerts</code> <20>ˤ<EFBFBD><CBA4><EFBFBD> Java SE
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǥ롼<EFBFBD><EFBFBD>ǧ<EFBFBD>ڶɾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲäޤ<EFBFBD><EFBFBD>Ϻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> <20>ܺ٤ˤĤ<CBA4><C4A4>Ƥϡ<C6A4>keytool <20>ɥ<EFBFBD><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤΡ<C8A4><a
href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">The
cacerts Certificates File</a><3E>פ򻲾Ȥ<F2BBB2BE><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
-->
<a name="webpages">
<h2>Web <20>ڡ<EFBFBD><DAA1><EFBFBD></h2>
</a>
<blockquote><EFBFBD>ܺ٤ˤĤ<EFBFBD><EFBFBD>Ƥϡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Sun Microsystems <20><> Web <20>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD>򻲾Ȥ<F2BBB2BE><C8A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<dl>
<dt><a href="http://java.sun.com/">http://java.sun.com/</a> </dt>
<dd>Java Software Web <20><><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD>Java
<EFBFBD>ƥ<EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD>󡢥˥塼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD>ǽ<EFBFBD>ˤĤ<EFBFBD><EFBFBD>Ƥκǿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>󤬷Ǻܤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> </dd>
<dt><a href="http://java.sun.com/docs">http://java.sun.com/docs</a>
</dt>
<dd>Java<sup><font size="-2">TM</font></sup> <20>ץ<EFBFBD><D7A5>åȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υɥ<CEA5><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1>ۥ磻<DBA5>ȥڡ<C8A5><DAA1>ѡ<EFBFBD><D1A1><EFBFBD> Java <20><><EFBFBD><EFBFBD>ȥꥢ<C8A5><EAA5A2><EFBFBD>ʤɤΥɥ<CEA5><C9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ˥<C8A4><CBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD> </dd>
<dt><a href="http://developer.java.sun.com">http://developer.java.sun.com</a>
</dt>
<dd>Developer Services Web <20><><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ͽ<EFBFBD><CFBF>ɬ<EFBFBD>ס<EFBFBD>)
<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD>󡢥˥塼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD>ǽ<EFBFBD>ξܺپ<EFBFBD><EFBFBD>󡢥桼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><EFBFBD>Ⱦ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤɤ<EFBFBD><EFBFBD>󶡤<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD> </dd>
<dt><a href="http://developers.sun.com/downloads/">http://developers.sun.com/downloads/</a>
</dt>
<dd><EFBFBD>ƥ<EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</dd>
</dl>
</blockquote>
<p>
</p>
<hr><font size="2">Java<sup><font size="-2">TM</font></sup> Development Kit(JDK<sup><font size="-2">TM</font></sup>) <20><> Sun Microsystems<sup><small>TM</small></sup>, Inc. <20><><EFBFBD><EFBFBD><EFBFBD>ʤǤ<CAA4><C7A4><EFBFBD><br>
<p>Copyright &#169; 2007 Sun Microsystems, Inc., 4150 Network Circle,
Santa Clara, California 95054, U.S.A.<br>
All rights reserved.</font>
</p>
<script language="JavaScript" src="README_files/s_code_remote.js"></script><img src="README_files/s16032713562502.gif" name="s_i_sunglobal" alt="" border="0" height="1" width="1">
</body>
<script language="JavaScript" src="/js/omi/jsc/s_code_remote.js"></script></html>

View File

@@ -0,0 +1,435 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=GB2312">
<title><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD> -- Java Platform, Standard Edition Development Kit</title>
</head>
<body lang="en-US" bgcolor="#FFFFFF">
<h1 align="center"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD></h1>
<h2 align="center">Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition 6<br> Development Kit</h2>
<p align="center"><b>JDK<sup><font size="-2">TM</font></sup> 6</b></p>
<h2>Ŀ¼</h2>
<ul>
<li><a href="#introduction"><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a></li>
<li><a href="#install">ϵͳҪ<EFBFBD><EFBFBD><EFBFBD>밲װ</a></li>
<li><a href="#docs">JDK <20>ĵ<EFBFBD></a></li>
<li><a href="#relnotes"><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD></a></li>
<li><a href="#compatibility"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a></li>
<li><a href="#bugs"><EFBFBD><EFBFBD><EFBFBD>󱨸<EFBFBD><EFBFBD><EFBFBD><EFBFBD></a></li>
<li><a href="#contents">JDK <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a></li>
<li><a href="#jre">Java Runtime Environment</a></li>
<li><a href="#redistribution"><EFBFBD>ٷַ<EFBFBD></a></li>
<li><a href="#endorsed">Java ǩ<><C7A9><EFBFBD><EFBFBD>׼<EFBFBD><D7BC><EFBFBD>ǻ<EFBFBD><C7BB><EFBFBD></a></li>
<li><a href="#webpages">Web ҳ</a></li>
</ul>
<h2><a name="introduction" id="introduction"></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
<blockquote>
<EFBFBD><EFBFBD>л<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ش˰汾<EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> Platform, Standard Edition Development Kit (JDK<sup><font size="-2">TM</font></sup>)<29><>JDK <20><>һ<EFBFBD>ֿ<EFBFBD><D6BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9> Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD>applet <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
JDK <20><><EFBFBD><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9>߿<EFBFBD><DFBF><EFBFBD><EFBFBD>ڿ<EFBFBD><DABF><EFBFBD><EFBFBD>Ͳ<EFBFBD><CDB2><EFBFBD><EFBFBD><EFBFBD> Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD><EFBFBD>еij<D0B5><C4B3><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<h2><a name="install" id="install"></a>ϵͳҪ<EFBFBD><EFBFBD><EFBFBD>밲װ</h2>
<blockquote>
ϵͳҪ<EFBFBD>󡢰<EFBFBD>װ˵<EFBFBD><EFBFBD><EFBFBD>͹<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ų<EFBFBD><EFBFBD><EFBFBD>ʾλ<EFBFBD><EFBFBD> Java <20><><EFBFBD><EFBFBD> Web վ<><D5BE><EFBFBD>ϵ<EFBFBD><CFB5><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD>ã<EFBFBD>
</blockquote>
<blockquote>
<a href="http://java.sun.com/javase/6/webnotes/install/">JDK 6 <20><>װ˵<D7B0><CBB5></a>
</blockquote>
<h2><a name="docs" id="docs"></a>JDK<sup><font size="-2">TM</font></sup> <20>ĵ<EFBFBD></h2>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <a href=
"http://java.sun.com/javase/6/docs/">Java<sup><font size=
"-2">TM</font></sup> Platform, Standard Edition (Java SE) <20>ĵ<EFBFBD></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD> API ˵<><CBB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܽ<EFBFBD><DCBD>ܡ<EFBFBD><DCA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD>ϡ<EFBFBD>JDK<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD>ߺ<EFBFBD>ʵ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD><EFBFBD>IJο<C4B2>ҳ<EFBFBD><EFBFBD><E6A1A2>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>ӡ<EFBFBD><D3A1><EFBFBD><EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ذ<EFBFBD><D8B0><EFBFBD><EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD><E1B9A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Խ<EFBFBD><D4BD>˰<EFBFBD><CBB0><EFBFBD>װ<EFBFBD>ڼ<EFBFBD><DABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>ø<EFBFBD><C3B8>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD><a href="http://java.sun.com/javase/downloads/index.jsp"><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD><EFBFBD></a><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD> API <20>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <a href=
"http://java.sun.com/javase/6/docs/api/index.html">Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition API ˵<><CBB5></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> API <20>ļ<EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>ܣ<EFBFBD><DCA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ص<EFBFBD><D8B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> API ˵<><CBB5><EFBFBD><EFBFBD><EFBFBD>Ǵ<EFBFBD><C7B4><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
</blockquote>
<h2><a name="relnotes" id="relnotes"></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD></h2>
<blockquote>
<EFBFBD>йش˰汾<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> Java <20><><EFBFBD><EFBFBD> Web վ<><D5BE><EFBFBD>ϵ<EFBFBD> <a href="http://java.sun.com/javase/6/webnotes/">Java SE 6 <20><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD>и<EFBFBD><EFBFBD>£<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڲ鿴<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˽<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD>
</blockquote>
<h2><a name="compatibility" id="compatibility"></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
<blockquote>
<EFBFBD>й<EFBFBD><EFBFBD><EFBFBD>֪<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> Java <20><><EFBFBD><EFBFBD> Web վ<><D5BE><EFBFBD><EFBFBD><a href=
"http://java.sun.com/javase/6/webnotes/compatibility.html"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڰ汾<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD>ڰ汾<EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> ƽ̨<C6BD><CCA8>д<EFBFBD>ij<EFBFBD><C4B3>򡣾<EFBFBD><F2A1A3BE>ܱ<EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD>ijЩ<C4B3><D0A9><EFBFBD><EFBFBD><EFBFBD>ݵĸ<DDB5><C4B8>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD>󲿷<EFBFBD><F3B2BFB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܹ<EFBFBD><DCB9>ڲ<EFBFBD><DAB2><EFBFBD><EFBFBD>±<EFBFBD><C2B1>̵<EFBFBD><CCB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǩ<EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>ǰ<EFBFBD><EFBFBD><E6B1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2B2BB><EFBFBD>ּ<EFBFBD><D6BC>ݣ<EFBFBD><DDA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵļ<C7B5><C4BC><EFBFBD><EFBFBD><EFBFBD> Web ҳ<><D2B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><E3A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֮<EFBFBD><D6AE><EFBFBD>Դ<EFBFBD><D4B4><EFBFBD>һЩ<D2BB>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Եĸ<D4B5><C4B8>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>Ҫ<EFBFBD>ֲ<EFBFBD>DZ<EFBFBD>ڵİ<DAB5>ȫ©<C8AB><C2A9><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD>ʵ<EFBFBD>ֻ<EFBFBD><D6BB><EFBFBD><EFBFBD>ƴ<EFBFBD><C6B4><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<h2><a name="bugs" id="bugs"></a><EFBFBD><EFBFBD><EFBFBD>󱨸<EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
<blockquote>
<a href="http://bugs.sun.com/bugdatabase/index.jsp"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD></a> Web վ<><D5BE>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>еĴ<D0B5><C4B4>󱨸桢<F3B1A8B8><EFBFBD><E1BDBB><EFBFBD>Լ<EFBFBD><D4BC>Ĵ<EFBFBD><C4B4>󱨸<EFBFBD><F3B1A8B8>Լ<EFBFBD>֪ͨ<CDA8><D6AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϣ<EFBFBD><CFA3><EFBFBD>޸<EFBFBD><DEB8><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫֱ<D2AA><D6B1><EFBFBD><EFBFBD><E1BDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܣ<EFBFBD><DCA3><EFBFBD><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD>±<EFBFBD><C2B1><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
<a href=
"http://bugs.sun.com/services/bugreport/index.jsp">http://bugs.sun.com/services/bugreport/index.jsp</a>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <a href=
"http://java.sun.com/docs/forms/sendusmail.html">Java SE <20>ĵ<EFBFBD>С<EFBFBD><D0A1></a><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <a href=
"http://developers.sun.com/contact/index.jsp">Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD>ַ</a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
<b>ע</b> - <20>벻Ҫͨ<D2AA><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǵĿ<C7B5><C4BF><EFBFBD><EFBFBD>Ŷ<EFBFBD>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD>֡<EFBFBD><D6A1>йؿ<D0B9><D8BF><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD>֧<EFBFBD>ַ<EFBFBD>ʽ<EFBFBD><CABD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> Java <20><><EFBFBD><EFBFBD> Web վ<><D5BE><EFBFBD>ϵ<EFBFBD><a href=
"http://java.sun.com/developer/support/">֧<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD><EFBFBD>
</blockquote>
<h2><a name="contents" id="contents"></a>JDK<sup><font size= "-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h2>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK<sup><font size="-2">TM</font></sup> <20>е<EFBFBD><D0B5>ļ<EFBFBD><C4BC><EFBFBD>Ŀ¼<C4BF><C2BC><EFBFBD>й<EFBFBD><D0B9><EFBFBD>Щ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ŀ¼<C4BF><C2BC><EFBFBD><EFBFBD>ϸ<EFBFBD><CFB8>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD><CEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽ̨<C6BD><CCA8> Java SE <20>ĵ<EFBFBD><C4B5><EFBFBD> <a href=
"http://java.sun.com/javase/6/docs/technotes/tools/index.html#general">JDK <20>ļ<EFBFBD><C4BC></a><EFBFBD><EFBFBD><EFBFBD>֡<EFBFBD>
</blockquote>
<dl>
<dd>
<dl>
<dt><b><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>bin/</code> <20><>Ŀ¼<C4BF>У<EFBFBD>ָ<EFBFBD><D6B8><EFBFBD>ߺ<EFBFBD>ʵ<EFBFBD>ó<EFBFBD><C3B3>򣬿ɰ<F2A3ACBF><C9B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ִ<EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>Ժͱ<D4BA><CDB1><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>д<EFBFBD>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>ϸ<EFBFBD><CFB8>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD><a href=
"http://java.sun.com/javase/6/docs/technotes/tools/index.html"><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD></a><EFBFBD><EFBFBD><br> <br></dd>
<dt><b><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>jre/</code> <20><>Ŀ¼<C4BF>У<EFBFBD><D0A3><EFBFBD> JDK ʹ<>õ<EFBFBD> Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>) <20><>ʵ<EFBFBD>֡<EFBFBD>JRE <20><><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (JVM<sup><font size=
"-2">TM</font></sup>)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD><D6A7>ִ<EFBFBD><D6B4><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>д<EFBFBD>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><br> <br></dd>
<dt><b><EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>lib/</code> <20><>Ŀ¼<C4BF>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD><D6A7><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><br> <br></dd>
<dt><b><EFBFBD><EFBFBD>ʾ applet <20><>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>demo/</code> <20><>Ŀ¼<C4BF>У<EFBFBD>Java<sup><font size="-2">TM</font></sup> ƽ̨<C6BD>ı<EFBFBD><C4B1><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EBA3A9><EFBFBD><EFBFBD>Щʾ<D0A9><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9> Swing <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD> Java<sup><font size="-2">TM</font></sup> ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵ<EFBFBD><EFBFBD><E1B9B9>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><br> <br></dd>
<dt><b><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>sample</code> <20><>Ŀ¼<C4BF>У<EFBFBD>ijЩ Java API <20>ı<EFBFBD><C4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EBA3A9><br> <br></dd>
<dt><b>C ͷ<>ļ<EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>include/</code> <20><>Ŀ¼<C4BF>У<EFBFBD>֧<EFBFBD><D6A7>ʹ<EFBFBD><CAB9> <a href=
"http://java.sun.com/javase/6/docs/technotes/guides/jni/">Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a><EFBFBD><EFBFBD><a href=
"http://java.sun.com/javase/6/docs/technotes/guides/jvmti/">JVM<sup><font size="-2">TM</font></sup> <20><><EFBFBD>߽<EFBFBD><DFBD><EFBFBD></a><EFBFBD>Լ<EFBFBD> Java<sup><font size="-2">TM</font></sup> ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܽ<EFBFBD><DCBD>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̵<EFBFBD>ͷ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><br> <br></dd>
<dt><b>Դ<EFBFBD><EFBFBD><EFBFBD><EFBFBD></b></dt>
<dd><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD> <code>src.zip</code> <20>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD> Java <20><><EFBFBD><EFBFBD> API <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>java.*<2A><>javax.* <20><>ijЩ org.* <20><><EFBFBD><EFBFBD>Դ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> com.sun.* <20><><EFBFBD><EFBFBD>Դ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ο<EFBFBD><CEBF><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧϰ<D1A7><CFB0>ʹ<EFBFBD><CAB9> Java<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԡ<EFBFBD><D4A1><EFBFBD>Щ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ض<EFBFBD><D8B6><EFBFBD>ƽ̨<C6BD><CCA8>ʵ<EFBFBD>ִ<EFBFBD><D6B4><EFBFBD>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⡣Ҫ<E2A1A3><D2AA><EFBFBD><EFBFBD>Щ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>н<EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>õ<EFBFBD> zip ʵ<>ó<EFBFBD><C3B3>򣻻<EFBFBD><F2A3BBBB><EFBFBD>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>λ<EFBFBD><CEBB> JDK <20><> <code>bin/</code> Ŀ¼<C4BF>е<EFBFBD> Jar ʵ<>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD><br><br><code>jar xvf src.zip</code></dd>
</dl>
</dd>
</dl>
<h2><a name="jre" id="jre"></a>Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)</h2>
<blockquote>
Java<sup><font size="-2">TM</font></sup> Runtime Environment (JRE<sup><font size="-2">TM</font></sup>) <20><>һ<EFBFBD><D2BB><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>صIJ<D8B5>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD><a href=
"http://java.sun.com/javase/downloads/index.jsp"><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Web վ<><D5BE></a><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
ͨ<EFBFBD><EFBFBD> JRE<52><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>д<EFBFBD><D0B4>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD>ƣ<EFBFBD>JRE <20><><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (JVM<sup><font size=
"-2">TM</font></sup>)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size=
"-2">TM</font></sup> ƽ̨ API <20><><EFBFBD>༰֧<E0BCB0><D6A7><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD> JDK <20><>ͬ<EFBFBD><CDAC><EFBFBD>ǣ<EFBFBD><C7A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE <20><><EFBFBD><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EEA3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؽ<EFBFBD> JRE <20><>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٷַ<D9B7><D6B7><EFBFBD>ʹ<EFBFBD><CAB9> JDK <20><><EFBFBD><EFBFBD>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD><EFBFBD>󣬿ɽ<F3A3ACBF><C9BD><EFBFBD><EFBFBD><EFBFBD> JRE һ<><D2BB><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><D0A3>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD>п<EFBFBD><D0BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> ƽ̨<C6BD><CCA8>
</blockquote>
<h2><a name="redistribution" id="redistribution"></a><EFBFBD>ٷַ<EFBFBD></h2>
<blockquote>
<blockquote>
<hr>
ע - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٷַ<D9B7><D6B7><EFBFBD><EFBFBD>԰<EFBFBD><D4B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD>а<D0B0><E6B1BE>
<hr>
</blockquote>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Э<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƺ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ը<EFBFBD><EFBFBD>ƺͷַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶΪ&ldquo;<EFBFBD><EFBFBD><EFBFBD>ٷַ<EFBFBD>&rdquo;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣<EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
<ol type="a">
<li><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>طַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>޸ģ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> applet <20><>Ӧ<EFBFBD>ó<EFBFBD><C3B3>򣨳<EFBFBD><F2A3A8B3>򣩵<EFBFBD>һ<EFBFBD><D2BB><EFBFBD>ִ<EFBFBD><D6B4><EFBFBD><EFBFBD><EFBFBD></li>
<li><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD>ܣ<EFBFBD></li>
<li><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java <20><><EFBFBD><EFBFBD>ͨ<EFBFBD><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD><CDB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD></li>
<li><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></li>
<li><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></li>
<li><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ı<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>а<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD>ר<EFBFBD><EFBFBD>ͼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></li>
<li><EFBFBD><EFBFBD>ֻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ּ<EFBFBD>ڱ<EFBFBD><EFBFBD><EFBFBD> Sun <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Э<EFBFBD><D0AD><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></li>
<li><EFBFBD><EFBFBD>ͬ<EFBFBD><EFBFBD>ά<EFBFBD><EFBFBD><EFBFBD>ͱ<EFBFBD><EFBFBD><EFBFBD> Sun <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A3AC>ʹ<EFBFBD><CAB9><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>û<EFBFBD><C3BB>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2B3A5><EFBFBD><EFBFBD><EFBFBD>ϻ<EFBFBD><CFBB><EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD><C2B5><EFBFBD><E2B3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸѡ<CFB7>ծ<EFBFBD><D5AE><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѣ<EFBFBD><D1A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʦ<EFBFBD>ѣ<EFBFBD><D1A3><EFBFBD></li>
</ol>
</blockquote>
<blockquote>
<EFBFBD>˴<EFBFBD>ʹ<EFBFBD>õ<EFBFBD>&ldquo;<EFBFBD><EFBFBD>Ӧ<EFBFBD><EFBFBD>&rdquo;һ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>ɺͷַ<CDB7><D6B7>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6> (ISV)<29><>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD>Ӧ<EFBFBD>̱<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java Development Kit <20><><EFBFBD><EFBFBD><EFBFBD>ƴ<EFBFBD><C6B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Э<EFBFBD><D0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<h3><EFBFBD><EFBFBD>Ҫ<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>ļ<EFBFBD></h3>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20><><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><E0A3BA>Ҫ<EFBFBD>ĺͿ<C4BA>ѡ<EFBFBD>ġ<EFBFBD><C4A1><EFBFBD>ѡ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>Բ<EFBFBD><D4B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK <20><><EFBFBD>ٷַ<D9B7><D6B7>У<EFBFBD><D0A3>ɹ<EFBFBD>Ӧ<EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD>г<EFBFBD><EFBFBD>˿<EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK <20><><EFBFBD>ٷַ<D9B7><D6B7><EFBFBD>ʡ<EFBFBD>Ե<EFBFBD><D4B5>ļ<EFBFBD><C4BC><EFBFBD>Ŀ¼<C4BF><C2BC>û<EFBFBD><C3BB><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>ѡ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK <20><><EFBFBD>ٷַ<D9B7><D6B7>С<EFBFBD>
</blockquote>
<h3><EFBFBD><EFBFBD>ѡ<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD>Ŀ¼</h3>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><EFBFBD>ٷַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD>ļ<EFBFBD>λ<EFBFBD><EFBFBD> jdk1.6.0_&lt;<EFBFBD>&gt; Ŀ¼<C4BF>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD> &lt;<EFBFBD>&gt; <20><><EFBFBD><EFBFBD><EFBFBD>µİ汾<C4B0>š<EFBFBD><C5A1><EFBFBD><EFBFBD><EFBFBD>ʾ Solaris<sup><font size="-2">TM</font></sup> <20><> Linux <20><><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>ͷָ<CDB7><D6B8><EFBFBD><EFBFBD><EFBFBD>Windows <20><>ִ<EFBFBD><D6B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD> &quot;.exe&quot; <20><>׺<EFBFBD><D7BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ų<EFBFBD><C5B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD> <code>_g</code> <20><><EFBFBD><EFBFBD>Ӧ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>ų<EFBFBD><C5B3>Ŀ<EFBFBD>ִ<EFBFBD><D6B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ӧ<EFBFBD>ų<EFBFBD><C5B3><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD>ֲ<EFBFBD>ҳ<EFBFBD><D2B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD><D0B3><EFBFBD><EFBFBD><EFBFBD> <code>bin/</code> <20><>ͷ<EFBFBD><CDB7>·<EFBFBD><C2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3> Linux<75><78><EFBFBD><EFBFBD>
</blockquote>
<dl>
<dd>
<dl>
<dt><code>jre/lib/charsets.jar</code></dt>
<dd><EFBFBD>ַ<EFBFBD>ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>jre/lib/ext/</code></dt>
<dd><code>sunjce_provider.jar</code> - SunJCE <20><> Java <20><><EFBFBD>ܷ<EFBFBD> API <20><EFBFBD><E1B9A9><br> <code>localedata.jar</code> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʽӢ<CABD><D3A2><EFBFBD><EFBFBD><EFBFBD>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<br> <code>ldapsec.jar</code> - <20><><EFBFBD><EFBFBD> LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1B9A9><EFBFBD><EFBFBD>֧<EFBFBD>ֵİ<D6B5>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><br> <code>dnsns.jar</code> - <20><><EFBFBD><EFBFBD> JNDI DNS <20><EFBFBD>ߵ<EFBFBD> InetAddress <20><>װ</dd>
<dt><code>bin/rmid</code> <20><> <code>jre/bin/rmid</code></dt>
<dd>Java RMI <20>ϵͳ<CFB5>ػ<EFBFBD><D8BB><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/rmiregistry</code> <20><> <code>jre/bin/rmiregistry</code></dt>
<dd>Java Զ<>̶<EFBFBD><CCB6><EFBFBD>ע<EFBFBD><D7A2><EFBFBD><EFBFBD></dd>
<dt><code>bin/tnameserv</code> <20><> <code>jre/bin/tnameserv</code></dt>
<dd>Java IDL <20><><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/keytool</code> <20><> <code>jre/bin/keytool</code></dt>
<dd><EFBFBD><EFBFBD>Կ<EFBFBD><EFBFBD>֤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/kinit</code> <20><> <code>jre/bin/kinit</code></dt>
<dd><EFBFBD><EFBFBD><EFBFBD>ڻ<EFBFBD>ȡ<EFBFBD>͸<EFBFBD><EFBFBD>ٻ<EFBFBD><EFBFBD><EFBFBD> Kerberos Ʊ֤<C6B1><D6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʊ֤</dd>
<dt><code>bin/klist</code> <20><> <code>jre/bin/klist</code></dt>
<dd>ƾ<EFBFBD>ݸ<EFBFBD><EFBFBD>ٻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Կ<EFBFBD><EFBFBD><EFBFBD>е<EFBFBD> Kerberos <20><>ʾ<EFBFBD><CABE>Ŀ</dd>
<dt><code>bin/ktab</code> <20><> <code>jre/bin/ktab</code></dt>
<dd>Kerberos <20><>Կ<EFBFBD><D4BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/policytool</code> <20><> <code>jre/bin/policytool</code></dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͹<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/orbd</code> <20><> <code>jre/bin/orbd</code></dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ػ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/servertool</code> <20><> <code>jre/bin/servertool</code></dt>
<dd>Java IDL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>bin/javaws</code><EFBFBD><EFBFBD><code>jre/bin/javaws</code><EFBFBD><EFBFBD><code>jre/lib/javaws/</code> <20><> <code>jre/lib/javaws.jar</code></dt>
<dd>Java Web Start</dd>
<dt><code>db/</code></dt>
<dd>Java<sup><font size="-2">TM</font></sup>DB<EFBFBD><EFBFBD>Sun Microsystems <20><> Apache Derby <20><><EFBFBD>ݿ⼼<DDBF><E2BCBC><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD></dd>
<dt><code>demo/</code></dt>
<dd><EFBFBD><EFBFBD>ʾ applet <20><>Ӧ<EFBFBD>ó<EFBFBD><C3B3><EFBFBD></dd>
<dt><code>sample/</code></dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>src.zip</code></dt>
<dd>Դ<EFBFBD>ļ<EFBFBD><EFBFBD></dd>
</dl>
</dd>
</dl>
<h3><a name="redistributablejdkfiles" id=
"redistributablejdkfiles"></a><EFBFBD><EFBFBD><EFBFBD>ٷַ<EFBFBD><EFBFBD><EFBFBD> JDK<sup><font size=
"-2">TM</font></sup> <20>ļ<EFBFBD></h3>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD><EFBFBD><EFBFBD> JDK <20>ļ<EFBFBD><C4BC><EFBFBD>Ŀ¼<C4BF><C2BC><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD>ٷַ<D9B7> Java<sup><font size=
"-2">TM</font></sup> Runtime Environment (JRE<sup><font size=
"-2">TM</font></sup>) ʱ<><CAB1><EFBFBD><EFBFBD><EFBFBD>ܻὫ<DCBB><E1BDAB>Щ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ŀ¼<C4BF><EFBFBD><E6B8BD><EFBFBD>С<EFBFBD><D0A1><EFBFBD>Щ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD>ٷַ<D9B7><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JRE һ<><D2BB><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK <20>Ķ<EFBFBD><C4B6><EFBFBD>Ŀ¼<C4BF><C2BC><EFBFBD>Եġ<D4B5><C4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><CEBA>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD>Ŀ<EFBFBD>ִ<EFBFBD><D6B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD>ֲ<EFBFBD>ҳ<EFBFBD><D2B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD><D0B3><EFBFBD><EFBFBD><EFBFBD> <code>bin/</code> <20><>ͷ<EFBFBD><CDB7>·<EFBFBD><C2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3> Linux<75><78><EFBFBD><EFBFBD>
</blockquote>
<dl>
<dd>
<dl>
<dt><code>jre/lib/cmm/PYCC.pf</code></dt>
<dd><EFBFBD><EFBFBD>ɫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> PYCC <20><>ɫ<EFBFBD><C9AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>ɫ<EFBFBD><C9AB><EFBFBD><EFBFBD>֮<EFBFBD><D6AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><D7AA>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Ҫ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD></dd>
<dt>λ<EFBFBD><EFBFBD> <code>jre/lib/fonts/</code> Ŀ¼<C4BF>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD> <code>.ttf</code> <20><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD></dt>
<dd><EFBFBD><EFBFBD>ע<EFBFBD>⣬JRE <20><><EFBFBD>Ѱ<EFBFBD><D1B0><EFBFBD> LucidaSansRegular.ttf <20><><EFBFBD><EFBFBD><E5A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> JDK <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD></dd>
<dt><code>jre/lib/audio/soundbank.gm</code></dt>
<dd>JDK <20>о<EFBFBD><D0BE>и<EFBFBD> MIDI <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2A3AC>Ϊ<EFBFBD>˼<EFBFBD>С JRE <20><><EFBFBD>ذ<EFBFBD><D8B0><EFBFBD>ռ<EFBFBD>Ŀռ<D5BC>Ѵ<EFBFBD> JRE <20><>ɾ<EFBFBD><C9BE><EFBFBD>ÿ⡣<C3BF><E2A1A3><EFBFBD>ǣ<EFBFBD><C7A3><EFBFBD><EFBFBD><EFBFBD> MIDI <20>طţ<D8B7><C5A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC>DZ<EFBFBD><C7B1><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٷַ<D9B7> JRE ʱ<><CAB1><EFBFBD>ܽ<EFBFBD> JDK <20><> <code>soundbank.gm</code> <20>ļ<EFBFBD><C4BC><EFBFBD><E6B8BD><EFBFBD>У<EFBFBD><D0A3>ɹ<EFBFBD>Ӧ<EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɴ<EFBFBD> Java Sound Web վ<><D5BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɼ<EFBFBD>ǿ<EFBFBD><C7BF> MIDI <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6B1BE><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD><a href=
"http://java.sun.com/products/java-media/sound/">http://java.sun.com/products/java-media/sound/</a><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٷַ<EFBFBD> JRE ʱ<><CAB1><EFBFBD><EFBFBD><EFBFBD>ܽ<EFBFBD><DCBD><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6B8BD><EFBFBD>С<EFBFBD></dd>
<dt>javac <20>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>ɣ<EFBFBD></dt>
<dd><code>bin/javac</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3> Linux]<br> <code>bin/sparcv9/javac</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3>SPARC(R) ƽ̨<C6BD>棩]<br> <code>bin/amd64/javac</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ (AMD)]<br> <code>bin/javac.exe</code> [Microsoft Windows]<br> <code>lib/tools.jar</code> [<5B><><EFBFBD><EFBFBD>ƽ̨]</dd>
<dt>ע<EFBFBD>ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɣ<EFBFBD></dt>
<dd><code>bin/apt</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3> Linux]<br> <code>bin/sparcv9/apt</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3>SPARC(R) ƽ̨<C6BD>棩]<br> <code>bin/amd64/apt</code> [Solaris<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD>ϵͳ (AMD)]<br> <code>bin/apt.exe</code> [Microsoft Windows]</dd>
<dt><code>lib/jconsole.jar</code></dt>
<dd>Jconsole Ӧ<>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD></dd>
<dt><code>jre\bin\server\</code></dt>
<dd><EFBFBD><EFBFBD> Microsoft Windows ƽ̨<C6BD>ϣ<EFBFBD>JDK ͬʱ<CDAC><CAB1><EFBFBD><EFBFBD> Java HotSpot<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> VM <20><> Java HotSpot<sup><font size="-2">TM</font></sup> <20>ͻ<EFBFBD><CDBB><EFBFBD> VM<56><4D><EFBFBD><EFBFBD><EFBFBD>ǣ<EFBFBD>Microsoft Windows ƽ̨<C6BD>ϵ<EFBFBD> JRE <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java HotSpot<sup><font size="-2">TM</font></sup> <20>ͻ<EFBFBD><CDBB><EFBFBD> VM<56><4D><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>ϣ<EFBFBD><CFA3><EFBFBD><EFBFBD> JRE һ<><D2BB>ʹ<EFBFBD><CAB9> Java HotSpot<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> VM<56><4D><EFBFBD><EFBFBD><EFBFBD>Խ<EFBFBD> JDK <20><> <code>jre\bin\server</code> <20>ļ<EFBFBD><C4BC>и<EFBFBD><D0B8>Ƶ<EFBFBD> JRE <20><> <code>bin\server</code> Ŀ¼<C4BF>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD>̿ɽ<CCBF> Java HotSpot<sup><font size="-2">TM</font></sup> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> VM <20><> JRE һ<><D2BB><EFBFBD>ٷַ<D9B7><D6B7><EFBFBD></dd>
</dl>
</dd>
</dl>
<h3><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD>ǿ<EFBFBD><EFBFBD> Java <20><><EFBFBD>ܷ<EFBFBD><DCB7><EFBFBD>չ</h3>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ijЩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڽ<EFBFBD><DABD>ڿ<EFBFBD><DABF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƣ<EFBFBD><C6A3><EFBFBD><EFBFBD><EFBFBD> JDK <20><> JRE <20><EFBFBD><E6B8BD> Java <20><><EFBFBD>ܷ<EFBFBD><DCB7><EFBFBD>չ (JCE) <20><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>ǿ<EFBFBD><C7BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޵ļ<DEB5><C4BC>ܷ<EFBFBD><DCB7><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD>ļ<EFBFBD>λ<EFBFBD><CEBB><br> <br> <code>&lt;java-home&gt;/lib/security/local_policy.jar</code><br> <code>&lt;java-home&gt;/lib/security/US_export_policy.jar</code><br> <br><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>&lt;java-home&gt;</code> <20><> JDK <20><> <code>jre</code> Ŀ¼<C4BF><C2BC> JRE <20>Ķ<EFBFBD><C4B6><EFBFBD>Ŀ¼<C4BF><C2BC>
</blockquote>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щλ<EFBFBD>ڷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĺ<EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD> JDK Web վ<><D5BE><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>Լ<EFBFBD><D4BC>ܼ<EFBFBD><DCBC><EFBFBD><EFBFBD><EFBFBD>ǿ<EFBFBD><C7BF>ָ<EFBFBD><D6B8><EFBFBD>κ<EFBFBD><CEBA><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD>޼<EFBFBD>ǿ<EFBFBD><C7BF><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>λ<EFBFBD>ڷ<EFBFBD><DAB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD>ǿ<EFBFBD><C7BF><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD>ļ<EFBFBD><C4BC>滻ǿ<E6BBBB><C7BF><EFBFBD><EFBFBD><EFBFBD>޵<EFBFBD> jar <20>ļ<EFBFBD><C4BC><EFBFBD>
</blockquote>
<h3>Cacerts ֤<><D6A4><EFBFBD>ļ<EFBFBD></h3>
<blockquote>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD>õ<EFBFBD> Java SE ֤<><D6A4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӻ<EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD><EFBFBD> CA ֤<><D6A4>
</blockquote>
<blockquote>
<code>&lt;java-home&gt;/lib/security/cacerts</code>
</blockquote>
<blockquote>
<EFBFBD>й<EFBFBD><EFBFBD><EFBFBD>ϸ<EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> keytool <20>ĵ<EFBFBD><C4B5>е<EFBFBD> <a href=
"http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">cacerts ֤<><D6A4><EFBFBD>ļ<EFBFBD></a>һ<EFBFBD>ڡ<EFBFBD>
</blockquote>
<h2><a name="endorsed" id="endorsed"></a>Java ǩ<><C7A9><EFBFBD><EFBFBD>׼<EFBFBD><D7BC><EFBFBD>ǻ<EFBFBD><C7BB><EFBFBD></h2>
<blockquote>
<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java ƽ̨<C6BD><CCA8><EFBFBD>Ա㲢<D4B1><E3B2A2><EFBFBD><EFBFBD> Java Community Process <font size="-2"><sup>SM</sup></font> (JCP<font size=
"-2"><sup>SM</sup></font> <a href=
"http://www.jcp.org/">http://www.jcp.org/</a>) ֮<><EFBFBD><E2B4B4><EFBFBD>Ľ<EFBFBD><C4BD>°汾<C2B0>ı<EFBFBD>׼<EFBFBD><D7BC><i>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>׼</i><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򽫸<EFBFBD>ƽ̨<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD>ü<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD>Ľ<EFBFBD><EFBFBD>µĶ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><i><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></i><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</blockquote>
<blockquote>
<i>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>׼<EFBFBD><EFBFBD><EFBFBD>ǻ<EFBFBD><EFBFBD><EFBFBD></i><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD>ִ<EFBFBD><EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>׼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD>°汾<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> Java ƽ̨<C6BD>С<EFBFBD>
</blockquote>
<blockquote>
<EFBFBD>й<EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>׼<EFBFBD><EFBFBD><EFBFBD>ǻ<EFBFBD><EFBFBD>Ƶ<EFBFBD><EFBFBD><EFBFBD>ϸ<EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD>ƽ<EFBFBD><EFBFBD>и<EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>õ<EFBFBD><EFBFBD><EFBFBD>ƽ̨<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD>
</blockquote>
<blockquote>
<a href=
"http://java.sun.com/javase/6/docs/technotes/guides/standards/">http://java.sun.com/javase/6/docs/technotes/guides/standards/</a>
</blockquote>
<h2><a name="webpages" id="webpages"></a>Web ҳ</h2>
<blockquote>
<EFBFBD>й<EFBFBD><EFBFBD><EFBFBD>ϸ<EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ά<EFBFBD><EFBFBD><EFBFBD>ϵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Sun Microsystems ҳ<>
</blockquote>
<dl>
<dd>
<dl>
<dt><a href="http://java.sun.com/">http://java.sun.com/</a></dt>
<dd>Java <20><><EFBFBD><EFBFBD> Web վ<><EFBFBD><E3A3AC><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD> Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>ź<EFBFBD><C5BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ե<EFBFBD><D4B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2></dd>
<dt><a href=
"http://java.sun.com/docs">http://java.sun.com/docs</a></dt>
<dd>Java<sup><font size="-2">TM</font></sup> ƽ̨<C6BD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD>顢Java <20>̳<EFBFBD><CCB3>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD></dd>
<dt><a href=
"http://developer.java.sun.com/">http://developer.java.sun.com</a></dt>
<dd><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߷<EFBFBD><EFBFBD><EFBFBD> Web վ<><EFBFBD><E3A3A8>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD><E1A3A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>ź<EFBFBD><C5BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD><D4A3>û<EFBFBD><C3BB><EFBFBD>̳<EFBFBD><CCB3>֧<EFBFBD><D6A7><EFBFBD><EFBFBD>Ϣ<EFBFBD>ȵȡ<C8B5></dd>
<dt><a href=
"http://java.sun.com/products/">http://java.sun.com/products/</a></dt>
<dd>Java <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ<EFBFBD><C6B7> API</dd>
</dl>
</dd>
</dl>
<hr>
<p><font size="2">Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) <20><> Sun Microsystems<sup><font size="-2">TM</font></sup>, Inc. <20>IJ<EFBFBD>Ʒ<EFBFBD><C6B7><br> <br> <20><>Ȩ<EFBFBD><C8A8><EFBFBD><EFBFBD> (C) 2007 Sun Microsystems, Inc.<br> 4150 Network Circle, Santa Clara, California 95054, U.S.A.<br> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȩ<EFBFBD><C8A8><EFBFBD><EFBFBD></font></p>
</body>
</html>

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,523 @@
/*
* @(#)classfile_constants.h 1.4 05/11/17
*
* Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*/
#ifndef CLASSFILE_CONSTANTS_H
#define CLASSFILE_CONSTANTS_H
#ifdef __cplusplus
extern "C" {
#endif
/* Flags */
enum {
JVM_ACC_PUBLIC = 0x0001,
JVM_ACC_PRIVATE = 0x0002,
JVM_ACC_PROTECTED = 0x0004,
JVM_ACC_STATIC = 0x0008,
JVM_ACC_FINAL = 0x0010,
JVM_ACC_SYNCHRONIZED = 0x0020,
JVM_ACC_SUPER = 0x0020,
JVM_ACC_VOLATILE = 0x0040,
JVM_ACC_BRIDGE = 0x0040,
JVM_ACC_TRANSIENT = 0x0080,
JVM_ACC_VARARGS = 0x0080,
JVM_ACC_NATIVE = 0x0100,
JVM_ACC_INTERFACE = 0x0200,
JVM_ACC_ABSTRACT = 0x0400,
JVM_ACC_STRICT = 0x0800,
JVM_ACC_SYNTHETIC = 0x1000,
JVM_ACC_ANNOTATION = 0x2000,
JVM_ACC_ENUM = 0x4000
};
/* Used in newarray instruction. */
enum {
JVM_T_BOOLEAN = 4,
JVM_T_CHAR = 5,
JVM_T_FLOAT = 6,
JVM_T_DOUBLE = 7,
JVM_T_BYTE = 8,
JVM_T_SHORT = 9,
JVM_T_INT = 10,
JVM_T_LONG = 11
};
/* Constant Pool Entries */
enum {
JVM_CONSTANT_Utf8 = 1,
JVM_CONSTANT_Unicode = 2, /* unused */
JVM_CONSTANT_Integer = 3,
JVM_CONSTANT_Float = 4,
JVM_CONSTANT_Long = 5,
JVM_CONSTANT_Double = 6,
JVM_CONSTANT_Class = 7,
JVM_CONSTANT_String = 8,
JVM_CONSTANT_Fieldref = 9,
JVM_CONSTANT_Methodref = 10,
JVM_CONSTANT_InterfaceMethodref = 11,
JVM_CONSTANT_NameAndType = 12
};
/* StackMapTable type item numbers */
enum {
JVM_ITEM_Top = 0,
JVM_ITEM_Integer = 1,
JVM_ITEM_Float = 2,
JVM_ITEM_Double = 3,
JVM_ITEM_Long = 4,
JVM_ITEM_Null = 5,
JVM_ITEM_UninitializedThis = 6,
JVM_ITEM_Object = 7,
JVM_ITEM_Uninitialized = 8
};
/* Type signatures */
enum {
JVM_SIGNATURE_ARRAY = '[',
JVM_SIGNATURE_BYTE = 'B',
JVM_SIGNATURE_CHAR = 'C',
JVM_SIGNATURE_CLASS = 'L',
JVM_SIGNATURE_ENDCLASS = ';',
JVM_SIGNATURE_ENUM = 'E',
JVM_SIGNATURE_FLOAT = 'F',
JVM_SIGNATURE_DOUBLE = 'D',
JVM_SIGNATURE_FUNC = '(',
JVM_SIGNATURE_ENDFUNC = ')',
JVM_SIGNATURE_INT = 'I',
JVM_SIGNATURE_LONG = 'J',
JVM_SIGNATURE_SHORT = 'S',
JVM_SIGNATURE_VOID = 'V',
JVM_SIGNATURE_BOOLEAN = 'Z'
};
/* Opcodes */
enum {
JVM_OPC_nop = 0,
JVM_OPC_aconst_null = 1,
JVM_OPC_iconst_m1 = 2,
JVM_OPC_iconst_0 = 3,
JVM_OPC_iconst_1 = 4,
JVM_OPC_iconst_2 = 5,
JVM_OPC_iconst_3 = 6,
JVM_OPC_iconst_4 = 7,
JVM_OPC_iconst_5 = 8,
JVM_OPC_lconst_0 = 9,
JVM_OPC_lconst_1 = 10,
JVM_OPC_fconst_0 = 11,
JVM_OPC_fconst_1 = 12,
JVM_OPC_fconst_2 = 13,
JVM_OPC_dconst_0 = 14,
JVM_OPC_dconst_1 = 15,
JVM_OPC_bipush = 16,
JVM_OPC_sipush = 17,
JVM_OPC_ldc = 18,
JVM_OPC_ldc_w = 19,
JVM_OPC_ldc2_w = 20,
JVM_OPC_iload = 21,
JVM_OPC_lload = 22,
JVM_OPC_fload = 23,
JVM_OPC_dload = 24,
JVM_OPC_aload = 25,
JVM_OPC_iload_0 = 26,
JVM_OPC_iload_1 = 27,
JVM_OPC_iload_2 = 28,
JVM_OPC_iload_3 = 29,
JVM_OPC_lload_0 = 30,
JVM_OPC_lload_1 = 31,
JVM_OPC_lload_2 = 32,
JVM_OPC_lload_3 = 33,
JVM_OPC_fload_0 = 34,
JVM_OPC_fload_1 = 35,
JVM_OPC_fload_2 = 36,
JVM_OPC_fload_3 = 37,
JVM_OPC_dload_0 = 38,
JVM_OPC_dload_1 = 39,
JVM_OPC_dload_2 = 40,
JVM_OPC_dload_3 = 41,
JVM_OPC_aload_0 = 42,
JVM_OPC_aload_1 = 43,
JVM_OPC_aload_2 = 44,
JVM_OPC_aload_3 = 45,
JVM_OPC_iaload = 46,
JVM_OPC_laload = 47,
JVM_OPC_faload = 48,
JVM_OPC_daload = 49,
JVM_OPC_aaload = 50,
JVM_OPC_baload = 51,
JVM_OPC_caload = 52,
JVM_OPC_saload = 53,
JVM_OPC_istore = 54,
JVM_OPC_lstore = 55,
JVM_OPC_fstore = 56,
JVM_OPC_dstore = 57,
JVM_OPC_astore = 58,
JVM_OPC_istore_0 = 59,
JVM_OPC_istore_1 = 60,
JVM_OPC_istore_2 = 61,
JVM_OPC_istore_3 = 62,
JVM_OPC_lstore_0 = 63,
JVM_OPC_lstore_1 = 64,
JVM_OPC_lstore_2 = 65,
JVM_OPC_lstore_3 = 66,
JVM_OPC_fstore_0 = 67,
JVM_OPC_fstore_1 = 68,
JVM_OPC_fstore_2 = 69,
JVM_OPC_fstore_3 = 70,
JVM_OPC_dstore_0 = 71,
JVM_OPC_dstore_1 = 72,
JVM_OPC_dstore_2 = 73,
JVM_OPC_dstore_3 = 74,
JVM_OPC_astore_0 = 75,
JVM_OPC_astore_1 = 76,
JVM_OPC_astore_2 = 77,
JVM_OPC_astore_3 = 78,
JVM_OPC_iastore = 79,
JVM_OPC_lastore = 80,
JVM_OPC_fastore = 81,
JVM_OPC_dastore = 82,
JVM_OPC_aastore = 83,
JVM_OPC_bastore = 84,
JVM_OPC_castore = 85,
JVM_OPC_sastore = 86,
JVM_OPC_pop = 87,
JVM_OPC_pop2 = 88,
JVM_OPC_dup = 89,
JVM_OPC_dup_x1 = 90,
JVM_OPC_dup_x2 = 91,
JVM_OPC_dup2 = 92,
JVM_OPC_dup2_x1 = 93,
JVM_OPC_dup2_x2 = 94,
JVM_OPC_swap = 95,
JVM_OPC_iadd = 96,
JVM_OPC_ladd = 97,
JVM_OPC_fadd = 98,
JVM_OPC_dadd = 99,
JVM_OPC_isub = 100,
JVM_OPC_lsub = 101,
JVM_OPC_fsub = 102,
JVM_OPC_dsub = 103,
JVM_OPC_imul = 104,
JVM_OPC_lmul = 105,
JVM_OPC_fmul = 106,
JVM_OPC_dmul = 107,
JVM_OPC_idiv = 108,
JVM_OPC_ldiv = 109,
JVM_OPC_fdiv = 110,
JVM_OPC_ddiv = 111,
JVM_OPC_irem = 112,
JVM_OPC_lrem = 113,
JVM_OPC_frem = 114,
JVM_OPC_drem = 115,
JVM_OPC_ineg = 116,
JVM_OPC_lneg = 117,
JVM_OPC_fneg = 118,
JVM_OPC_dneg = 119,
JVM_OPC_ishl = 120,
JVM_OPC_lshl = 121,
JVM_OPC_ishr = 122,
JVM_OPC_lshr = 123,
JVM_OPC_iushr = 124,
JVM_OPC_lushr = 125,
JVM_OPC_iand = 126,
JVM_OPC_land = 127,
JVM_OPC_ior = 128,
JVM_OPC_lor = 129,
JVM_OPC_ixor = 130,
JVM_OPC_lxor = 131,
JVM_OPC_iinc = 132,
JVM_OPC_i2l = 133,
JVM_OPC_i2f = 134,
JVM_OPC_i2d = 135,
JVM_OPC_l2i = 136,
JVM_OPC_l2f = 137,
JVM_OPC_l2d = 138,
JVM_OPC_f2i = 139,
JVM_OPC_f2l = 140,
JVM_OPC_f2d = 141,
JVM_OPC_d2i = 142,
JVM_OPC_d2l = 143,
JVM_OPC_d2f = 144,
JVM_OPC_i2b = 145,
JVM_OPC_i2c = 146,
JVM_OPC_i2s = 147,
JVM_OPC_lcmp = 148,
JVM_OPC_fcmpl = 149,
JVM_OPC_fcmpg = 150,
JVM_OPC_dcmpl = 151,
JVM_OPC_dcmpg = 152,
JVM_OPC_ifeq = 153,
JVM_OPC_ifne = 154,
JVM_OPC_iflt = 155,
JVM_OPC_ifge = 156,
JVM_OPC_ifgt = 157,
JVM_OPC_ifle = 158,
JVM_OPC_if_icmpeq = 159,
JVM_OPC_if_icmpne = 160,
JVM_OPC_if_icmplt = 161,
JVM_OPC_if_icmpge = 162,
JVM_OPC_if_icmpgt = 163,
JVM_OPC_if_icmple = 164,
JVM_OPC_if_acmpeq = 165,
JVM_OPC_if_acmpne = 166,
JVM_OPC_goto = 167,
JVM_OPC_jsr = 168,
JVM_OPC_ret = 169,
JVM_OPC_tableswitch = 170,
JVM_OPC_lookupswitch = 171,
JVM_OPC_ireturn = 172,
JVM_OPC_lreturn = 173,
JVM_OPC_freturn = 174,
JVM_OPC_dreturn = 175,
JVM_OPC_areturn = 176,
JVM_OPC_return = 177,
JVM_OPC_getstatic = 178,
JVM_OPC_putstatic = 179,
JVM_OPC_getfield = 180,
JVM_OPC_putfield = 181,
JVM_OPC_invokevirtual = 182,
JVM_OPC_invokespecial = 183,
JVM_OPC_invokestatic = 184,
JVM_OPC_invokeinterface = 185,
JVM_OPC_xxxunusedxxx = 186,
JVM_OPC_new = 187,
JVM_OPC_newarray = 188,
JVM_OPC_anewarray = 189,
JVM_OPC_arraylength = 190,
JVM_OPC_athrow = 191,
JVM_OPC_checkcast = 192,
JVM_OPC_instanceof = 193,
JVM_OPC_monitorenter = 194,
JVM_OPC_monitorexit = 195,
JVM_OPC_wide = 196,
JVM_OPC_multianewarray = 197,
JVM_OPC_ifnull = 198,
JVM_OPC_ifnonnull = 199,
JVM_OPC_goto_w = 200,
JVM_OPC_jsr_w = 201,
JVM_OPC_MAX = 201
};
/* Opcode length initializer, use with something like:
* unsigned char opcode_length[JVM_OPC_MAX+1] = JVM_OPCODE_LENGTH_INITIALIZER;
*/
#define JVM_OPCODE_LENGTH_INITIALIZER { \
1, /* nop */ \
1, /* aconst_null */ \
1, /* iconst_m1 */ \
1, /* iconst_0 */ \
1, /* iconst_1 */ \
1, /* iconst_2 */ \
1, /* iconst_3 */ \
1, /* iconst_4 */ \
1, /* iconst_5 */ \
1, /* lconst_0 */ \
1, /* lconst_1 */ \
1, /* fconst_0 */ \
1, /* fconst_1 */ \
1, /* fconst_2 */ \
1, /* dconst_0 */ \
1, /* dconst_1 */ \
2, /* bipush */ \
3, /* sipush */ \
2, /* ldc */ \
3, /* ldc_w */ \
3, /* ldc2_w */ \
2, /* iload */ \
2, /* lload */ \
2, /* fload */ \
2, /* dload */ \
2, /* aload */ \
1, /* iload_0 */ \
1, /* iload_1 */ \
1, /* iload_2 */ \
1, /* iload_3 */ \
1, /* lload_0 */ \
1, /* lload_1 */ \
1, /* lload_2 */ \
1, /* lload_3 */ \
1, /* fload_0 */ \
1, /* fload_1 */ \
1, /* fload_2 */ \
1, /* fload_3 */ \
1, /* dload_0 */ \
1, /* dload_1 */ \
1, /* dload_2 */ \
1, /* dload_3 */ \
1, /* aload_0 */ \
1, /* aload_1 */ \
1, /* aload_2 */ \
1, /* aload_3 */ \
1, /* iaload */ \
1, /* laload */ \
1, /* faload */ \
1, /* daload */ \
1, /* aaload */ \
1, /* baload */ \
1, /* caload */ \
1, /* saload */ \
2, /* istore */ \
2, /* lstore */ \
2, /* fstore */ \
2, /* dstore */ \
2, /* astore */ \
1, /* istore_0 */ \
1, /* istore_1 */ \
1, /* istore_2 */ \
1, /* istore_3 */ \
1, /* lstore_0 */ \
1, /* lstore_1 */ \
1, /* lstore_2 */ \
1, /* lstore_3 */ \
1, /* fstore_0 */ \
1, /* fstore_1 */ \
1, /* fstore_2 */ \
1, /* fstore_3 */ \
1, /* dstore_0 */ \
1, /* dstore_1 */ \
1, /* dstore_2 */ \
1, /* dstore_3 */ \
1, /* astore_0 */ \
1, /* astore_1 */ \
1, /* astore_2 */ \
1, /* astore_3 */ \
1, /* iastore */ \
1, /* lastore */ \
1, /* fastore */ \
1, /* dastore */ \
1, /* aastore */ \
1, /* bastore */ \
1, /* castore */ \
1, /* sastore */ \
1, /* pop */ \
1, /* pop2 */ \
1, /* dup */ \
1, /* dup_x1 */ \
1, /* dup_x2 */ \
1, /* dup2 */ \
1, /* dup2_x1 */ \
1, /* dup2_x2 */ \
1, /* swap */ \
1, /* iadd */ \
1, /* ladd */ \
1, /* fadd */ \
1, /* dadd */ \
1, /* isub */ \
1, /* lsub */ \
1, /* fsub */ \
1, /* dsub */ \
1, /* imul */ \
1, /* lmul */ \
1, /* fmul */ \
1, /* dmul */ \
1, /* idiv */ \
1, /* ldiv */ \
1, /* fdiv */ \
1, /* ddiv */ \
1, /* irem */ \
1, /* lrem */ \
1, /* frem */ \
1, /* drem */ \
1, /* ineg */ \
1, /* lneg */ \
1, /* fneg */ \
1, /* dneg */ \
1, /* ishl */ \
1, /* lshl */ \
1, /* ishr */ \
1, /* lshr */ \
1, /* iushr */ \
1, /* lushr */ \
1, /* iand */ \
1, /* land */ \
1, /* ior */ \
1, /* lor */ \
1, /* ixor */ \
1, /* lxor */ \
3, /* iinc */ \
1, /* i2l */ \
1, /* i2f */ \
1, /* i2d */ \
1, /* l2i */ \
1, /* l2f */ \
1, /* l2d */ \
1, /* f2i */ \
1, /* f2l */ \
1, /* f2d */ \
1, /* d2i */ \
1, /* d2l */ \
1, /* d2f */ \
1, /* i2b */ \
1, /* i2c */ \
1, /* i2s */ \
1, /* lcmp */ \
1, /* fcmpl */ \
1, /* fcmpg */ \
1, /* dcmpl */ \
1, /* dcmpg */ \
3, /* ifeq */ \
3, /* ifne */ \
3, /* iflt */ \
3, /* ifge */ \
3, /* ifgt */ \
3, /* ifle */ \
3, /* if_icmpeq */ \
3, /* if_icmpne */ \
3, /* if_icmplt */ \
3, /* if_icmpge */ \
3, /* if_icmpgt */ \
3, /* if_icmple */ \
3, /* if_acmpeq */ \
3, /* if_acmpne */ \
3, /* goto */ \
3, /* jsr */ \
2, /* ret */ \
99, /* tableswitch */ \
99, /* lookupswitch */ \
1, /* ireturn */ \
1, /* lreturn */ \
1, /* freturn */ \
1, /* dreturn */ \
1, /* areturn */ \
1, /* return */ \
3, /* getstatic */ \
3, /* putstatic */ \
3, /* getfield */ \
3, /* putfield */ \
3, /* invokevirtual */ \
3, /* invokespecial */ \
3, /* invokestatic */ \
5, /* invokeinterface */ \
0, /* xxxunusedxxx */ \
3, /* new */ \
2, /* newarray */ \
3, /* anewarray */ \
1, /* arraylength */ \
1, /* athrow */ \
3, /* checkcast */ \
3, /* instanceof */ \
1, /* monitorenter */ \
1, /* monitorexit */ \
0, /* wide */ \
4, /* multianewarray */ \
3, /* ifnull */ \
3, /* ifnonnull */ \
5, /* goto_w */ \
5 /* jsr_w */ \
}
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif /* CLASSFILE_CONSTANTS */

View File

@@ -0,0 +1,278 @@
/*
* @(#)jawt.h 1.11 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
#ifndef _JAVASOFT_JAWT_H_
#define _JAVASOFT_JAWT_H_
#include "jni.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* AWT native interface (new in JDK 1.3)
*
* The AWT native interface allows a native C or C++ application a means
* by which to access native structures in AWT. This is to facilitate moving
* legacy C and C++ applications to Java and to target the needs of the
* community who, at present, wish to do their own native rendering to canvases
* for performance reasons. Standard extensions such as Java3D also require a
* means to access the underlying native data structures of AWT.
*
* There may be future extensions to this API depending on demand.
*
* A VM does not have to implement this API in order to pass the JCK.
* It is recommended, however, that this API is implemented on VMs that support
* standard extensions, such as Java3D.
*
* Since this is a native API, any program which uses it cannot be considered
* 100% pure java.
*/
/*
* AWT Native Drawing Surface (JAWT_DrawingSurface).
*
* For each platform, there is a native drawing surface structure. This
* platform-specific structure can be found in jawt_md.h. It is recommended
* that additional platforms follow the same model. It is also recommended
* that VMs on Win32 and Solaris support the existing structures in jawt_md.h.
*
*******************
* EXAMPLE OF USAGE:
*******************
*
* In Win32, a programmer wishes to access the HWND of a canvas to perform
* native rendering into it. The programmer has declared the paint() method
* for their canvas subclass to be native:
*
*
* MyCanvas.java:
*
* import java.awt.*;
*
* public class MyCanvas extends Canvas {
*
* static {
* System.loadLibrary("mylib");
* }
*
* public native void paint(Graphics g);
* }
*
*
* myfile.c:
*
* #include "jawt_md.h"
* #include <assert.h>
*
* JNIEXPORT void JNICALL
* Java_MyCanvas_paint(JNIEnv* env, jobject canvas, jobject graphics)
* {
* JAWT awt;
* JAWT_DrawingSurface* ds;
* JAWT_DrawingSurfaceInfo* dsi;
* JAWT_Win32DrawingSurfaceInfo* dsi_win;
* jboolean result;
* jint lock;
*
* // Get the AWT
* awt.version = JAWT_VERSION_1_3;
* result = JAWT_GetAWT(env, &awt);
* assert(result != JNI_FALSE);
*
* // Get the drawing surface
* ds = awt.GetDrawingSurface(env, canvas);
* assert(ds != NULL);
*
* // Lock the drawing surface
* lock = ds->Lock(ds);
* assert((lock & JAWT_LOCK_ERROR) == 0);
*
* // Get the drawing surface info
* dsi = ds->GetDrawingSurfaceInfo(ds);
*
* // Get the platform-specific drawing info
* dsi_win = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;
*
* //////////////////////////////
* // !!! DO PAINTING HERE !!! //
* //////////////////////////////
*
* // Free the drawing surface info
* ds->FreeDrawingSurfaceInfo(dsi);
*
* // Unlock the drawing surface
* ds->Unlock(ds);
*
* // Free the drawing surface
* awt.FreeDrawingSurface(ds);
* }
*
*/
/*
* JAWT_Rectangle
* Structure for a native rectangle.
*/
typedef struct jawt_Rectangle {
jint x;
jint y;
jint width;
jint height;
} JAWT_Rectangle;
struct jawt_DrawingSurface;
/*
* JAWT_DrawingSurfaceInfo
* Structure for containing the underlying drawing information of a component.
*/
typedef struct jawt_DrawingSurfaceInfo {
/*
* Pointer to the platform-specific information. This can be safely
* cast to a JAWT_Win32DrawingSurfaceInfo on Windows or a
* JAWT_X11DrawingSurfaceInfo on Solaris. See jawt_md.h for details.
*/
void* platformInfo;
/* Cached pointer to the underlying drawing surface */
struct jawt_DrawingSurface* ds;
/* Bounding rectangle of the drawing surface */
JAWT_Rectangle bounds;
/* Number of rectangles in the clip */
jint clipSize;
/* Clip rectangle array */
JAWT_Rectangle* clip;
} JAWT_DrawingSurfaceInfo;
#define JAWT_LOCK_ERROR 0x00000001
#define JAWT_LOCK_CLIP_CHANGED 0x00000002
#define JAWT_LOCK_BOUNDS_CHANGED 0x00000004
#define JAWT_LOCK_SURFACE_CHANGED 0x00000008
/*
* JAWT_DrawingSurface
* Structure for containing the underlying drawing information of a component.
* All operations on a JAWT_DrawingSurface MUST be performed from the same
* thread as the call to GetDrawingSurface.
*/
typedef struct jawt_DrawingSurface {
/*
* Cached reference to the Java environment of the calling thread.
* If Lock(), Unlock(), GetDrawingSurfaceInfo() or
* FreeDrawingSurfaceInfo() are called from a different thread,
* this data member should be set before calling those functions.
*/
JNIEnv* env;
/* Cached reference to the target object */
jobject target;
/*
* Lock the surface of the target component for native rendering.
* When finished drawing, the surface must be unlocked with
* Unlock(). This function returns a bitmask with one or more of the
* following values:
*
* JAWT_LOCK_ERROR - When an error has occurred and the surface could not
* be locked.
*
* JAWT_LOCK_CLIP_CHANGED - When the clip region has changed.
*
* JAWT_LOCK_BOUNDS_CHANGED - When the bounds of the surface have changed.
*
* JAWT_LOCK_SURFACE_CHANGED - When the surface itself has changed
*/
jint (JNICALL *Lock)
(struct jawt_DrawingSurface* ds);
/*
* Get the drawing surface info.
* The value returned may be cached, but the values may change if
* additional calls to Lock() or Unlock() are made.
* Lock() must be called before this can return a valid value.
* Returns NULL if an error has occurred.
* When finished with the returned value, FreeDrawingSurfaceInfo must be
* called.
*/
JAWT_DrawingSurfaceInfo* (JNICALL *GetDrawingSurfaceInfo)
(struct jawt_DrawingSurface* ds);
/*
* Free the drawing surface info.
*/
void (JNICALL *FreeDrawingSurfaceInfo)
(JAWT_DrawingSurfaceInfo* dsi);
/*
* Unlock the drawing surface of the target component for native rendering.
*/
void (JNICALL *Unlock)
(struct jawt_DrawingSurface* ds);
} JAWT_DrawingSurface;
/*
* JAWT
* Structure for containing native AWT functions.
*/
typedef struct jawt {
/*
* Version of this structure. This must always be set before
* calling JAWT_GetAWT()
*/
jint version;
/*
* Return a drawing surface from a target jobject. This value
* may be cached.
* Returns NULL if an error has occurred.
* Target must be a java.awt.Component (should be a Canvas
* or Window for native rendering).
* FreeDrawingSurface() must be called when finished with the
* returned JAWT_DrawingSurface.
*/
JAWT_DrawingSurface* (JNICALL *GetDrawingSurface)
(JNIEnv* env, jobject target);
/*
* Free the drawing surface allocated in GetDrawingSurface.
*/
void (JNICALL *FreeDrawingSurface)
(JAWT_DrawingSurface* ds);
/*
* Since 1.4
* Locks the entire AWT for synchronization purposes
*/
void (JNICALL *Lock)(JNIEnv* env);
/*
* Since 1.4
* Unlocks the entire AWT for synchronization purposes
*/
void (JNICALL *Unlock)(JNIEnv* env);
/*
* Since 1.4
* Returns a reference to a java.awt.Component from a native
* platform handle. On Windows, this corresponds to an HWND;
* on Solaris and Linux, this is a Drawable. For other platforms,
* see the appropriate machine-dependent header file for a description.
* The reference returned by this function is a local
* reference that is only valid in this environment.
* This function returns a NULL reference if no component could be
* found with matching platform information.
*/
jobject (JNICALL *GetComponent)(JNIEnv* env, void* platformInfo);
} JAWT;
/*
* Get the AWT native structure. This function returns JNI_FALSE if
* an error occurs.
*/
_JNI_IMPORT_OR_EXPORT_
jboolean JNICALL JAWT_GetAWT(JNIEnv* env, JAWT* awt);
#define JAWT_VERSION_1_3 0x00010003
#define JAWT_VERSION_1_4 0x00010004
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !_JAVASOFT_JAWT_H_ */

View File

@@ -0,0 +1,237 @@
/*
* @(#)jdwpTransport.h 1.8 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* Java Debug Wire Protocol Transport Service Provider Interface.
*/
#ifndef JDWPTRANSPORT_H
#define JDWPTRANSPORT_H
#include "jni.h"
enum {
JDWPTRANSPORT_VERSION_1_0 = 0x00010000
};
#ifdef __cplusplus
extern "C" {
#endif
struct jdwpTransportNativeInterface_;
struct _jdwpTransportEnv;
#ifdef __cplusplus
typedef _jdwpTransportEnv jdwpTransportEnv;
#else
typedef const struct jdwpTransportNativeInterface_ *jdwpTransportEnv;
#endif /* __cplusplus */
/*
* Errors. Universal errors with JVMTI/JVMDI equivalents keep the
* values the same.
*/
typedef enum {
JDWPTRANSPORT_ERROR_NONE = 0,
JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT = 103,
JDWPTRANSPORT_ERROR_OUT_OF_MEMORY = 110,
JDWPTRANSPORT_ERROR_INTERNAL = 113,
JDWPTRANSPORT_ERROR_ILLEGAL_STATE = 201,
JDWPTRANSPORT_ERROR_IO_ERROR = 202,
JDWPTRANSPORT_ERROR_TIMEOUT = 203,
JDWPTRANSPORT_ERROR_MSG_NOT_AVAILABLE = 204
} jdwpTransportError;
/*
* Structure to define capabilities
*/
typedef struct {
unsigned int can_timeout_attach :1;
unsigned int can_timeout_accept :1;
unsigned int can_timeout_handshake :1;
unsigned int reserved3 :1;
unsigned int reserved4 :1;
unsigned int reserved5 :1;
unsigned int reserved6 :1;
unsigned int reserved7 :1;
unsigned int reserved8 :1;
unsigned int reserved9 :1;
unsigned int reserved10 :1;
unsigned int reserved11 :1;
unsigned int reserved12 :1;
unsigned int reserved13 :1;
unsigned int reserved14 :1;
unsigned int reserved15 :1;
} JDWPTransportCapabilities;
/*
* Structures to define packet layout.
*
* See: http://java.sun.com/j2se/1.5/docs/guide/jpda/jdwp-spec.html
*/
enum {
JDWPTRANSPORT_FLAGS_NONE = 0x0,
JDWPTRANSPORT_FLAGS_REPLY = 0x80
};
typedef struct {
jint len;
jint id;
jbyte flags;
jbyte cmdSet;
jbyte cmd;
jbyte *data;
} jdwpCmdPacket;
typedef struct {
jint len;
jint id;
jbyte flags;
jshort errorCode;
jbyte *data;
} jdwpReplyPacket;
typedef struct {
union {
jdwpCmdPacket cmd;
jdwpReplyPacket reply;
} type;
} jdwpPacket;
/*
* JDWP functions called by the transport.
*/
typedef struct jdwpTransportCallback {
void *(*alloc)(jint numBytes); /* Call this for all allocations */
void (*free)(void *buffer); /* Call this for all deallocations */
} jdwpTransportCallback;
typedef jint (JNICALL *jdwpTransport_OnLoad_t)(JavaVM *jvm,
jdwpTransportCallback *callback,
jint version,
jdwpTransportEnv** env);
/* Function Interface */
struct jdwpTransportNativeInterface_ {
/* 1 : RESERVED */
void *reserved1;
/* 2 : Get Capabilities */
jdwpTransportError (JNICALL *GetCapabilities)(jdwpTransportEnv* env,
JDWPTransportCapabilities *capabilities_ptr);
/* 3 : Attach */
jdwpTransportError (JNICALL *Attach)(jdwpTransportEnv* env,
const char* address,
jlong attach_timeout,
jlong handshake_timeout);
/* 4: StartListening */
jdwpTransportError (JNICALL *StartListening)(jdwpTransportEnv* env,
const char* address,
char** actual_address);
/* 5: StopListening */
jdwpTransportError (JNICALL *StopListening)(jdwpTransportEnv* env);
/* 6: Accept */
jdwpTransportError (JNICALL *Accept)(jdwpTransportEnv* env,
jlong accept_timeout,
jlong handshake_timeout);
/* 7: IsOpen */
jboolean (JNICALL *IsOpen)(jdwpTransportEnv* env);
/* 8: Close */
jdwpTransportError (JNICALL *Close)(jdwpTransportEnv* env);
/* 9: ReadPacket */
jdwpTransportError (JNICALL *ReadPacket)(jdwpTransportEnv* env,
jdwpPacket *pkt);
/* 10: Write Packet */
jdwpTransportError (JNICALL *WritePacket)(jdwpTransportEnv* env,
const jdwpPacket* pkt);
/* 11: GetLastError */
jdwpTransportError (JNICALL *GetLastError)(jdwpTransportEnv* env,
char** error);
};
/*
* Use inlined functions so that C++ code can use syntax such as
* env->Attach("mymachine:5000", 10*1000, 0);
*
* rather than using C's :-
*
* (*env)->Attach(env, "mymachine:5000", 10*1000, 0);
*/
struct _jdwpTransportEnv {
const struct jdwpTransportNativeInterface_ *functions;
#ifdef __cplusplus
jdwpTransportError GetCapabilities(JDWPTransportCapabilities *capabilities_ptr) {
return functions->GetCapabilities(this, capabilities_ptr);
}
jdwpTransportError Attach(const char* address, jlong attach_timeout,
jlong handshake_timeout) {
return functions->Attach(this, address, attach_timeout, handshake_timeout);
}
jdwpTransportError StartListening(const char* address,
char** actual_address) {
return functions->StartListening(this, address, actual_address);
}
jdwpTransportError StopListening(void) {
return functions->StopListening(this);
}
jdwpTransportError Accept(jlong accept_timeout, jlong handshake_timeout) {
return functions->Accept(this, accept_timeout, handshake_timeout);
}
jboolean IsOpen(void) {
return functions->IsOpen(this);
}
jdwpTransportError Close(void) {
return functions->Close(this);
}
jdwpTransportError ReadPacket(jdwpPacket *pkt) {
return functions->ReadPacket(this, pkt);
}
jdwpTransportError WritePacket(const jdwpPacket* pkt) {
return functions->WritePacket(this, pkt);
}
jdwpTransportError GetLastError(char** error) {
return functions->GetLastError(this, error);
}
#endif /* __cplusplus */
};
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif /* JDWPTRANSPORT_H */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,41 @@
/*
* @(#)jawt_md.h 1.8 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
#ifndef _JAVASOFT_JAWT_MD_H_
#define _JAVASOFT_JAWT_MD_H_
#include <windows.h>
#include "jawt.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Win32-specific declarations for AWT native interface.
* See notes in jawt.h for an example of use.
*/
typedef struct jawt_Win32DrawingSurfaceInfo {
/* Native window, DDB, or DIB handle */
union {
HWND hwnd;
HBITMAP hbitmap;
void* pbits;
};
/*
* This HDC should always be used instead of the HDC returned from
* BeginPaint() or any calls to GetDC().
*/
HDC hdc;
HPALETTE hpalette;
} JAWT_Win32DrawingSurfaceInfo;
#ifdef __cplusplus
}
#endif
#endif /* !_JAVASOFT_JAWT_MD_H_ */

View File

@@ -0,0 +1,19 @@
/*
* @(#)jni_md.h 1.15 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
#ifndef _JAVASOFT_JNI_MD_H_
#define _JAVASOFT_JNI_MD_H_
#define JNIEXPORT __declspec(dllexport)
#define JNIIMPORT __declspec(dllimport)
#define JNICALL __stdcall
typedef long jint;
typedef __int64 jlong;
typedef signed char jbyte;
#endif /* !_JAVASOFT_JNI_MD_H_ */

View File

@@ -0,0 +1,52 @@
Copyright <20> 2007 Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, U.S.A. All
rights reserved. U.S.
Government Rights - Commercial software. Government users
are subject to the Sun Microsystems, Inc. standard license
agreement and applicable provisions of the FAR and its
supplements. Use is subject to license terms. This
distribution may include materials developed by third
parties. Sun, Sun Microsystems, the Sun logo, Java, Jini,
Solaris and J2SE are trademarks or registered trademarks of
Sun Microsystems, Inc. in the U.S. and other
countries. This product is covered and controlled by U.S.
Export Control laws and may be subject to the export or
import laws in other countries. Nuclear, missile, chemical
biological weapons or nuclear maritime end uses or end
users, whether direct or indirect, are strictly prohibited.
Export or reexport to countries subject to U.S.
embargo or to entities identified on U.S. export exclusion
lists, including, but not limited to, the denied persons and
specially designated nationals lists is strictly prohibited.
Copyright <20> 2007 Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, Etats-Unis.
Tous droits r<>serv<72>s.L'utilisation est soumise aux termes du
contrat de licence.
Cette distribution peut comprendre des
composants d<>velopp<70>s par des tierces parties.Sun, Sun
Microsystems, le logo Sun, Java, Jini, Solaris et J2SE sont
des marques de fabrique ou des marques d<>pos<6F>es de Sun
Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Ce
produit est soumis <20> la l<>gislation am<61>ricaine en mati<74>re de
contr<EFBFBD>le des exportations et peut <20>tre soumis <20> la
r<EFBFBD>glementation en vigueur dans d'autres pays dans le domaine
des exportations et importations. Les utilisations, ou
utilisateurs finaux, pour des armes nucl<63>aires, des missiles,
des armes biologiques et chimiques ou du nucl<63>aire maritime,
directement ou indirectement, sont strictement interdites.
Les exportations ou r<>exportations vers les pays sous
embargo am<61>ricain, ou vers des entit<69>s figurant sur les
listes d'exclusion d'exportation am<61>ricaines, y compris,
mais de mani<6E>re non exhaustive, la liste de personnes qui
font objet d'un ordre de ne pas participer, d'une fa<66>on
directe ou indirecte, aux exportations des produits ou des
services qui sont r<>gis par la l<>gislation am<61>ricaine en
mati<EFBFBD>re de contr<74>le des exportations et la liste de
ressortissants sp<73>cifiquement d<>sign<67>s, sont rigoureusement
interdites.

View File

@@ -0,0 +1,235 @@
Sun Microsystems, Inc. Binary Code License Agreement
for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6
SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE
SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION
THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY
CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS
(COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT
CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU
ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY
SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE
AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE
TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE
AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT
CONTINUE.
1. DEFINITIONS. "Software" means the identified above in
binary form, any other machine readable materials
(including, but not limited to, libraries, source files,
header files, and data files), any updates or error
corrections provided by Sun, and any user manuals,
programming guides and other documentation provided to you
by Sun under this Agreement. "Programs" mean Java applets
and applications intended to run on the Java Platform,
Standard Edition (Java SE) on Java-enabled general purpose
desktop computers and servers.
2. LICENSE TO USE. Subject to the terms and conditions of
this Agreement, including, but not limited to the Java
Technology Restrictions of the Supplemental License Terms,
Sun grants you a non-exclusive, non-transferable, limited
license without license fees to reproduce and use
internally Software complete and unmodified for the sole
purpose of running Programs. Additional licenses for
developers and/or publishers are granted in the
Supplemental License Terms.
3. RESTRICTIONS. Software is confidential and copyrighted.
Title to Software and all associated intellectual property
rights is retained by Sun and/or its licensors. Unless
enforcement is prohibited by applicable law, you may not
modify, decompile, or reverse engineer Software. You
acknowledge that Licensed Software is not designed or
intended for use in the design, construction, operation or
maintenance of any nuclear facility. Sun Microsystems, Inc.
disclaims any express or implied warranty of fitness for
such uses. No right, title or interest in or to any
trademark, service mark, logo or trade name of Sun or its
licensors is granted under this Agreement. Additional
restrictions for developers and/or publishers licenses are
set forth in the Supplemental License Terms.
4. LIMITED WARRANTY. Sun warrants to you that for a period
of ninety (90) days from the date of purchase, as evidenced
by a copy of the receipt, the media on which Software is
furnished (if any) will be free of defects in materials and
workmanship under normal use. Except for the foregoing,
Software is provided "AS IS". Your exclusive remedy and
Sun's entire liability under this limited warranty will be
at Sun's option to replace Software media or refund the fee
paid for Software. Any implied warranties on the Software
are limited to 90 days. Some states do not allow
limitations on duration of an implied warranty, so the
above may not apply to you. This limited warranty gives you
specific legal rights. You may have others, which vary from
state to state.
5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS
AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,
REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED
WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE
EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY
INVALID.
6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY
LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,
CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT
OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE,
EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES. In no event will Sun's liability to you, whether
in contract, tort (including negligence), or otherwise,
exceed the amount paid by you for Software under this
Agreement. The foregoing limitations will apply even if the
above stated warranty fails of its essential purpose. Some
states do not allow the exclusion of incidental or
consequential damages, so some of the terms above may not
be applicable to you.
7. TERMINATION. This Agreement is effective until
terminated. You may terminate this Agreement at any time by
destroying all copies of Software. This Agreement will
terminate immediately without notice from Sun if you fail
to comply with any provision of this Agreement. Either
party may terminate this Agreement immediately should any
Software become, or in either party's opinion be likely to
become, the subject of a claim of infringement of any
intellectual property right. Upon Termination, you must
destroy all copies of Software.
8. EXPORT REGULATIONS. All Software and technical data
delivered under this Agreement are subject to US export
control laws and may be subject to export or import
regulations in other countries. You agree to comply
strictly with all such laws and regulations and acknowledge
that you have the responsibility to obtain such licenses to
export, re-export, or import as may be required after
delivery to you.
9. TRADEMARKS AND LOGOS. You acknowledge and agree as
between you and Sun that Sun owns the SUN, SOLARIS, JAVA,
JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS,
JAVA, JINI, FORTE, and iPLANET-related trademarks, service
marks, logos and other brand designations ("Sun Marks"),
and you agree to comply with the Sun Trademark and Logo
Usage Requirements currently located at
http://www.sun.com/policies/trademarks. Any use you make of
the Sun Marks inures to Sun's benefit.
10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being
acquired by or on behalf of the U.S. Government or by a
U.S. Government prime contractor or subcontractor (at any
tier), then the Government's rights in Software and
accompanying documentation will be only as set forth in
this Agreement; this is in accordance with 48 CFR 227.7201
through 227.7202-4 (for Department of Defense (DOD)
acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD
acquisitions).
11. GOVERNING LAW. Any action related to this Agreement
will be governed by California law and controlling U.S.
federal law. No choice of law rules of any jurisdiction
will apply.
12. SEVERABILITY. If any provision of this Agreement is
held to be unenforceable, this Agreement will remain in
effect with the provision omitted, unless omission would
frustrate the intent of the parties, in which case this
Agreement will immediately terminate.
13. INTEGRATION. This Agreement is the entire agreement
between you and Sun relating to its subject matter. It
supersedes all prior or contemporaneous oral or written
communications, proposals, representations and warranties
and prevails over any conflicting or additional terms of
any quote, order, acknowledgment, or other communication
between the parties relating to its subject matter during
the term of this Agreement. No modification of this
Agreement will be binding, unless in writing and signed by
an authorized representative of each party.
SUPPLEMENTAL LICENSE TERMS
These Supplemental License Terms add to or modify the terms
of the Binary Code License Agreement. Capitalized terms not
defined in these Supplemental Terms shall have the same
meanings ascribed to them in the Binary Code License
Agreement . These Supplemental Terms shall supersede any
inconsistent or conflicting terms in the Binary Code
License Agreement, or in any license contained within the
Software.
A. Software Internal Use and Development License Grant.
Subject to the terms and conditions of this Agreement and
restrictions and exceptions set forth in the Software
"README" file incorporated herein by reference, including,
but not limited to the Java Technology Restrictions of
these Supplemental Terms, Sun grants you a non-exclusive,
non-transferable, limited license without fees to reproduce
internally and use internally the Software complete and
unmodified for the purpose of designing, developing, and
testing your Programs.
B. License to Distribute Software. Subject to the terms and
conditions of this Agreement and restrictions and
exceptions set forth in the Software README file,
including, but not limited to the Java Technology
Restrictions of these Supplemental Terms, Sun grants you a
non-exclusive, non-transferable, limited license without
fees to reproduce and distribute the Software, provided
that (i) you distribute the Software complete and
unmodified and only bundled as part of, and for the sole
purpose of running, your Programs, (ii) the Programs add
significant and primary functionality to the Software,
(iii) you do not distribute additional software intended to
replace any component(s) of the Software, (iv) you do not
remove or alter any proprietary legends or notices
contained in the Software, (v) you only distribute the
Software subject to a license agreement that protects Sun's
interests consistent with the terms contained in this
Agreement, and (vi) you agree to defend and indemnify Sun
and its licensors from and
C. Java Technology Restrictions. You may not create,
modify, or change the behavior of, or authorize your
licensees to create, modify, or change the behavior of,
classes, interfaces, or subpackages that are in any way
identified as "java", "javax", "sun" or similar convention
as specified by Sun in any naming convention designation.
D. Source Code. Software may contain source code that,
unless expressly licensed for other purposes, is provided
solely for reference purposes pursuant to the terms of this
Agreement. Source code may not be redistributed unless
expressly provided for in this Agreement.
E. Third Party Code. Additional copyright notices and
license terms applicable to portions of the Software are
set forth in the THIRDPARTYLICENSEREADME.txt file. In
addition to any terms and conditions of any third party
opensource/freeware license identified in the
THIRDPARTYLICENSEREADME.txt file, the disclaimer of
warranty and limitation of liability provisions in
paragraphs 5 and 6 of the Binary Code License Agreement
shall apply to all Software in this distribution.
F. Termination for Infringement. Either party may terminate
this Agreement immediately should any Software become, or
in either party's opinion be likely to become, the subject
of a claim of infringement of any intellectual property
right.
G. Installation and Auto-Update. The Software's
installation and auto-update processes transmit a limited
amount of data to Sun (or its service provider) about those
specific processes to help Sun understand and optimize
them. Sun does not associate the data with personally
identifiable information. You can find more information
about the data Sun collects at http://java.com/data/.
For inquiries please contact: Sun Microsystems, Inc., 4150
Network Circle, Santa Clara, California 95054, U.S.A.

View File

@@ -0,0 +1,101 @@
{\rtf1\ansi\deff0\adeflang1025
{\fonttbl{\f0\froman\fprq2\fcharset0 Nimbus Roman No9 L{\*\falt Times New Roman};}{\f1\froman\fprq2\fcharset0 Nimbus Roman No9 L{\*\falt Times New Roman};}{\f2\fmodern\fprq1\fcharset0 Nimbus Mono L{\*\falt Courier New};}{\f3\fnil\fprq2\fcharset0 Nimbus Sans L{\*\falt Arial};}{\f4\fnil\fprq2\fcharset0 Tahoma{\*\falt Lucidasans};}{\f5\fnil\fprq0\fcharset0 Tahoma{\*\falt Lucidasans};}}
{\colortbl;\red0\green0\blue0;\red128\green128\blue128;}
{\stylesheet{\s1\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af4\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\snext1 Default;}
{\s2\sa120\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af4\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon1\snext2 Text body;}
{\s3\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon2\snext3 List;}
{\s4\sb120\sa120\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs20\lang255\ai\ltrch\dbch\af3\afs20\langfe255\ai\loch\f0\fs20\lang1033\i\sbasedon1\snext4 Caption;}
{\s5\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af5\afs24\lang255\ltrch\dbch\af3\afs24\langfe255\loch\f0\fs24\lang1033\sbasedon1\snext5 Index;}
{\s6\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af2\afs20\lang255\ltrch\dbch\af2\afs20\langfe255\loch\f2\fs20\lang1033\sbasedon1\snext6 Preformatted Text;}
}
{\info{\creatim\yr2006\mo9\dy18\hr9\min15}{\revtim\yr1601\mo1\dy1\hr0\min0}{\printim\yr1601\mo1\dy1\hr0\min0}{\comment StarWriter}{\vern6450}}\deftab709
{\*\pgdsctbl
{\pgdsc0\pgdscuse195\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\pgdscnxt0 Default;}}
\paperh15840\paperw12240\margl1800\margr1800\margt1440\margb1440\sectd\sbknone\pgwsxn12240\pghsxn15840\marglsxn1800\margrsxn1800\margtsxn1440\margbsxn1440\ftnbj\ftnstart1\ftnrstcont\ftnnar\aenddoc\aftnrstcont\aftnstart1\aftnnrlc
\pard\plain \ltrpar\s6\cf0{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\rtlch\af2\afs20\lang255\ltrch\dbch\af2\afs20\langfe255\loch\f2\fs20\lang1033 {\loch\f2\fs20\lang1033\i0\b0 Sun Microsystems, Inc. Binary Code License Agreement }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT").\u65533 ? P
LEASE READ THE AGREEMENT CAREFULLY.\u65533 ? BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS
, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any use
r manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java Platform, Standard Edition (Java SE) on Java-enabled general purpose desktop comput
ers and servers.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fe
es to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reve
rse engineer Software.\u65533 ? You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness fo
r such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental L
icense Terms.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 4. LIMITED WARRANTY.\u65533 ? Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under n
ormal use.\u65533 ? Except for the foregoing, Software is provided "AS IS".\u65533 ? Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties
on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.
}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 5. DISCLAIMER OF WARRANTY.\u65533 ? UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEP
T TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 6. LIMITATION OF LIABILITY.\u65533 ? TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF TH
E THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\u65533 ? In no event will Sun's liability to you, whether in contract, tort (including negligence), or oth
erwise, exceed the amount paid by you for Software under this Agreement.\u65533 ? The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages,
so some of the terms above may not be applicable to you. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 7. TERMINATION.\u65533 ? This Agreement is effective until terminated.\u65533 ? You may terminate this Agreement at any time by destroying all copies of Software.\u65533 ? This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision o
f this Agreement.\u65533 ? Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must des
troy all copies of Software. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries.\u65533 ? You agree to comply strictly with all such laws and regulati
ons and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other bran
d designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 10. U.S. GOVERNMENT RESTRICTED RIGHTS.\u65533 ? If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation wi
ll be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 11. GOVERNING LAW.\u65533 ? Any action related to this Agreement will be governed by California law and controlling U.S. federal law.\u65533 ? No choice of law rules of any jurisdiction will apply. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately term
inate. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 13. INTEGRATION.\u65533 ? This Agreement is the entire agreement between you and Sun relating to its subject matter.\u65533 ? It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflic
ting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement.\u65533 ? No modification of this Agreement will be binding, unless in writing and signed by a
n authorized representative of each party. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 SUPPLEMENTAL LICENSE TERMS}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemen
tal Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java T
echnology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and
testing your Programs. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun
grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, you
r Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notice
s contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and
against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs
and/or Software.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 C. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun"
or similar convention as specified by Sun in any naming convention designation.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 D. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in th
is Agreement.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 E. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identif
ied in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 F. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.}
\par
\par {\loch\f2\fs20\lang1033\i0\b0 G. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the
data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. }
\par
\par {\loch\f2\fs20\lang1033\i0\b0 For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.}
\par }

View File

@@ -0,0 +1,56 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe1041{\fonttbl{\f0\fswiss\fprq2\fcharset0 Microsoft Sans Serif;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\nowidctlpar\qc\lang1031\f0\fs16 Sun Microsystems, Inc.\par
Bin\'e4rcode-Lizenzvertrag\par
\par
f\'fcr die\par
\par
\lang1036 JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\par
\pard\nowidctlpar\par
\pard\nowidctlpar\qj\lang1031 SUN MICROSYSTEMS, INC. (\'84\i SUN\i0 ") IST NUR UNTER DER BEDINGUNG BEREIT, IHNEN EINE LIZENZ F\'dcR DIE UNTEN BEZEICHNETE \i SOFTWARE\i0 ZU GEW\'c4HREN, DASS SIE ALLE IN DIESEM \i BIN\'c4RCODE-LIZENZVERTRAG\i0 SOWIE DEN \i ZUS\'c4TZLICHEN LIZENZBEDINGUNGEN\i0 (ZUSAMMEN DER \'84\i VERTRAG\i0 ") AUFGEF\'dcHRTEN BEDINGUNGEN ANNEHMEN. BITTE LESEN SIE DEN \i VERTRAG\i0 SORGF\'c4LTIG DURCH. DURCH HERUNTERLADEN ODER INSTALLIEREN DIESER \i SOFTWARE\i0 ERKL\'c4REN SIE SICH MIT DEN BEDINGUNGEN DES \i VERTRAGS\i0 EINVERSTANDEN. WENN SIE DIE BEDINGUNGEN ANNEHMEN, KLICKEN SIE AUF DIE AM ENDE DES \i VERTRAGS\i0 ABGEBILDETE SCHALTFL\'c4CHE \'84ANNEHMEN". SOLLTEN SIE NICHT MIT ALLEN BEDINGUNGEN EINVERSTANDEN SEIN, W\'c4HLEN SIE DIE AM ENDE DES \i VERTRAGS\i0 ABGEBILDETE SCHALTFL\'c4CHE \'84ABLEHNEN"; DADURCH WIRD DER HERUNTERLADE- BZW. INSTALLATIONSVORGANG ABGEBROCHEN.\par
\par
\pard\nowidctlpar\fi-284\li710\qj 1.\b\tab\b0 DEFINITIONEN\b .\b0 Der Begriff \'84\i Software\i0 " bezieht sich auf das oben bezeichnete Computerprogramm in bin\'e4rer Form, alle sonstigen maschinenlesbaren Materialien, (einschlie\'dflich, jedoch nicht beschr\'e4nkt auf Bibliotheken, Quelldateien, Headerdateien und andere Datendateien), alle etwaig von \i Sun\i0 zur Verf\'fcgung gestellten Aktualisierungen oder Fehlerbehebungen sowie s\'e4mtliche Benutzerhandb\'fccher, Programmieranleitungen und sonstige Dokumentationen, die Ihnen von \i Sun\i0 gem\'e4\'df dieses \i Vertrags\i0 bereitgestellt werden. Der Begriff \'84\i Programme\i0 " bezieht sich auf Java-Applets und -Anwendungen, die auf der Java Platform, Standard Edition (Java SE)-Plattform auf Java-f\'e4higen Allzweck-Desktop-Computern und -Servern laufen sollen.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 2.\tab BENUTZERLIZENZ. Vorbehaltlich der Bedingungen und Bestimmungen dieses \i Vertrags\i0 , einschlie\'dflich, jedoch nicht begrenzt auf Java-Technologiebeschr\'e4nkungen der \i Zus\'e4tzlichen Lizenzbedingungen\i0 , erteilt \i Sun\i0 Ihnen eine nicht ausschlie\'dfliche, nicht \'fcbertragbare, beschr\'e4nkte und geb\'fchrenfreie Lizenz zur internen Reproduktion und Verwendung der vollst\'e4ndigen und nicht modifizierten \i Software\i0 zum alleinigen Zweck, \i Programme\i0 laufen zu lassen. Zusatzlizenzen f\'fcr Entwickler und/oder Verlage werden in den \i Zus\'e4tzlichen Lizenzbedingungen\i0 gew\'e4hrt.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 3.\tab BESCHR\'c4NKUNGEN. Bei der \i Software\i0 handelt es sich um vertrauliches und urheberrechtlich gesch\'fctztes Material. Das Eigentumsrecht an der \i Software\i0 und alle dazugeh\'f6rigen gewerblichen Schutzrechten verbleiben bei \i Sun\i0 und/oder seinen Lizenzgebern. Ihnen ist nicht gestattet, die \i Software\i0 zu modifizieren, dekompilieren oder durch Reverse-Engineering zu rekonstruieren, es sei denn, die Durchsetzung dieser Beschr\'e4nkungen ist rechtlich unzul\'e4ssig. Der Lizenznehmer erkennt an, dass die \i lizenzierte Software\i0 nicht zur Verwendung beim Design, bei der Konstruktion, dem Betrieb bzw. der Wartung einer Kernkraftanlage entwickelt wurde oder bestimmt ist. Sun Microsystems, Inc.\i \i0 lehnt jegliche ausdr\'fcckliche oder stillschweigende Gew\'e4hrleistung der Eignung f\'fcr eine solche Nutzung ab. Im Rahmen dieses \i Vertrags\i0 werden keinerlei Rechte, Eigentumsrechte oder Anrechte auf irgendwelche Marken, Dienstleistungsmarken, Logos oder gesch\'e4ftliche Bezeichnungen von \i Sun\i0 oder seinen Lizenzgebern gew\'e4hrt. Zus\'e4tzliche Beschr\'e4nkungen f\'fcr Entwickler und/oder Verlage sind in den \i Zus\'e4tzlichen Lizenzbedingungen\i0 dargelegt.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 4.\tab BESCHR\'c4NKTE GEW\'c4HRLEISTUNG. \i Sun\i0 gew\'e4hrleistet, dass der Datentr\'e4ger, auf dem die \i Software\i0 ggf. bereitgestellt wird, f\'fcr einen Zeitraum von neunzig (90) Tagen ab Kaufdatum, das durch eine Kopie der Quittung nachzuweisen ist, bei normalem Gebrauch keine Materialfehler und Herstellungsm\'e4ngel aufweist. Mit Ausnahme des Vorangegangenen wird die \i Software\i0 \'84WIE BESEHEN ohne Gew\'e4hrleistung\ldblquote zur Verf\'fcgung gestellt. Ihr ausschlie\'dfliches Rechtsmittel und die einzige Verpflichtung von \i Sun\i0 im Rahmen dieser beschr\'e4nkten Gew\'e4hrleistung besteht darin, dass \i Sun\i0 nach eigenem Ermessen die \i Software\i0 -Datentr\'e4ger ersetzen oder die f\'fcr die \i Software\i0 bezahlte Geb\'fchr zur\'fcckerstatten wird. Jegliche stillschweigenden Gew\'e4hrleistungen bez\'fcglich der \i Software\i0 sind auf 90 Tage beschr\'e4nkt. Einige Staaten gestatten in Bezug auf die Dauer von stillschweigenden Gew\'e4hrleistungen keine Beschr\'e4nkungen; aus diesem Grund treffen die oben dargelegten Bestimmungen u.U. auf Sie nicht zu. Diese beschr\'e4nkte Gew\'e4hrleistung verleiht Ihnen bestimmte Rechte. Dar\'fcber hinaus stehen Ihnen m\'f6glicherweise andere Rechte zu, welche je nach Staat unterschiedlich sein k\'f6nnen.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 5.\tab GEW\'c4HRLEISTUNGSAUSSCHLUSS. WENN NICHT ANDERS IN DIESEM \i VERTRAG\i0 ANGEGEBEN, WERDEN ALLE AUSDR\'dcCKLICHEN ODER STILLSCHWEIGENDEN BEDINGUNGEN, ZUSICHERUNGEN, GEW\'c4HRLEISTUNGEN UND GARANTIEN EINSCHLIESSLICH JEGLICHER GEW\'c4HRLEISTUNG DER EIGNUNG F\'dcR DEN GEW\'d6HNLICHEN GEBRAUCH, DER EIGNUNG F\'dcR EINEN BESTIMMTEN ZWECK UND DER GEW\'c4HRLEISTUNG F\'dcR RECHTSM\'c4NGEL AUSGESCHLOSSEN, AUSSER WENN EIN DERARTIGER GEW\'c4HRLEISTUNGSAUSSCHLUSS RECHTLICH ALS UNG\'dcLTIG ANGESEHEN WIRD.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 6.\tab HAFTUNGSBEGRENZUNG. SOWEIT RECHTLICH NICHT UNZUL\'c4SSIG, SCHLIESSEN \i SUN\i0 BZW. SEINE LIZENZGEBER JEGLICHE HAFTUNG F\'dcR EINKOMMENS-, GEWINN- ODER DATENVERLUSTE ODER F\'dcR SONDER-, INDIREKTE, FOLGE- ODER NEBENSCH\'c4DEN UND STRAFSCHADENSERSATZANSPR\'dcCHE V\'d6LLIG AUS, UNABH\'c4NGIG VON DER URSACHE UND DER HAFTUNGSTHEORIE, DIE SICH AUS DER VERWENDUNG ODER IM ZUSAMMENHANG MIT DER VERWENDUNG ODER DEM UNVERM\'d6GEN DER VERWENDUNG DER \i SOFTWARE\i0 ERGEBEN, SELBST WENN \i SUN\i0 VON EINER M\'d6GLICHKEIT DIESER SCH\'c4DEN UNTERRICHTET WURDE. In keinem Fall \'fcberschreitet die Haftung von \i Sun\i0 Ihnen gegen\'fcber, ob durch Vertrag oder eine unerlaubte Handlung (einschlie\'dflich Fahrl\'e4ssigkeit) oder auf sonstige Weise, den Betrag, den Sie im Rahmen dieses \i Vertrags\i0 f\'fcr die \i Software\i0 bezahlt haben. Die vorangegangenen Beschr\'e4nkungen gelten auch, wenn die oben genannte Gew\'e4hrleistungsregelung ihren wesentlichen Zweck verfehlt. In einigen Staaten ist der Ausschluss von Neben- oder Folgesch\'e4den nicht gestattet. Aus diesem Grund treffen einige der oben dargelegten Bestimmungen auf Sie u.U. nicht zu.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 7.\tab K\'dcNDIGUNG. Dieser \i Vertrag\i0 ist bis zu seiner K\'fcndigung g\'fcltig. Sie k\'f6nnen diesen \i Vertrag\i0 jederzeit k\'fcndigen, indem Sie alle Kopien der \i Software\i0 vernichten. Dieser \i Vertrag\i0 wird sofort und ohne Benachrichtigung seitens \i Sun\i0 gek\'fcndigt, wenn Sie irgendwelche Bestimmungen dieses \i Vertrags\i0 nicht einhalten. Dieser \i Vertrag\i0 kann von allen Vertragsparteien fristlos gek\'fcndigt werden, wenn die \i Software\i0 Gegenstand eines Anspruchs wegen Verletzung gewerblicher Schutzrechte oder geistigen Eigentums wird oder wenn nach Ansicht einer der Vertragsparteien die Geltendmachung eines solchen Anspruchs zu erwarten steht. Nach K\'fcndigung sind alle Kopien der \i Software\i0 von Ihnen zu vernichten.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 8.\tab AUSFUHRBESTIMMUNGEN. Die gesamte \i Software\i0 und alle technischen Daten, die im Rahmen dieses \i Vertrags\i0 zur Verf\'fcgung gestellt werden, unterliegen den US-Ausfuhrkontrollgesetzen und k\'f6nnen dar\'fcber hinaus Ausfuhr- oder Einfuhrbestimmungen in anderen L\'e4ndern unterliegen. Sie erkl\'e4ren sich bereit, alle solchen Gesetze und Vorschriften genauestens zu befolgen, und erkennen an, dass Sie daf\'fcr verantwortlich sind, Lizenzen zur Ausfuhr, Neuausfuhr oder Einfuhr einzuholen, wenn dies nach der Zurverf\'fcgungstellung an Sie erforderlich ist.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 9.\tab MARKEN UND LOGOS. Sie erkennen gegen\'fcber \i Sun\i0 an und vereinbaren mit \i Sun\i0 , dass die Marken SUN, SOLARIS, JAVA, JINI, FORTE und iPLANET sowie alle auf SUN, SOLARIS, JAVA, JINI, FORTE und iPLANET bezogenen Marken, Dienstleistungsmarken, Logos und sonstigen Markenbezeichnungen (\'84\i Marken von Sun\i0 ") das Eigentum von \i Sun\i0 sind, und Sie verpflichten sich, die sich zurzeit unter http://www.sun.com/policies/trademarks einsehbaren Marken- und Logo-Verwendungsbedingungen\i \i0 von \i Sun\i0 einzuhalten. Jegliche Verwendung der \i Marken von Sun \i0 erfolgt zum Vorteil und im Interesse von \i Sun\i0 .\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 10.\tab EINGESCHR\'c4NKTE RECHTE DER US-REGIERUNG. Wenn die \i Software\i0 durch oder im Namen der US-Regierung oder durch einen Haupt- oder Unterlieferanten der US-Regierung (gleich auf welcher Ebene) erworben wird, stehen der Regierung nur die Rechte an der \i Software\i0 und der begleitenden Dokumentation zu, die in diesem \i Vertrag\i0 aufgef\'fchrt sind, d.h. gem\'e4\'df 48 CFR 227.7201 bis 227.7202-4 (bei einem Erwerb durch das DOD [US-Verteidigungsministerium]) und gem\'e4\'df 48 CFR 2.101 und 12.212 (bei einem Erwerb durch andere Beh\'f6rden).\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 11.\tab GELTENDES RECHT. Alle Klagen in Bezug auf diesen \i Vertrag\i0 unterliegen kalifornischem Recht und dem ma\'dfgeblichen US-Bundesrecht. Es gelten keine Rechtswahlregeln irgendeiner Rechtsordnung.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 12.\tab SALVATORISCHE KLAUSEL. Sollte eine Bestimmung dieses \i Vertrags\i0 nicht durchsetzbar sein, bleibt dieser \i Vertrag\i0 unter Ausschluss der nicht durchsetzbaren Bestimmung in Kraft, es sei denn, dieser Ausschluss w\'fcrde den vereinbarten Willen der Parteien vereiteln, in welchem Fall dieser \i Vertrag\i0 als sofort beendet gilt.\par
\pard\nowidctlpar\fi-284\li710\qj\tx720\par
\pard\nowidctlpar\fi-284\li710\qj 13.\tab INTEGRATION. Dieser \i Vertrag\i0 stellt in Bezug auf seinen Vertragsgegenstand den gesamten \i Vertrag\i0 zwischen Ihnen und \i Sun\i0 dar. Er hebt alle vorherigen oder gleichzeitigen m\'fcndlichen oder schriftlichen Mitteilungen, Vorschl\'e4ge, Zusicherungen und Gew\'e4hrleistungen auf und ist bei widerspr\'fcchlichen oder zus\'e4tzlichen Bestimmungen in Preisangaben, Bestellungen, Best\'e4tigungen oder sonstigen Kommunikationen zwischen den Parteien in Bezug auf den Vertragsgegenstand w\'e4hrend des Vertragszeitraums ausschlaggebend. Eine \'c4nderung dieses \i Vertrags\i0 ist nicht bindend, es sein denn, sie erfolgt schriftlich und wird von einem Beauftragten beider Parteien unterzeichnet.\par
\pard\nowidctlpar\qj\par
\pard\nowidctlpar ZUS\'c4TZLICHE LIZENZBEDINGUNGEN\par
\pard\nowidctlpar\qj\par
Diese \i Zus\'e4tzlichen Lizenzbedingungen\i0 erg\'e4nzen bzw. modifizieren die Bedingungen des \i Bin\'e4rcode-Lizenzvertrags\i0 . Begriffe, die in diesen \i Zusatzbedingungen\i0 nicht definiert sind, haben dieselbe Bedeutung wie im \i Bin\'e4rcode-Lizenzvertrag\i0 . Diese \i Zusatzbedingungen\i0 ersetzen alle unvereinbaren oder widerspr\'fcchlichen Bedingungen des \i Bin\'e4rcode-Lizenzvertrags\i0 oder der Lizenzen, die in der \i Software\i0 enthalten sind.\par
\par
\pard\nowidctlpar\fi-284\li710\qj A.\tab Lizenzgew\'e4hrung zur internen Nutzung und Entwicklung der Software. Gem\'e4\'df den Bedingungen und Bestimmungen dieses Vertrags und den in der Software-\'84README\ldblquote -Datei durch Verweis Bestandteil des Vertragstextes, als sei sie mit vollst\'e4ndigem Wortlaut aufgef\'fchrt vorgesehenen Beschr\'e4nkungen und Ausnahmen, einschlie\'dflich, jedoch nicht beschr\'e4nkt auf Java-Technologiebeschr\'e4nkungen dieser Zusatzbedingungen, erteilt Sun Ihnen eine nicht ausschlie\'dfliche, nicht \'fcbertragbare, beschr\'e4nkte und geb\'fchrenfreie Lizenz zur internen Reproduktion und internen Verwendung der Software in ihrer vollst\'e4ndigen und unmodifizierten Form, und zwar lediglich zur Konstruktion, Entwicklung und zum Testen Ihrer Programme.\par
\par
B.\tab Lizenz f\'fcr den Vertrieb der \i Software\i0 . Gem\'e4\'df den Bedingungen und Bestimmungen dieses \i Vertrags\i0 und den in der Software-\'84README\ldblquote -Datei *durch Verweis Bestandteil des Vertragstextes, als sei sie mit vollst\'e4ndigem Wortlaut aufgef\'fchrt einschlie\'dflich, jedoch nicht beschr\'e4nkt auf Java-Technologiebeschr\'e4nkungen dieser \i Zusatzbedingungen\i0 , erteilt \i Sun\i0 Ihnen eine nicht ausschlie\'dfliche, nicht \'fcbertragbare, beschr\'e4nkte und geb\'fchrenfreie Lizenz zur Reproduktion und zum Vertrieb der \i Software\i0 , vorausgesetzt, (i) Sie vertreiben die \i Software\i0 in ihrer vollst\'e4ndigen und unmodifizierten Form, und zwar nur geb\'fcndelt als Teil und zum alleinigen Zweck der Ausf\'fchrung Ihrer \i Programme\i0 , (ii) die \i Programme\i0 erweitern die \i Software\i0 um eine wesentliche und haupts\'e4chliche Funktionalit\'e4t, (iii) Sie vertreiben keine zus\'e4tzliche Software, die irgendwelche Komponente(n) der \i Software\i0 ersetzen soll, (iv) Sie entfernen oder \'e4ndern keine in der \i Software\i0 enthaltenen Schutzrechts- oder eigentumsrechtlichen Hinweise, (v) Sie vertreiben die \i Software\i0 nur vorbehaltlich eines Lizenzvertrags, der die Interessen von \i Sun\i0 in \'dcbereinstimmung mit den Bestimmungen dieses \i Vertrags\i0 sch\'fctzt und (vi) Sie verpflichten sich, \i Sun\i0 und seine Lizenzgeber in Bezug auf Schadensersatz, Kosten, Verbindlichkeiten, Vergleichssummen und/oder Ausgaben (einschlie\'dflich Rechtsanwaltshonorare) zu verteidigen und freizustellen, die sich in Verbindung mit etwaigen Forderungen, Rechtsstreitigkeiten oder Klagen Dritter auf Grund der Verwendung oder des Vertriebs jeglicher oder aller \i Programme\i0 und/oder \i Software\i0 ergeben bzw. daraus erfolgen.\par
\par
C.\tab Java-Technologiebeschr\'e4nkungen. Sie d\'fcrfen keine Klassen, Schnittstellen oder Unterpakete erstellen, modifizieren oder \'c4nderungen an deren Verhalten vornehmen bzw. deren Erstellung, Modifizierung oder die \'c4nderung an deren Verhalten durch Ihre Lizenzgeber zulassen, die in irgendeiner Weise als \'84java\ldblquote , \'84javax\ldblquote oder \'84sun\ldblquote oder durch \'e4hnliche Konventionen identifiziert werden, die von \i Sun\i0 in Benennungskonventionen spezifiziert sind.\par
\par
D.\tab Quellcode. Die \i Software\i0 kann Quellcode enthalten, der nur f\'fcr Referenzzwecke gem\'e4\'df den Bedingungen dieses \i Vertrags\i0 bereitgestellt wird, es sei denn, er wird ausdr\'fccklich f\'fcr andere Zwecke lizenziert. Der Quellcode darf nicht wiederver\'e4u\'dfert werden, es sei denn, dies wird ausdr\'fccklich in diesem \i Vertrag\i0 gestattet.\par
\par
E.\tab Lizenzen Dritter. Zus\'e4tzliche Copyright-Informationen und Lizenzbedingungen, die sich auf Teile der \i Software\i0 beziehen, k\'f6nnen der THIRDPARTYLICENSEREADME.txt-Datei entnommen werden. Zus\'e4tzlich zu den in der THIRDPARTYLICENSEREADME.txt-Datei enthaltenen Opensource-/Freeware-Lizenzbestimmungen und -bedingungen Dritter gelten die in den Paragraphen 5 und 6 des \i Bin\'e4rcode-Lizenzvertrags\i0 enthaltenen Bestimmungen zum Gew\'e4hrleistungsausschluss und zu Haftungsbeschr\'e4nkungen f\'fcr die gesamte \i Software\i0 in diesem Vertrieb.\par
\par
F.\tab K\'fcndigung auf Grund von Rechtsverletzung. Jede Vertragspartei kann diesen Vertrag mit sofortiger Wirkung k\'fcndigen, wenn die Software zum Gegenstand eines Anspruchs wegen Verletzung gewerblicher Schutzrechte oder geistigen Eigentums wird oder nach Ermessen einer der Vertragsparteien werden k\'f6nnte.\par
\par
G.\tab Installationen und automatische Aktualisierungen. Im Rahmen von Installationen und automatischen Aktualisierungen werden eingeschr\'e4nkte Daten zu diesen Vorg\'e4ngen \'fcbermittelt, die Sun bei der Verbesserung dieser Vorg\'e4nge unterst\'fctzen. Sun verbindet solche Informationen nicht mit pers\'f6nlichen Daten. Weitere Informationen zur Daten\'fcbermittlung finden Sie unter http://java.com/data/.\par
\pard\nowidctlpar\qj\par
Bei Fragen wenden Sie sich bitte an: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, Kalifornien 95054, USA. \par
}

View File

@@ -0,0 +1,54 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe2052{\fonttbl{\f0\fswiss\fprq2\fcharset0 Microsoft Sans Serif;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\nowidctlpar\qc\lang9226\f0\fs16 Contrato de Licencia de C\'f3digo Binario de Sun Microsystems, Inc.\par
para\par
\par
JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\par
\par
\pard\nowidctlpar SUN MICROSYSTEMS, INC. (EN ADELANTE DENOMINADO \ldblquote SUN\rdblquote ) LE CONCEDE LA LICENCIA DEL SOFTWARE DEFINIDO A CONTINUACI\'d3N \'daNICAMENTE CON LA CONDICI\'d3N DE QUE USTED ACEPTE TODOS LOS T\'c9RMINOS ESTIPULADOS EN EL PRESENTE CONTRATO DE LICENCIA DE C\'d3DIGO BINARIO Y T\'c9RMINOS DE LICENCIA ADICIONALES (EN CONJUNTO DENOMINADOS \ldblquote CONTRATO\rdblquote ). POR FAVOR, LEA EL CONTRATO DETENIDAMENTE. \sub\v \nosupersub\v0 AL DESCARGAR O INSTALAR ESTE SOFTWARE, USTED ACEPTA LOS T\'c9RMINOS DEL PRESENTE CONTRATO. INDIQUE SU ACEPTACI\'d3N SELECCIONANDO EL BOT\'d3N \ldblquote ACCEPT\rdblquote (ACEPTAR) SITUADO AL PIE DEL CONTRATO. SI USTED NO EST\'c1 DISPUESTO A COMPROMETERSE CON TODOS LOS T\'c9RMINOS DEL PRESENTE CONTRATO, SELECCIONE EL BOT\'d3N \ldblquote DECLINE\rdblquote (REHUSAR) SITUADO AL PIE DE ESTE CONTRATO A FIN DE DETENER EL PROCESO DE DESCARGA O INSTALACI\'d3N. \par
\par
\pard\nowidctlpar\fi-284\li710 1.\tab DEFINICIONES.\b \b0\ldblquote Software\rdblquote significa el identificado arriba en forma binaria, cualquier otro material en formato legible por equipos inform\'e1ticos (incluso, pero sin limitarse a ello, bibliotecas, archivos fuente, archivos de cabecera y archivos de datos), cualquier actualizaci\'f3n o correcci\'f3n de errores suministrada por Sun, y cualquier manual de usuario, gu\'eda de programaci\'f3n y otra documentaci\'f3n que le haya sido proporcionada por Sun bajo el presente Contrato. \ldblquote Programas\rdblquote significa los \i applets\i0 y aplicaciones de Java concebidos para ejecutarse en la plataforma Java Platform, Standard Edition (Java SE) en computadoras y servidores de escritorio compatibles con Java de uso general.\par
\par
2.\tab LICENCIA DE USO. En virtud de los t\'e9rminos y condiciones dispuestos en el presente Contrato, incluidas, entre otras, las Restricciones de la Tecnolog\'eda Java de los T\'e9rminos de Licencia Adicionales, Sun le concede, sin tarifa de licencia, una licencia limitada, no exclusiva e intransferible para la reproducci\'f3n y el uso interno del Software completo y sin modificaciones con el \'fanico prop\'f3sito de ejecutar Programas. Las licencias adicionales para desarrolladores y/o editores se otorgan en los T\'e9rminos de Licencia Adicionales.\par
\par
3.\tab RESTRICCIONES. El software es confidencial y se encuentra protegido por derechos de autor (Copyright). Sun y/o sus licenciantes mantienen la titularidad del Software, as\'ed como todos los derechos de propiedad intelectual asociados. Queda prohibido modificar, descompilar o utilizar t\'e9cnicas de ingenier\'eda inversa en el Software, a menos que se estipule lo contrario en la legislaci\'f3n aplicable. El licenciatario acepta que el Software con licencia no se ha dise\'f1ado para ser utilizado en el dise\'f1o, construcci\'f3n, funcionamiento o mantenimiento de cualquier instalaci\'f3n nuclear, ni se tiene la intenci\'f3n de usarlo para dichos fines. Sun Microsystems, Inc. renuncia a cualquier garant\'eda expl\'edcita o impl\'edcita de adecuaci\'f3n del Software para dichos fines. El presente Contrato no otorga ning\'fan tipo de derecho, t\'edtulo o propiedad sobre o respecto a las marcas comerciales o de servicio, logotipos o nombres comerciales de Sun o de sus licenciantes. Las restricciones adicionales para las licencias de los desarrolladores y/o editores se estipulan en los T\'e9rminos de Licencia Adicionales.\par
\par
4.\tab GARANT\'cdA LIMITADA. Sun garantiza que los medios en los que se proporciona el Software (si los hubiera) se encontrar\'e1n libres de defectos en los materiales o de fabricaci\'f3n, siempre y cuando se den circunstancias normales de uso, durante un per\'edodo de noventa (90) d\'edas a partir de la fecha de adquisici\'f3n, que se demostrar\'e1 con la presentaci\'f3n de una copia del recibo de compra. Excepto en los casos especificados anteriormente, el Software se suministra "TAL CUAL". El \'fanico recurso a su disposici\'f3n y la responsabilidad total de Sun de conformidad con la presente garant\'eda limitada radicar\'e1n en el derecho que Sun se reserva para determinar la sustituci\'f3n de los medios del Software o la devoluci\'f3n del importe abonado por \'e9ste. Cualquiera de las garant\'edas implicadas en el Software est\'e1n limitadas a un t\'e9rmino de 90 d\'edas. Algunos Estados no permiten limitaciones en la duraci\'f3n de las garant\'edas impl\'edcitas, de modo que lo expresado anteriormente podr\'eda no corresponder para usted. Esta garant\'eda limitada le otorga a usted derechos legales espec\'edficos. Es posible que tenga otros derechos que var\'edan de un Estado a otro. \par
\par
5.\tab EXCLUSI\'d3N DE GARANT\'cdAS. \sub\v \nosupersub\v0 A MENOS QUE EN EL PRESENTE CONTRATO SE ESTIPULE LO CONTRARIO, SE RENUNCIA A TODAS LAS CONDICIONES, MANIFESTACIONES Y GARANT\'cdAS EXPL\'cdCITAS O IMPL\'cdCITAS, INCLUIDA CUALQUIER GARANT\'cdA IMPL\'cdCITA DE COMERCIABILIDAD, IDONEIDAD PARA UN PROP\'d3SITO DETERMINADO O PARA LA CONTRAVENCI\'d3N DEL PRESENTE CONTRATO, SALVO EN AQUELLOS CASOS EN LOS QUE ESTAS EXCLUSIONES CAREZCAN DE VALIDEZ JUR\'cdDICA.\par
\par
6.\tab LIMITACI\'d3N DE RESPONSABILIDAD. \sub \nosupersub EN LA MEDIDA EN QUE LO PERMITA LA LEGISLACI\'d3N APLICABLE, EN NING\'daN CASO SUN O SUS LICENCIANTES ASUMIR\'c1N RESPONSABILIDAD ALGUNA POR LA P\'c9RDIDA DE INGRESOS, BENEFICIOS O INFORMACI\'d3N, AS\'cd COMO POR DA\'d1OS O PERJUICIOS ESPECIALES, INDIRECTOS, CONSECUENTES, INCIDENTALES, O PUNITIVOS, INDEPENDIENTEMENTE DEL MOTIVO QUE LOS ORIGINE Y DEL CONTENIDO DE SU RESPONSABILIDAD, O QUE SE DERIVEN O EST\'c9N RELACIONADOS CON EL USO DEL SOFTWARE O CON LA IMPOSIBILIDAD DE UTILIZARLO, INCLUSO EN AQUELLOS CASOS EN LOS QUE SE HAYA ADVERTIDO A SUN DE LA POSIBILIDAD DE QUE SE PRODUZCAN TALES DA\'d1OS. \sub\v \nosupersub\v0 En ning\'fan caso Sun asumir\'e1 la responsabilidad, ya sea por motivos contractuales o il\'edcitos (incluida negligencia) o de cualquier otro tipo, de abonar una cantidad superior al pago realizado por usted por el Software, seg\'fan lo estipulado en el presente Contrato.\sub\v \nosupersub\v0 Las limitaciones anteriores se aplicar\'e1n incluso en aquellos casos en los que la antedicha garant\'eda falte a su prop\'f3sito fundamental. Algunos Estados no permiten la exclusi\'f3n de da\'f1os incidentales o consecuentes, de modo que algunos de los t\'e9rminos anteriores podr\'edan no corresponder a usted. \par
\par
7.\tab RESCISI\'d3N. El presente Contrato se mantendr\'e1 vigente hasta que se produzca su rescisi\'f3n. Usted podr\'e1 rescindir el presente Contrato en cualquier oportunidad por medio de la destrucci\'f3n de todas las copias del Software. Sun podr\'e1 rescindir el presente Contrato en cualquier momento y sin notificaci\'f3n previa cuando usted no haya cumplido alguna de las cl\'e1usulas en \'e9l incluidas. Cualquiera de las partes podr\'e1 rescindir el presente Contrato de forma inmediata si el Software pasa a ser objeto, o en la opini\'f3n de cualquiera de las partes es probable que lo sea, de una reclamaci\'f3n por violaci\'f3n de los derechos de propiedad intelectual. Una vez rescindido el Contrato, deber\'e1 destruir todas las copias del Software. \par
\par
8.\tab NORMAS RELATIVAS A LA EXPORTACI\'d3N. El Software y toda la informaci\'f3n t\'e9cnica suministrada de conformidad con el presente Contrato se rigen por las leyes de control de exportaciones de Estados Unidos, as\'ed como por las normas relativas a la exportaci\'f3n o importaci\'f3n de otros pa\'edses. Usted se compromete a cumplir de forma estricta dichas leyes y normas, y reconoce su responsabilidad en la obtenci\'f3n de las licencias correspondientes de exportaci\'f3n, reexportaci\'f3n o importaci\'f3n que se requieran una vez que le haya sido efectuada la entrega. \par
\par
9.\tab MARCAS COMERCIALES Y LOGOTIPOS.\b \b0 El licenciatario y Sun acuerdan y reconocen que Sun es propietaria de las marcas comerciales SUN, SOLARIS, JAVA, JINI, FORTE e iPLANET, as\'ed como de todas las marcas comerciales, marcas de servicio, logotipos y otras designaciones de marcas relacionadas con SUN, SOLARIS, JAVA, JINI, FORTE e iPLANET (en adelante denominadas \ldblquote Marcas Sun\rdblquote ). El licenciatario se compromete a cumplir los Requisitos de uso de logotipos y marcas de Sun (Sun Trademark and Logo Usage Requirements) que encontrar\'e1 en el sitio Web de Sun en http://www.sun.com/policies/trademarks. Todo uso que d\'e9 a las marcas Sun redundar\'e1 en beneficio de Sun. \par
\par
10.\tab DERECHOS RESTRINGIDOS DEL GOBIERNO DE ESTADOS UNIDOS.\b \b0 Si el Software con licencia es adquirido por o en nombre del Gobierno de Estados Unidos, o bien por uno de sus contratistas o subcontratistas principales (a cualquier escala), los derechos del Gobierno sobre el Software y la documentaci\'f3n adjunta quedar\'e1n limitados a lo establecido en el presente Contrato, conforme a lo estipulado en 48 CFR 227.7201 hasta 227.7202-4 (relativo a las adquisiciones del Departamento de Defensa) y en 48 CFR 2.101 y 12.212 (sobre las adquisiciones que no sean por parte del Departamento de Defensa). \par
\par
11.\tab LEGISLACI\'d3N APLICABLE.\b \b0 Toda acci\'f3n judicial que pudiera emprenderse en relaci\'f3n con este Contrato se someter\'e1 a la jurisdicci\'f3n del estado de California, as\'ed como a la legislaci\'f3n federal aplicable de los Estados Unidos. Por consiguiente, no se aplicar\'e1 ninguna norma de elecci\'f3n de leyes correspondiente a cualquier jurisdicci\'f3n. \par
\par
12.\tab INDEPENDENCIA DE LAS CL\'c1USULAS CONTRACTUALES. La imposibilidad de cumplir alguna de las cl\'e1usulas del presente Contrato no afectar\'e1 al resto del Contrato, que seguir\'e1 siendo v\'e1lido sin dicha cl\'e1usula a menos que la omisi\'f3n de la misma pudiera perjudicar los prop\'f3sitos de las partes, en cuyo caso se considerar\'e1 rescindido el Contrato de forma inmediata. \par
\par
13.\tab TOTALIDAD DEL CONTRATO.\b \b0 A todos los efectos el presente Contrato se considerar\'e1 como el contrato \'fanico establecido entre usted y Sun en relaci\'f3n con el objeto descrito. \sub\v \nosupersub\v0 Por consiguiente, el presente Contrato invalida todo contacto, propuesta, manifestaci\'f3n o garant\'eda que se haya efectuado entre las partes, anterior o actual, oral o escrito, y prevalecer\'e1 en todo momento sobre los t\'e9rminos adicionales o contradictorios de cualquier texto, acuerdo, aceptaci\'f3n o contacto relativos al objeto del Contrato y que pudieran llevar a cabo las partes durante el per\'edodo de vigencia de \'e9ste. \sub\v \nosupersub\v0 Las modificaciones efectuadas sobre el presente Contrato no resultar\'e1n en modo alguno vinculantes si no se presentan por escrito y firmadas por un representante autorizado de cada parte. \par
\par
\pard\nowidctlpar\qc T\'c9RMINOS ADICIONALES DE LA LICENCIA\par
\pard\nowidctlpar\par
Estos T\'e9rminos Adicionales de la Licencia ampl\'edan o modifican los t\'e9rminos del Contrato de Licencia de C\'f3digo Binario. Los t\'e9rminos en may\'fasculas que no se definan en los presentes T\'e9rminos Adicionales mantendr\'e1n el mismo significado que se les ha atribuido en el Contrato de Licencia de C\'f3digo Binario. Los presentes T\'e9rminos Adicionales sustituyen cualquier t\'e9rmino del Contrato de Licencia de C\'f3digo Binario o de cualquier licencia contenida dentro del Software con los que sean contradictorios o incongruentes.\par
\par
\pard\nowidctlpar\fi-284\li710 A.\tab Uso interno del software y otorgamiento de la licencia de desarrollo. Sujeto a los t\'e9rminos y condiciones de este Acuerdo y a las restricciones y excepciones que se establecen en el archivo \ldblquote README\rdblquote del Software que se incorpora al presente por referencia, incluidas, sin limitaci\'f3n, las Restricciones de la Tecnolog\'eda Java de estos T\'e9rminos Adicionales, Sun le otorga una licencia no exclusiva, no transferible y limitada sin derechos de licencia, para reproducir y usar de manera interna el Software completo y sin modificar a los efectos de dise\'f1ar, desarrollar y probar sus Programas.\par
\par
B.\tab Licencia para la distribuci\'f3n del Software.\b \b0 En virtud de los t\'e9rminos y condiciones del presente Contrato y las restricciones y excepciones estipuladas en el archivo README del Software, incluidas, aunque no exclusivamente, las Restricciones de la Tecnolog\'eda Java de estos T\'e9rminos Adicionales, Sun le concede una licencia limitada, no exclusiva e intransferible, sin tarifa de licencia, para reproducir y distribuir el Software, siempre y cuando: i) distribuya el Software completo y sin modificar y \'fanicamente integrado como parte de sus Programas y con el s\'f3lo objeto de ejecutarlos, ii) los Programas a\'f1adan una funcionalidad sustancial y primaria al Software, iii) no distribuya software adicional con el prop\'f3sito de sustituir cualquier componente del Software iv) no elimine ni modifique las notificaciones ni los avisos de propiedad incluidos en el Software; v) distribuya el Software s\'f3lo mediante un contrato de licencia que proteja los intereses de Sun de conformidad con los t\'e9rminos establecidos en el Contrato, y vi) acuerde defender e indemnizar a Sun y a sus licenciantes por cualquier da\'f1o, costo, responsabilidad, transacci\'f3n extrajudicial o gasto (incluidos honorarios de abogados) que se deriven de cualquier reclamaci\'f3n, litigio o acci\'f3n de terceros como consecuencia del uso o distribuci\'f3n de cualquiera o de todos los Programas y/o Software.\par
\par
C.\tab Restricciones de la tecnolog\'eda Java.\sub \nosupersub Usted se compromete a no crear, modificar ni alterar el desempe\'f1o, ni autorizar a sus licenciatarios para crear, modificar ni alterar el desempe\'f1o de clases, interfaces ni subpaquetes que en cualquier modo se identifiquen como \ldblquote java\rdblquote , \ldblquote javax\rdblquote , \ldblquote sun\rdblquote o similares seg\'fan especifique Sun en cualquier designaci\'f3n de la convenci\'f3n de denominaci\'f3n.\par
\par
D.\tab C\'f3digo fuente. El Software puede contener c\'f3digo fuente que, a menos que se otorgue una licencia expresa para otros fines, se proporciona \'fanicamente con fines de referencia en virtud de los t\'e9rminos del presente Contrato. El c\'f3digo fuente no podr\'e1 redistribuirse a menos que as\'ed se estipule expl\'edcitamente en el presente Contrato.\par
\par
E.\tab C\'f3digo de terceros. En el archivo THIRDPARTYLICENSEREADME.txt se exponen avisos adicionales de derechos de autor y t\'e9rminos de licencia aplicables a partes del software. Adem\'e1s de cualquiera de los t\'e9rminos y condiciones de cualquier fuente abierta/licencia de freeware de terceros identificados en el archivo THIRDPARTYLICENSEREADME.txt, las disposiciones de la exclusi\'f3n de garant\'eda y limitaci\'f3n de responsabilidades comprendidas en los p\'e1rrafos 5 y 6 del Contrato de licencia de c\'f3digo binario se aplicar\'e1 a la totalidad del Software en lo concerniente a su distribuci\'f3n.\par
\par
F.\tab Resoluci\'f3n por violaci\'f3n. Cualquiera de las partes podr\'e1 resolver este Contrato de inmediato si alg\'fan Software es objeto de un reclamo por violaci\'f3n de un derecho de propiedad intelectual o, a criterio de alguna de las partes, pudiese serlo.\par
\par
G.\tab Instalaci\'f3n y actualizaci\'f3n autom\'e1tica. Los procesos de instalaci\'f3n y actualizaci\'f3n autom\'e1tica del Software transmiten una cantidad limitada de datos a Sun (o a su prestador de servicios) sobre esos procesos espec\'edficos para ayudar a Sun a comprenderlos y optimizarlos. Sun no asocia los datos con informaci\'f3n personal susceptible de ser identificada. Encontrar\'e1 m\'e1s informaci\'f3n sobre los datos recabados por Sun en http://java.com/data/.\par
\par
\pard\nowidctlpar Si tuviera alguna duda, escriba a: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, USA\par
}

View File

@@ -0,0 +1,55 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe2052{\fonttbl{\f0\fswiss\fprq2\fcharset0 Microsoft Sans Serif;}}
{\stylesheet{ Normal;}{\s1 heading 1;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\nowidctlpar\qc\lang1036\f0\fs16 Sun Microsystems, Inc.\par
Contrat de Licence de Code Objet\par
pour\par
JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\par
\par
\pard\nowidctlpar SUN MICROSYSTEMS, INC. (\'ab SUN \'bb) VOUS CONC\'c8DE EN VERTU DU PR\'c9SENT CONTRAT UNE LICENCE DU LOGICIEL IDENTIFI\'c9 CI-APR\'c8S, \'c0 L\rquote UNIQUE CONDITION QUE VOUS ACCEPTIEZ L\rquote ENSEMBLE DES DISPOSITIONS CONTENUES DANS LE PR\'c9SENT CONTRAT DE LICENCE DE CODE OBJET ET DANS LES DISPOSITIONS ADDITIONNELLES (COLLECTIVEMENT, LE \'ab CONTRAT \'bb). VEUILLEZ LIRE ATTENTIVEMENT LE PR\'c9SENT CONTRAT. \caps En T\'c9L\'c9CHARGEANT OU EN installant ce logiciel, VOUS accepteZ les conditions du CONTRAT. VEUILLEZ\caps0 INDIQUER VOTRE ACCEPTATION EN CLIQUANT SUR LE BOUTON \'ab ACCEPTER \'bb AU BAS DU CONTRAT. \caps Si VOUS N\rquote ACCEPTEZ PAS TOUTES LES dispositions DES PR\caps0\'c9\caps SENTES, VOUS DEVEZ CLIQUER SUR le bouton \'ab refusER \'bb au bas DU CONTRAT, et le processus DE T\'c9L\'c9CHARGEMENT OU d\rquote installation s\rquote interrompra\caps0 .\par
\par
\pard\nowidctlpar\fi-284\li710 1.\tab D\'c9FINITIONS. \'ab Logiciel \'bb d\'e9signe le logiciel indiqu\'e9 ci-dessus, sous forme de code objet, toutes autres informations assimilables par machine, y compris notamment, des biblioth\'e8ques, fichiers source, fichiers d\rquote en-t\'eate et fichiers de donn\'e9es, des mises \'e0 jour ou corrections d\rquote erreurs fournies par Sun, ainsi que des manuels d\rquote utilisateur, des guides de programmation et tous autres documents qui vous sont fournis par Sun en vertu du pr\'e9sent Contrat. \'ab Programmes \'bb d\'e9signe les applets Java et les applications destin\'e9es \'e0 fonctionner sur une plate-forme Java Standard Edition (Java SE), sur les ordinateurs de bureau ou les serveurs universels, sous Java.\par
\par
2.\tab LICENCE D'UTILISATION. Sous r\'e9serve des dispositions du pr\'e9sent Contrat, y compris notamment les Restrictions Relatives \'e0 la Technologie Java des Dispositions Additionnelles \'e0 la Licence, Sun vous conc\'e8de une licence gratuite, limit\'e9e, non exclusive et non transf\'e9rable, pour la reproduction et l\rquote utilisation interne du Logiciel, complet et non modifi\'e9, dans le seul but d\rquote ex\'e9cuter des Programmes. \par
\par
3.\tab LIMITATIONS. Le Logiciel est de nature confidentiel et prot\'e9g\'e9 par copyright et/ou droit d'auteur. Le Logiciel et tous les droits de propri\'e9t\'e9 intellectuelle qui y sont attach\'e9s demeurent la propri\'e9t\'e9 de Sun et/ou de ses Conc\'e9dants. Sous r\'e9serve de la loi applicable, vous n\rquote\'eates pas autoris\'e9 \'e0 modifier ou \'e0 d\'e9compiler le Logiciel, ou \'e0 effectuer de l\rquote ing\'e9nierie inverse. Le Titulaire de la Licence reconna\'eet que le Logiciel sous licence n'a pas \'e9t\'e9 ni con\'e7u, ni destin\'e9 pour \'eatre utilis\'e9 pour la conception, la construction, l'exploitation ou la maintenance d'installations nucl\'e9aires. Sun Microsystems, Inc. ne fournie aucune garantie expresse ou tacite quant \'e0 la convenance \'e0 ce type d'utilisation. Aucun droit, titre ou int\'e9r\'eat, quel qu'il soit, concernant toute marque commerciale, marque de service, logo ou nom commercial de Sun ou de ses conc\'e9dants n'est conc\'e9d\'e9 en vertu du pr\'e9sent Contrat. Des dispositions additionnelles aux licences pour les d\'e9veloppeurs et/ou les \'e9diteurs figurent dans les Dispositions Additionnelles \'e0 la Licence.\par
\par
4.\tab LIMITATION DE GARANTIE. Sous r\'e9serve d\rquote une utilisation normale du Logiciel, Sun garantit, sur pr\'e9sentation d\rquote une preuve d\rquote achat, durant une p\'e9riode de quatre-vingt-dix (90) jours \'e0 compter de sa date d'acquisition, le support sur lequel le Logiciel est fourni (le cas \'e9ch\'e9ant) est exempt de tout vice de mati\'e8re et de fabrication. A l\rquote exception de la garantie qui pr\'e9c\'e8de, le Logiciel est fourni \'ab\~EN L'\'c9TAT\'bb.\~ La seule indemnit\'e9 et la seule responsabilit\'e9 de Sun au titre de la pr\'e9sente se limite, au choix de Sun, au remplacement du Logiciel ou au remboursement de la redevance vers\'e9e pour le Logiciel. Toute garantie implicite relative au Logiciel est limit\'e9e \'e0 90 jours. Certains \'c9tats n\rquote autorisent pas la limitation de la dur\'e9e des garanties implicites. Il est donc possible que ce qui pr\'e9c\'e8de ne s\rquote applique pas \'e0 vous\scaps .\scaps0 La pr\'e9sente garantie limit\'e9e vous conf\'e8re des droits l\'e9gaux sp\'e9cifiques. Il se peut que vous en ayez d\rquote autres, susceptibles de varier d\rquote un \'c9tat \'e0 un autre.\par
\par
5.\tab EXCLUSION DE GARANTIE. SAUF DISPOSITION CONTRAIRE DU PR\'c9SENT CONTRAT, TOUTES GARANTIES EXPRESSES OU TACITES, Y COMPRIS TOUTE GARANTIE IMPLICITE DE QUALIT\'c9 MARCHANDE OU D\rquote AD\'c9QUATION \'c0 UN USAGE PARTICULIER OU DE NON-CONTREFA\'c7ON SONT EXCLUES, SAUF DANS LA MESURE OU DE TELLES EXCLUSIONS NE SONT PAS AUTORIS\'c9ES PAR LA LOI.\par
\par
6.\tab LIMITATION DE RESPONSABILIT\'c9. DANS LES LIMITES AUTORIS\'c9ES PAR LA LOI, SUN OU SES CONC\'c9DANTS NE POURRONT EN AUCUN CAS \'caTRE RESPONSABLES DE TOUTES PERTE DE REVENUES, PERTE DE PROFITS OU PERTE DE DONN\'c9ES, NI DE TOUT DOMMAGE SP\'c9CIAL, INCIDENT, CONS\'c9CUTIF, INDIRECT OU PUNITIF, QUELLE QUE SOIT LA CAUSE ET LE FONDEMENT DE LA RESPONSABILIT\'c9, R\'c9SULTANT DE L\rquote UTILISATION OU DE L\rquote IMPOSSIBILIT\'c9 D\rquote UTILISER LE LOGICIEL, Y COMPRIS LORSQUE SUN AVAIT CONNAISSANCE DE L\rquote\'c9VENTUALIT\'c9 DE TELS DOMMAGES. Dans tous les cas, la responsabilit\'e9 de Sun \'e0 votre \'e9gard, qu\rquote elle soit de nature contractuelle, d\'e9lictuelle ou autre, ne pourra exc\'e9der le montant pay\'e9, ou en l\rquote absence de paiement, le montant d\'fb en vertu du pr\'e9sent Contrat. Les limitations stipul\'e9es ci-dessus s\rquote appliquent m\'eame en cas de non-respect de l\rquote objet principal de la garantie mentionn\'e9e ci-dessus. Certains \'c9tats ne permettent pas l\rquote exclusion des dommages incidents ou cons\'e9cutifs\~; il est donc possible que certaines des dispositions ci-dessus ne s\rquote appliquent pas \'e0 vous. \par
\par
7.\tab R\'c9SILIATION. Le pr\'e9sent Contrat reste en vigueur jusqu'\'e0 sa date de r\'e9siliation. Vous pouvez, \'e0 tout moment, r\'e9silier le pr\'e9sent Contrat, en d\'e9truisant toutes les copies du Logiciel. Le pr\'e9sent Contrat sera r\'e9sili\'e9 par Sun de plein droit, et sans mise en demeure pr\'e9alable, en cas de non-respect de votre part d'une quelconque disposition du pr\'e9sent Contrat. Chaque partie peut de plein droit et sans mise en demeure pr\'e9alable, r\'e9silier le pr\'e9sent Contrat dans le cas o\'f9 le Logiciel deviendrait, ou risquerait de devenir, selon l\rquote avis de l\rquote une ou l\rquote autre des parties, l\rquote objet d\rquote une action en contrefa\'e7on d\rquote un droit de propri\'e9t\'e9 intellectuelle. En cas de R\'e9siliation, vous devez d\'e9truire toutes les copies du Logiciel.\par
\par
8.\tab DISPOSITIONS APPLICABLES \'c0 L'EXPORTATION. Tout Logiciel et donn\'e9es techniques livr\'e9s dans le cadre du pr\'e9sent Contrat sont soumis \'e0 la l\'e9gislation des \'c9tats-Unis sur le contr\'f4le des exportations, et peuvent \'e9galement \'eatre soumis aux lois d'autres pays relatives aux importations et aux exportations. Vous vous engagez \'e0 respecter strictement ces lois et ces r\'e8glements et reconnaissez qu'il vous appartient d'obtenir toutes les licences n\'e9cessaires en vue de l\rquote exportation, de la r\'e9exportation ou de l\rquote importation de ces Logiciels et donn\'e9e technique apr\'e8s leur livraison.\par
\par
9.\tab MARQUES D\'c9POS\'c9ES ET LOGOS. Vous reconnaissez et acceptez que Sun est propri\'e9taire des marques d\'e9pos\'e9es suivantes\~: SUN, SOLARIS, JAVA, JINI, FORTE et iPLANET, ainsi que de toutes les marques commerciales, marques de service, logos et autres signes distinctifs associ\'e9s \'e0 SUN, SOLARIS, JAVA, JINI, FORTE et iPLANET (les \'ab Marques Sun \'bb) et vous acceptez de respecter les r\'e8gles relatives \'e0 l\rquote utilisation des Marques Sun telles qu'elles figurent sur le site: http://www.sun.com/policies/trademarks. Toutes les utilisations que vous ferez des Marques Sun devront l\rquote\'eatre dans un sens favorable \'e0 Sun.\par
\par
10.\tab UTILISATEURS DU GOUVERNEMENT DES \'c9TATS-UNIS. Conform\'e9ment aux dispositions 48 CFR 227.7201 \'e0 227.7202-4 (acquisitions du Minist\'e8re de la D\'e9fense (DOD)) et aux dispositions 48 CFR 2.101 et 12.212 (acquisitions non-DOD), si le Logiciel a \'e9t\'e9 acquis par le gouvernement des \'c9tats-Unis ou pour le compte de celui-ci, ou par un fournisseur ou sous-traitant principal du gouvernement des \'c9tats-Unis (\'e0 tout niveau), les droits du gouvernement sur le Logiciel et sa documentation seront uniquement ceux stipul\'e9s dans le pr\'e9sent Contrat.\par
\par
11.\tab LOI APPLICABLE. Tout litige relatif au pr\'e9sent Contrat est soumis \'e0 la loi de l\rquote Etat de Californie et \'e0 la r\'e9glementation f\'e9d\'e9rale am\'e9ricaine applicable. Aucune r\'e8gle de conflit de loi ne sera applicable.\par
\par
12.\tab NON-VALIDIT\'c9 PARTIELLE. Si l\rquote une quelconque des dispositions du pr\'e9sent Contrat est nulle ou inopposable, le Contrat demeura applicable, \'e0 l'exception de cette disposition. Toutefois, si la nullit\'e9 ou l\rquote inopposabilit\'e9 de cette disposition \'e9tait contraire \'e0 l'intention des parties, ce Contrat serait alors r\'e9sili\'e9 de plein droit et sans mise en demeure pr\'e9alable.\par
\par
13.\tab INT\'c9GRALIT\'c9 DE L'ACCORD. Le pr\'e9sent Contrat constitue l'int\'e9gralit\'e9 de l'accord entre vous et Sun concernant son objet. Il annule et remplace toutes les communications \'e9crites ou orales, propositions, d\'e9clarations et garanties, pr\'e9sentes ou pass\'e9es, et pr\'e9vaut sur toute disposition contradictoire ou additionnelle de tout autre devis, commande, confirmation ou communication entre les parties concernant l'objet du Contrat, et ce, pendant toute la dur\'e9e du Contrat. Le pr\'e9sent contrat ne peut \'eatre modifi\'e9 que par un avenant \'e9crit et sign\'e9e par un repr\'e9sentant habilit\'e9 de chacune des parties.\par
\par
\pard\keepn\nowidctlpar\s1 DISPOSITIONS ADDITIONNELLES AU CONTRAT DE LICENCE\par
\pard\nowidctlpar\par
Les pr\'e9sentes Dispositions Additionnelles \'e0 la Licence compl\'e8tent ou modifient les dispositions du Contrat de Licence de Code Objet. Les termes en majuscules non d\'e9finis dans les pr\'e9sentes Dispositions Additionnelles ont la m\'eame signification que celle qui leur a \'e9t\'e9 attribu\'e9e dans le Contrat de Licence de Code Objet. Les dispositions des pr\'e9sentes Dispositions Additionnelles annulent et remplacent toute disposition incompatible ou contradictoire du Contrat de Licence de Code Objet ou de toute licence jointe au Logiciel.\par
\par
\pard\nowidctlpar\fi-284\li710 A.\tab Octroi de licence pour l\rquote usage interne et le d\'e9veloppement du logiciel. Sous r\'e9serve des conditions g\'e9n\'e9rales du pr\'e9sent contrat et des restrictions et exceptions stipul\'e9es dans le fichier LISEZMOI (README) ci-inclus pour r\'e9f\'e9rence du logiciel, y compris, mais sans s\rquote y limiter, les restrictions de Java Technology aux pr\'e9sentes conditions compl\'e9mentaires, Sun vous conc\'e8de sans suppl\'e9ment une licence limit\'e9e non-exclusive et non transf\'e9rable vous donnant droit de reproduire et d\rquote utiliser en interne le logiciel dans son int\'e9gralit\'e9 et non modifi\'e9 aux fins de conception, de d\'e9veloppement et d\rquote essai de vos programmes.\par
\par
B.\tab Licence de Distribution de Logiciel. Sous r\'e9serve des dispositions du pr\'e9sent Contrat et des restrictions et exclusions stipul\'e9es dans le fichier README du Logiciel, et notamment des Restrictions Relatives \'e0 la Technologie Java des pr\'e9sentes Dispositions Additionnelles, Sun vous conc\'e8de une licence gratuite non exclusive, non transf\'e9rable et limit\'e9e de reproduire et distribuer le Logiciel, sous r\'e9serve des conditions suivantes : (i) vous distribuez le Logiciel dans son int\'e9gralit\'e9 et exempt de toute modification et uniquement s'il est int\'e9gr\'e9 \'e0 vos Programmes et dans le seul but de leur ex\'e9cution, (ii) les Programmes ajoutent une fonctionnalit\'e9 significative et essentielle au Logiciel, (iii) vous ne distribuez pas de logiciel suppl\'e9mentaire visant \'e0 se substituer aux composants du Logiciel, (iv) vous ne supprimez et ne modifiez aucune mention ou notice relative \'e0 la propri\'e9t\'e9 du Logiciel, (v) vous ne distribuez le Logiciel qu'en vertu d'un contrat de licence prot\'e9geant les int\'e9r\'eats de Sun et se conformant aux dispositions du pr\'e9sent Contrat, et (vi) vous acceptez de d\'e9fendre, garantir et indemniser Sun et ses conc\'e9dants contre tous dommages, co\'fbts, responsabilit\'e9s, tout montant et/ou d\'e9pense li\'e9(e) \'e0 une transaction (y compris les honoraires d'avocats), r\'e9sultant d'une action, r\'e9clamation ou de poursuites intent\'e9es par un tiers du fait de l'utilisation ou de la distribution des Programmes et/ou du Logiciel.\par
\par
C.\tab Restrictions Relatives \'e0 la Technologie Java. Vous ne pouvez pas d\'e9velopper, modifier, ni changer, ni autoriser vos licenci\'e9s \'e0 d\'e9velopper ou \'e0 modifier ou changer le comportement des classes, interfaces ou sous-progiciels pouvant \'eatre identifi\'e9es, de quelque fa\'e7on que ce soit, comme \'abjava\'bb, \'abjavax\'bb, \'absun\'bb ou autres d\'e9nominations similaires, telles que sp\'e9cifi\'e9es par Sun dans toute convention ayant trait \'e0 une d\'e9nomination commerciale.\par
\par
D.\tab Code source. Le Logiciel peut contenir des codes sources, lesquelles ne sont fournies qu'\'e0 titre de r\'e9f\'e9rence, conform\'e9ment aux dispositions du pr\'e9sent Contrat. Sauf disposition expresse contraire du pr\'e9sent Contrat, les codes sources ne peuvent pas \'eatre redistribu\'e9s.\par
\par
E.\tab Code de tiers. Des mentions de droit d\rquote auteur et des dispositions suppl\'e9mentaires de licence applicables \'e0 des parties du Logiciel figurent dans le fichier THIRDPARTYLICENSEREADME.txt. En plus de toutes les conditions g\'e9n\'e9rales de licence de logiciel libre/logiciel gratuit de tiers identifi\'e9es dans le fichier THIRDPARTYLICENSEREADME.txt, les dispositions en mati\'e8re d\rquote exon\'e9ration et de limitation de garantie des paragraphes 5 et 6 du Contrat de Licence de Code Objet s\rquote appliqueront \'e0 tout Logiciel contenu dans la pr\'e9sente distribution.\par
\par
F.\tab R\'e9siliation pour non-respect. L\rquote une ou l\rquote autre partie a le droit de r\'e9silier le pr\'e9sent contrat imm\'e9diatement dans le cas o\'f9 un logiciel deviendrait, ou serait cens\'e9 devenir de l\rquote avis de l\rquote une ou l\rquote autre partie, l\rquote objet d\rquote une r\'e9clamation pour non-respect du droit de la propri\'e9t\'e9 intellectuelle. \par
\par
G.\tab Installation et mise \'e0 jour automatique. Les proc\'e9d\'e9s d\rquote installation et de mise \'e0 jour automatique du logiciel transmettent \'e0 Sun (ou ses prestataires de services) un volume restreint de donn\'e9es sur lesdits proc\'e9d\'e9s, et ce dans le seul et unique but d\rquote aider Sun \'e0 mieux les comprendre et les optimiser. Sun ne saurait aucunement associer les donn\'e9es avec des informations personnellement identifiables. Pour plus de d\'e9tails sur les donn\'e9es collect\'e9es par Sun, consultez http://java.com/data/.\par
\par
\pard\nowidctlpar Pour toute demande d'informations, veuillez vous adresser \'e0 : Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054, \'c9tats-Unis.\par
}

View File

@@ -0,0 +1,56 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe2052{\fonttbl{\f0\fswiss\fprq2\fcharset0 Microsoft Sans Serif;}}
{\colortbl ;\red0\green0\blue0;}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\nowidctlpar\qc\lang1040\f0\fs16 Sun Microsystems, Inc.\par
Contratto di licenza del codice binario\par
\par
per\par
\par
JAVA SE RUNTIME ENVIRONMENT (JRE) VERSIONE 6\par
\par
\pard\nowidctlpar LA SUN MICROSYSTEMS, INC. (QUI DI SEGUITO CHIAMATA \ldblquote SUN\rdblquote ) CONCEDE ALL\rquote UTENTE LA LICENZA PER L'USO DEL SOFTWARE DI SEGUITO INDICATO, SOLO PREVIA ACCETTAZIONE DI TUTTE LE CONDIZIONI RIPORTATE NEL PRESENTE CONTRATTO DI LICENZA DEL CODICE BINARIO E NELLE CONDIZIONI AGGIUNTIVE ALLA LICENZA FORNITE (COLLETTIVAMENTE QUI DI SEGUITO CHIAMATE "CONTRATTO\rdblquote ). LEGGERE ATTENTAMENTE IL PRESENTE CONTRATTO. \cf1 LO SCARICO O L\rquote INSTALLAZIONE DEL SOFTWARE COMPORTANO L\rquote ACCETTAZIONE DELLE CONDIZIONI DEL CONTRATTO. ESPRIMERE L\rquote ACCETTAZIONE SELEZIONANDO IL PULSANTE "ACCETTO" IN FONDO AL CONTRATTO. SE L\rquote UTENTE NON INTENDE ESSERE VINCOLATO DA TUTTE LE CONDIZIONI, SELEZIONARE IL PULSANTE "NON ACCETTO" IN FONDO AL CONTRATTO, E LA PROCEDURA DI SCARICO O DI INSTALLAZIONE VERR\'c0 INTERROTTA. \par
\par
\pard\nowidctlpar\fi-284\li710\cf0 1.\tab DEFINIZIONI.\b \cf1\b0 Per "Software" si intendono: il Software identificato sopra in forma binaria, altri materiali leggibili dal computer (compresi, a titolo esemplificativo ma non limitativo, librerie, file sorgente, file di intestazione e file di dati), ogni aggiornamento o correzione di errori forniti dalla Sun ed ogni manuale per l\rquote Utente, le guide alla programmazione e altra documentazione forniti dalla Sun all\rquote Utente ai sensi del presente Contratto. Per \ldblquote Programmi\rdblquote si intendono le applet e le applicazioni Java destinate a girare sulla piattaforma Java, Standard Edition (Java SE) su computer e server abilitati Java per scopi generali. \line\par
\cf0 2.\tab LICENZA D'USO. \cf1 In conformit\'e0 alle condizioni e ai termini di cui al presente Contratto, comprese, a titolo esemplificativo ma non limitativo, le Limitazioni relative alla Tecnologia Java,\b \cf0\b0 riportate nelle Condizioni Aggiuntive alla Licenza, la Sun concede all'Utente una licenza limitata non esclusiva e non trasferibile, senza corresponsione di oneri di licenza, per la riproduzione e l'utilizzo interno del \cf1 Software, completo e non modificato, al solo scopo di eseguire i Programmi. Ulteriori licenze per sviluppatori e/o editori sono concesse secondo le disposizioni riportate nelle Condizioni Aggiuntive alla Licenza. \cf0\par
\par
3.\tab LIMITAZIONI. Il Software \'e8 riservato e tutelato dalle norme che regolano il diritto d'autore. La Sun e i suoi concessori di licenza conservano la titolarit\'e0 del Software e di tutti i diritti di propriet\'e0 intellettuale ad esso correlati. Salvo nel caso in cui tale divieto sia contrario alle leggi vigenti, \'e8 vietato modificare, decompilare o decodificare (reverse engineering) il Software. L\rquote Utente riconosce che il Software ricevuto in licenza non \'e8 progettato o destinato all'uso per la progettazione, la costruzione, il funzionamento o la manutenzione di qualunque tipo di impianto nucleare. La Sun Microsystems, Inc. non si assume alcuna garanzia, esplicita o implicita, di idoneit\'e0 per tali finalit\'e0 d'uso. Il presente Contratto non implica la concessione di alcun diritto, propriet\'e0 o interesse relativamente a qualunque marchio, marchio di servizio, logo o marca della Sun o dei suoi concessori di licenza. Ulteriori limitazioni riguardanti gli sviluppatori e/o gli editori sono riportate nelle Condizioni Aggiuntive alla Licenza. \par
\par
4.\tab LIMITAZIONI DI GARANZIA. La Sun garantisce che il supporto (eventuale) su cui viene fornito il Software, sar\'e0 privo di vizi nel materiale e difetti di fabbricazione, in condizioni d'uso normali, per un periodo di novanta (90) giorni a decorrere dalla data di acquisto, indicata sullo scontrino fiscale di acquisto. Salva la garanzia sopraccitata, il Software viene fornito "COS\'cc COM'\'c8". Ai sensi della garanzia limitata, l'unica tutela dell'Utente, nonch\'e9 unica responsabilit\'e0 della Sun, comporta la sostituzione del supporto del Software oppure il rimborso del prezzo di acquisto del Software, a discrezione della Sun. Tutte le garanzie implicite per il Software hanno una validit\'e0 limitata a 90 giorni. Alcuni Stati vietano le limitazioni di durata alle garanzie implicite; pertanto, le suddette limitazioni potrebbero non riguardare tutti gli Utenti. La presente garanzia limitata conferisce all\rquote Utente diritti legali ben precisi. L\rquote Utente pu\'f2 godere di altri diritti, variabili da Stato a Stato. \par
\par
5.\tab ESCLUSIONE DI GARANZIA. AD ECCEZIONE DI QUANTO RIPORTATO NEL PRESENTE CONTRATTO, \'c8 ESCLUSA QUALUNQUE ALTRA CONDIZIONE, DICHIARAZIONE E GARANZIA, ESPRESSA O IMPLICITA, COMPRESE LE GARANZIE IMPLICITE DI COMMERCIABILIT\'c0 E DI IDONEIT\'c0 AD UNO SCOPO SPECIFICO O DI NON VIOLAZIONE DI DIRITTI ALTRUI, SALVO NEL CASO IN CUI TALI ESCLUSIONI DI GARANZIA SIANO RITENUTE NULLE AI SENSI DELLE LEGGI VIGENTI.\par
\par
6.\tab LIMITAZIONI DI RESPONSABILIT\'c0. ENTRO I LIMITI PREVISTI DALLA LEGGE, LA SUN O I SUOI CONCESSORI DI LICENZA NON SARANNO IN ALCUN CASO RESPONSABILI PER EVENTUALI PERDITE DI RICAVI, PROFITTI O DATI, N\'c9 PER DANNI SPECIALI, INDIRETTI, EMERGENTI, INCIDENTALI O PER RISARCIMENTI ESEMPLARI, QUALUNQUE SIA LA CAUSA, INDIPENDENTEMENTE DALLA TEORIA DELLA RESPONSABILIT\'c0 CORRELATA O DERIVANTE DALL'USO DEL SOFTWARE O ALL'IMPOSSIBILIT\'c0 AD UTILIZZARLO, ANCHE QUALORA LA SUN SIA STATA INFORMATA DELLA POSSIBILIT\'c0 DEL VERIFICARSI DI TALI DANNI. Ai sensi del presente Contratto, in nessun caso, inclusi i casi di colpa (compresa la negligenza) o l'adempimento contrattuale, la responsabilit\'e0 della Sun nei confronti dell'Utente potr\'e0 eccedere l'importo pagato dall'Utente per il Software. Le limitazioni sopraccitate vengono applicate anche nel caso in cui la garanzia citata non adempia al suo scopo essenziale. Alcuni Stati vietano l\rquote esclusione dei danni incidentali o consequenziali; pertanto, alcune delle suddette condizioni potrebbero non riguardare alcuni Utenti. \par
\par
7.\tab RISOLUZIONE. Il presente Contratto rimane in vigore fino alla sua risoluzione. L'Utente pu\'f2 risolvere il Contratto in qualunque momento mediante la distruzione di tutte le copie del Software in suo possesso. L'inosservanza di una qualsiasi condizione o disposizione del presente Contratto comporta la sua risoluzione immediata senza preavviso da parte della Sun. \cf1 Ciascuna parte potr\'e0 risolvere il presente Contratto con effetto immediato qualora il Software costituisca, o possa costituire secondo il giudizio di una delle parti, oggetto di una rivendicazione per violazione di diritti di propriet\'e0 intellettuale. \cf0 All'atto della risoluzione del Contratto, l'Utente \'e8 tenuto a distruggere tutte le copie del Software in suo possesso.\par
\par
8.\tab NORMATIVE SULLE ESPORTAZIONI. Tutto il Software e i dati tecnici forniti ai sensi del presente Contratto sono soggetti alle leggi sulle esportazioni degli Stati Uniti d'America e possono essere soggetti alle leggi sulle esportazioni e importazioni in altri paesi. L'Utente si impegna a rispettare rigorosamente tutte le normative e le leggi in materia; inoltre, si assume la responsabilit\'e0 di procurarsi eventuali licenze di esportazione, riesportazione o importazione che risultassero necessarie ad la avvenuta consegna del Software.\par
\par
\cf1 9.\tab MARCHI E LOGO. L\rquote Utente accetta e riconosce nei confronti della Sun che i marchi SUN, SOLARIS, JAVA, JINI, FORTE e iPLANET, nonch\'e9 tutti i marchi, marchi di servizio, i logo e le altre designazioni di marchio correlate a SUN, SOLARIS, JAVA, JINI, FORTE e iPLANET (qui di seguito chiamati "Marchi Sun") sono di propriet\'e0 della Sun. L\rquote Utente accetta altres\'ec di rispettare le condizioni d\rquote utilizzo dei marchi e dei logo Sun attualmente riportate nel sito http://www.sun.com/policies/trademarks. Qualunque uso dei Marchi Sun da parte dell\rquote Utente andr\'e0 a beneficio della Sun.\par
\par
\cf0 10.\tab DIRITTI LIMITATI DEL GOVERNO DEGLI STATI UNITI. Se il Software viene acquistato da parte o per conto del Governo degli Stati Uniti o da parte di un suo committente primario o subappaltatore (di qualsiasi livello), i diritti del Governo sul Software e la relativa documentazione sono quelli specificati nel presente Contratto, ai sensi delle norme da 48 CFR 227.7201 fino a 227.7202-4 (per acquisti destinati al Ministero della Difesa, ovvero DOD), e da 48 CFR 2.101 a 12.212 (per acquisti non destinati al Ministero della Difesa, ovvero DOD).\par
\par
11.\tab LEGISLAZIONE APPLICABILE. Ogni azione giudiziaria relativa al presente Contratto sar\'e0 soggetta alla legislazione dello Stato della California e alle leggi federali applicabili degli Stati Uniti. La scelta di altre legislazioni o giurisdizioni non \'e8 prevista.\par
\b\par
\b0 12.\tab INVALIDIT\'c0 PARZIALE. Se una qualunque disposizione del presente Contratto risultasse non valida, il Contratto resta in vigore con tale disposizione omessa, salvo i casi in cui tale omissione faccia s\'ec che il Contratto non rappresenti pi\'f9 la volont\'e0 delle parti, nel qual caso il Contratto viene immediatamente risolto.\par
\par
13.\tab INTEGRAZIONE. Il presente Contratto costituisce l'intero accordo stipulato tra la Sun e l'Utente in relazione all'oggetto contrattuale. Il presente Contratto sostituisce eventuali comunicazioni, proposte, dichiarazione e garanzie, passate o presenti, scritte od orali, e prevale su qualunque condizione aggiuntiva o contrastante riportata in qualsiasi offerta, ordine di acquisto, conferma d'ordine o altro tipo di comunicazione tra le parti relativamente all'oggetto del contratto per tutta la sua durata. Eventuali modifiche al presente Contratto sono vincolanti solo se redatte in forma scritta e debitamente firmate da un incaricato debitamente autorizzato di ciascuna delle parti.\par
\pard\nowidctlpar\fi-264\li690\tx690\par
\pard\nowidctlpar CONDIZIONI AGGIUNTIVE ALLA LICENZA\par
\par
Le condizioni aggiuntive alla licenza riportate di seguito integrano o modificano le condizioni del Contratto di Licenza del Codice Binario. I termini con l'iniziale maiuscola che non sono definite nelle presenti Condizioni Aggiuntive avranno il significato ad esse attribuito nel Contratto di Licenza del Codice Binario. Le presenti Condizioni Aggiuntive sostituiscono eventuali condizioni contrastanti o contraddittorie eventualmente riportate nel Contratto di Licenza del Codice Binario o in qualunque licenza in seno al Software.\par
\par
\pard\nowidctlpar\fi-284\li710 A.\tab Utilizzo interno del software e concessione della licenza di sviluppo. Secondo i termini di questo contratto e le restrizioni e le eccezioni stabilite nel file \ldblquote README\rdblquote del software, integrato qui per riferimento, ivi comprese a titolo esemplificativo ma non esaustivo le restrizioni alla tecnologia Java di questi termini supplementari, Sun concede all'utente una licenza gratuita limitata, non esclusiva e non trasferibile, per riprodurre e utilizzare internamente il software, completo e non modificato, allo scopo di progettare, sviluppare e collaudare i suoi programmi.\par
\par
B.\tab Licenza per la distribuzione del Software. In conformit\'e0 alle condizioni e ai termini riportati nel presente Contratto e soggetto alle limitazioni ed eccezioni di cui al file \ldblquote LEGGIMI\rdblquote del Software, comprese, a titolo esemplificativo ma non limitativo, le Limitazioni relative alla Tecnologia Java di queste Condizioni Aggiuntive, Sun concede all'Utente una licenza limitata, non esclusiva e non trasferibile, senza corresponsione di oneri, per la riproduzione e la distribuzione del Software a condizione che: (i) l'Utente distribuisca il Software completo e non modificato, unito ("bundled") ai Programmi dell'Utente ed esclusivamente allo scopo di eseguirli, (ii) i Programmi aggiungano funzionalit\'e0 significativa e primaria al Software, (iii) l'Utente non distribuisca altro software che sia inteso a sostituire un qualsiasi componente del Software, (iv) l'Utente non rimuova n\'e9 alteri avvisi o legende di propriet\'e0 esclusiva inclusi nel Software, (v) l'Utente distribuisca il Software solamente a seguito di un contratto di licenza che protegga gli interessi della Sun in conformit\'e0 alle condizioni di cui al presente Contratto, e (vi) l'Utente acconsenta a tenere indenne e ad indennizzare la Sun e i suoi concedenti di licenze contro richieste di risarcimenti danni, costi, responsabilit\'e0, somme e/o costi dovuti a titolo di composizione di eventuali vertenze (compresi oneri legali), sostenuti n connessione a rivendicazioni, azioni legali o azioni di terzi, risultanti o derivanti dall'uso o dalla distribuzione di uno o pi\'f9 Programmi e/o del Software.\par
\par
C.\tab Limitazioni relative alla Tecnologia Java\b . \b0 L'Utente s'impegna a non creare, modificare o cambiare il comportamento, n\'e9 ad autorizzare i propri licenziatari a creare, modificare, o cambiare il comportamento, di classi, interfacce o pacchetti secondari che siano in qualsiasi modo identificati come "java", "javax", "sun" o nomi simili, secondo quanto specificato dalla Sun nelle convenzioni di denominazione. \par
\par
D.\tab Codice sorgente. Il Software potrebbe contenere un codice sorgente che, se non espressamente concesso in licenza per altri scopi, viene fornito esclusivamente a scopo di riferimento, ai sensi delle condizioni del presente Contratto. \'c8 vietata la ridistribuzione del codice sorgente, salvo nei casi espressamente previsti dal presente Contratto.\par
\par
E.\tab Codice di terzi. Ulteriori avvisi di copyright e condizioni di concessione d'uso in licenza applicabili a parti del Software sono riportati nel file THIRDPARTYLICENSEREADME.txt. Il Software oggetto di questa distribuzione \'e8 soggetto, oltre ad eventuali termini e condizioni di licenza opensource/freeware di terzi identificati nel file THIRDPARTYLICENSEREADME.txt, anche alle disposizioni relative all\rquote esclusione della garanzia e alla limitazione delle responsabilit\'e0 di cui ai paragrafi 5 e 6 del Contratto di Licenza del Codice Binario.\par
\par
F.\tab Rescissione per violazione. Entrambe le parti possono rescindere immediatamente il contratto nel caso in cui il software diventi (o sia probabile che il software diventi, secondo l'opinione di una delle parti) oggetto di un reclamo per violazione di qualsiasi diritto di propriet\'e0 intellettuale.\par
\par
G.\tab Installazione e aggiornamento automatico. Le procedure di installazione e aggiornamento automatico del software trasmettono a Sun (o al suo fornitore di servizi) una quantit\'e0 limitata di dati su questi processi specifici, per facilitarne la comprensione e l'ottimizzazione da parte di Sun. Sun non associa i dati a informazioni che permettano l'identificazione degli utenti. Ulteriori informazioni sulle procedure di raccolta dei dati effettuate da Sun sono disponibili all'indirizzo http://java.com/data/.\par
\pard\nowidctlpar\par
Per ulteriori informazioni contattare: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, CA 95054, Stati Uniti \par
}

View File

@@ -0,0 +1,613 @@
{\rtf1\adeflang1025\ansi\ansicpg1252\uc2\adeff0\deff0\stshfdbch11\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt MS Gothic};}
{\f11\froman\fcharset128\fprq1{\*\panose 02020609040205080304}\'82\'6c\'82\'72 \'96\'be\'92\'a9{\*\falt ?l?r ??\'81\'66c};}{\f38\froman\fcharset128\fprq1{\*\panose 02020609040205080304}@\'82\'6c\'82\'72 \'96\'be\'92\'a9;}
{\f92\fmodern\fcharset128\fprq2{\*\panose 020b0600070205080204}MS UI Gothic;}{\f93\fmodern\fcharset128\fprq2{\*\panose 020b0600070205080204}@MS UI Gothic;}{\f255\froman\fcharset238\fprq2 Times New Roman CE{\*\falt MS Gothic};}
{\f256\froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt MS Gothic};}{\f258\froman\fcharset161\fprq2 Times New Roman Greek{\*\falt MS Gothic};}{\f259\froman\fcharset162\fprq2 Times New Roman Tur{\*\falt MS Gothic};}
{\f260\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt MS Gothic};}{\f261\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt MS Gothic};}{\f262\froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt MS Gothic};}
{\f263\froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt MS Gothic};}{\f367\froman\fcharset0\fprq1 MS Mincho Western{\*\falt ?l?r ??\'81\'66c};}{\f365\froman\fcharset238\fprq1 MS Mincho CE{\*\falt ?l?r ??\'81\'66c};}
{\f366\froman\fcharset204\fprq1 MS Mincho Cyr{\*\falt ?l?r ??\'81\'66c};}{\f368\froman\fcharset161\fprq1 MS Mincho Greek{\*\falt ?l?r ??\'81\'66c};}{\f369\froman\fcharset162\fprq1 MS Mincho Tur{\*\falt ?l?r ??\'81\'66c};}
{\f372\froman\fcharset186\fprq1 MS Mincho Baltic{\*\falt ?l?r ??\'81\'66c};}{\f637\froman\fcharset0\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Western;}{\f635\froman\fcharset238\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 CE;}
{\f636\froman\fcharset204\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Cyr;}{\f638\froman\fcharset161\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Greek;}{\f639\froman\fcharset162\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Tur;}
{\f642\froman\fcharset186\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Baltic;}{\f1177\fmodern\fcharset0\fprq2 MS UI Gothic Western;}{\f1175\fmodern\fcharset238\fprq2 MS UI Gothic CE;}{\f1176\fmodern\fcharset204\fprq2 MS UI Gothic Cyr;}
{\f1178\fmodern\fcharset161\fprq2 MS UI Gothic Greek;}{\f1179\fmodern\fcharset162\fprq2 MS UI Gothic Tur;}{\f1182\fmodern\fcharset186\fprq2 MS UI Gothic Baltic;}{\f1187\fmodern\fcharset0\fprq2 @MS UI Gothic Western;}
{\f1185\fmodern\fcharset238\fprq2 @MS UI Gothic CE;}{\f1186\fmodern\fcharset204\fprq2 @MS UI Gothic Cyr;}{\f1188\fmodern\fcharset161\fprq2 @MS UI Gothic Greek;}{\f1189\fmodern\fcharset162\fprq2 @MS UI Gothic Tur;}
{\f1192\fmodern\fcharset186\fprq2 @MS UI Gothic Baltic;}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;
\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe2052\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp2052 \snext0 Normal;}{\*\cs10 \additive
\ssemihidden Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv
\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \fs20\lang1024\langfe1024\loch\f0\hich\af0\dbch\af11\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}}
{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\rsidtbl \rsid1653142\rsid4331673\rsid4872736\rsid4874554\rsid7612447\rsid8458625\rsid8944774\rsid10382301\rsid10429758\rsid10830631\rsid11735800\rsid12530894\rsid12539954\rsid12877612\rsid16737335}
{\*\generator Microsoft Word 11.0.8026;}{\info{\operator Miwa Snaza}{\creatim\yr2006\mo10\dy4\hr14\min6}{\revtim\yr2006\mo10\dy9\hr16\min13}{\version8}{\edmins34}{\nofpages4}{\nofwords858}{\nofchars4719}{\nofcharsws5529}{\vern24609}{\*\password 00000000}}
{\*\xmlnstbl }\paperw12240\paperh15840\margl1800\margr1800\margt1440\margb1440\gutter0\ltrsect \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3
\jcompress\ksulang1041\viewkind1\viewscale150\nolnhtadjtbl\rsidroot8458625 {\*\fchars !%'),.:\'3b>?]\'7d\'a2\'b0\'b7\'bb\'92\'94\'89}{\*\lchars $(<?[\'5c\'7b\'a3\'a5\'ab\'91\'93}\fet0{\*\wgrffmtfilter 013f}\ilfomacatclnup0\ltrpar \sectd \ltrsect
\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnqc\pnstart1\pnindent720\pnhang {\pntxta \hich .}}{\*\pnseclvl2\pnucltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta \hich .}}{\*\pnseclvl3\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxta \hich .}}
{\*\pnseclvl4\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta \hich )}}{\*\pnseclvl5\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxtb \hich (}{\pntxta \hich )}}{\*\pnseclvl6\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb \hich (}{\pntxta \hich )}}
{\*\pnseclvl7\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb \hich (}{\pntxta \hich )}}{\*\pnseclvl8\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb \hich (}{\pntxta \hich )}}{\*\pnseclvl9\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb \hich (}
{\pntxta \hich )}}\pard\plain \ltrpar\qc \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe2052\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp2052 {\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SUN MICROSYSTEMS, INC.
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang2057\langfe1041\loch\af92\hich\af92\dbch\af92\langnp2057\langfenp1041\insrsid8458625\charrsid1653142
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12496\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u12467\'83\'52
\u12540\'81\'5b\u12489\'83\'68\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\qc \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid8458625 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1036\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1036\langfenp1041\insrsid8458625\charrsid12530894
\hich\af92\dbch\af92\loch\f92 JAVA SE RUNTIME ENVIRONMENT(JRE) 6 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u29992
\'97\'70}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1036\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1036\langfenp1041\insrsid8458625\charrsid12530894
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1036\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1036\langfenp1041\insrsid8458625\charrsid12530894
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SUN MICROSYSTEMS, INC (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20197\'88\'c8\u19979\'89\'ba\u12300\'81\'75}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SUN}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12301\'81\'76\u12392\'82\'c6\u12377\'82\'b7\u12427\'82\'e9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12364\'82\'aa\u26412\'96\'7b\u12496
\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a
\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004\'96\'f1\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-30500\'95\'e2\u-29261\'91\'ab\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20197\'88\'c8\u19979\'89\'ba\u-26938\'8f\'57\u21512\'8d\'87\u30340\'93\'49\u12395\'82\'c9\u12300\'81\'75\u22865
\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u12301\'81\'76\u12392\'82\'c6\u12377\'82\'b7\u12427\'82\'e9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u12377\'82\'b7\u12409
\'82\'d7\u12390\'82\'c4\u12434\'82\'f0\u21463\'8e\'f3\u-29954\'91\'f8\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u26465\'8f\'f0\u20214\'8c\'8f\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u12362\'82\'a8
\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12289\'81\'41\u20197\'88\'c8\u19979\'89\'ba\u12398\'82\'cc\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u20351\'8e\'67
\u29992\'97\'70\u27177\'8c\'a0\u12434\'82\'f0\u-30159\'8b\'96\u-29954\'91\'f8\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12372\'82\'b2\u20351\'8e\'67\u29992\'97\'70\u21069\'91\'4f\u12395\'82\'c9\u22865\'8c\'5f\u32004\'96\'f1\u26360
\'8f\'91\u12434\'82\'f0\u12424\'82\'e6\u12367\'82\'ad\u12362\'82\'a8\u-30035\'93\'c7\u12415\'82\'dd\u12367\'82\'ad\u12384\'82\'be\u12373\'82\'b3\u12356\'82\'a2\u12290\'81\'42\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45
\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u12480\'83\'5f\u12454\'83\'45\u12531\'83\'93\u12525\'83\'8d\u12540\'81\'5b\u12489\'83\'68\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12452\'83\'43\u12531\'83\'93\u12473\'83\'58\u12488\'83\'67\u12540\'81\'5b
\u12523\'83\'8b\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12289\'81\'41\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u26465\'8f\'f0\u-26619\'8d\'80\u12434\'82\'f0\u21463\'8e\'f3\u-29954
\'91\'f8\u12375\'82\'b5\u12383\'82\'bd\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12415\'82\'dd\u12394\'82\'c8\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u19979\'89\'ba\u31471
\'92\'5b\u12395\'82\'c9\u12354\'82\'a0\u12427\'82\'e9\u12300\'81\'75\u21516\'93\'af\u24847\'88\'d3\u12377\'82\'b7\u12427\'82\'e9\u12301\'81\'76\u12508\'83\'7b\u12479\'83\'5e\u12531\'83\'93\u12434\'82\'f0\u-28552\'91\'49\u25246\'91\'f0\u12375\'82\'b5
\u12390\'82\'c4\u12289\'81\'41\u21463\'8e\'f3\u-29954\'91\'f8\u12375\'82\'b5\u12390\'82\'c4\u12367\'82\'ad\u12384\'82\'be\u12373\'82\'b3\u12356\'82\'a2\u12290\'81\'42\u21463\'8e\'f3\u-29954\'91\'f8\u12391\'82\'c5\u12365\'82\'ab\u12394\'82\'c8\u12356
\'82\'a2\u26465\'8f\'f0\u-26619\'8d\'80\u12364\'82\'aa\u12354\'82\'a0\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u19979\'89\'ba\u31471\'92\'5b\u12395\'82\'c9\u12354\'82\'a0\u12427\'82\'e9
\u12300\'81\'75\u21516\'93\'af\u24847\'88\'d3\u12375\'82\'b5\u12394\'82\'c8\u12356\'82\'a2\u12301\'81\'76\u12508\'83\'7b\u12479\'83\'5e\u12531\'83\'93\u12434\'82\'f0\u-28552\'91\'49\u25246\'91\'f0\u12377\'82\'b7\u12427\'82\'e9\u12392\'82\'c6\u12289
\'81\'41\u12480\'83\'5f\u12454\'83\'45\u12531\'83\'93\u12525\'83\'8d\u12540\'81\'5b\u12489\'83\'68\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12452\'83\'43\u12531\'83\'93\u12473\'83\'58\u12488\'83\'67\u12540\'81\'5b\u12523\'83\'8b\u12364\'82\'aa\u20013
\'92\'86\u26029\'92\'66\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0\pararsid8458625 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 1.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u23450\'92\'e8\u32681\'8b\'60}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u12300\'81\'75\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450
\'83\'41\u12301\'81\'76\u12392\'82\'c6\u12399\'82\'cd\u12289\'81\'41\u19978\'8f\'e3\u-30184\'8b\'4c\u12398\'82\'cc\u12496\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u24418\'8c\'60\u24335\'8e\'ae\u12391\'82\'c5\u25552\'92\'f1\u20379\'8b\'9f
\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u12289\'81\'41\u27231\'8b\'40\u26800\'8a\'42\u21487\'89\'c2\u-30035\'93\'c7\u12398\'82\'cc\u-29497\'8e\'91\u26009\'97\'bf}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12502\'83\'75\u12521\'83\'89\u12522\'83\'8a\u12289\'81\'41\u12477\'83\'5c\u12540
\'81\'5b\u12473\'83\'58\u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12289\'81\'41\u12504\'83\'77\u12483\'83\'62\u12480\'83\'5f\u12540\'81\'5b\u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12289\'81\'41\u12362\'82\'a8\u12424
\'82\'e6\u12403\'82\'d1\u12487\'83\'66\u12540\'81\'5b\u12479\'83\'5e\u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12434\'82\'f0\u21547\'8a\'dc\u12416\'82\'de\u12364\'82\'aa\u12381\'82\'bb\u12428\'82\'ea\u12425\'82\'e7\u12395\'82\'c9
\u-27056\'8c\'c0\u23450\'92\'e8\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12420\'82\'e2\u12289\'81\'41}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12364\'82\'aa\u25552\'92\'f1\u20379\'8b\'9f\u12377\'82\'b7\u12427\'82\'e9\u26368\'8d\'c5\u26032\'90\'56\u24773
\'8f\'ee\u22577\'95\'f1\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u-30044\'8c\'eb\u-29908\'95\'54\u20462\'8f\'43\u27491\'90\'b3\u12289\'81\'41\u12518\'83\'86\u12540\'81\'5b\u12470\'83\'55\u21462\'8e\'e6\u25201\'88\'b5\u-30036\'90\'e0\u26126\'96\'be
\u26360\'8f\'91\u12289\'81\'41\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12511\'83\'7e\u12531\'83\'93\u12464\'83\'4f}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12460\'83\'4b\u12452\'83\'43\u12489\'83\'68\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12364\'82\'aa\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u12398\'82\'cc\u19979\'89\'ba\u12395
\'82\'c9\u25552\'92\'f1\u20379\'8b\'9f\u12377\'82\'b7\u12427\'82\'e9\u12381\'82\'bb\u12398\'82\'cc\u20182\'91\'bc\u12398\'82\'cc\u25991\'95\'b6\u26360\'8f\'91\u12434\'82\'f0\u24847\'88\'d3\u21619\'96\'a1\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290
\'81\'42\u12300\'81\'75\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12301\'81\'76\u12392\'82\'c6\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Java }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u21487\'89\'c2\u-32515\'94\'5c\u12394\'82\'c8\u27726\'94\'c4\u29992\'97\'70\u12487\'83\'66\u12473
\'83\'58\u12463\'83\'4e\u12488\'83\'67\u12483\'83\'62\u12503\'83\'76}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12467\'83\'52\u12531\'83\'93\u12500\'83\'73\u12517\'83\'85\u12540\'81\'5b
\u12479\'83\'5e\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12469\'83\'54\u12540\'81\'5b\u12496\'83\'6f\u12395\'82\'c9\u25645\'93\'8b\u-28919\'8d\'da\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Java Platform Standard Edition (Java SE) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u19978\'8f\'e3\u12391\'82\'c5\u20316\'8d\'ec\u21205\'93\'ae\u12377\'82\'b7\u12427\'82\'e9\u12424\'82\'e6\u12358
\'82\'a4\u24847\'88\'d3\u22259\'90\'7d\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 Java }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12450\'83\'41\u12503\'83\'76\u12524
\'83\'8c\u12483\'83\'62\u12488\'83\'67\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12450\'83\'41\u12503\'83\'76\u12522\'83\'8a\u12465\'83\'50\u12540\'81\'5b\u12471\'83\'56\u12519\'83\'87\u12531\'83\'93\u12434\'82\'f0\u25351\'8e\'77\u12375\'82\'b5\u12414
\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 2.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20351\'8e\'67\u29992\'97\'70
\u12398\'82\'cc\u-30159\'8b\'96\u-29954\'91\'f8}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u-30500
\'95\'e2\u-29261\'91\'ab\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12398\'82\'cc\u12300\'81\'75}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Java }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12486\'83\'65\u12463\'83\'4e\u12494\'83\'6d\u12525\'83\'8d\u12472\'83\'57\u12540\'81\'5b\u12395\'82\'c9\u-27230
\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u21046\'90\'a7\u32004\'96\'f1\u20107\'8e\'96\u-26619\'8d\'80\u12301\'81\'76\u12434\'82\'f0\u21547\'8a\'dc\u12416\'82\'de\u12364\'82\'aa\u12381\'82\'bb\u12428\'82\'ea\u12395\'82\'c9\u-27056\'8c\'c0\u23450\'92\'e8
\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u22522\'8a\'ee\u12389\'82\'c3\u12356\'82\'a2\u12390\'82\'c4\u12289\'81\'41}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12289
\'81\'41\u28961\'96\'b3\u20767\'8f\'9e\u12391\'82\'c5\u12289\'81\'41\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12398\'82\'cc\u20316\'8d\'ec\u21205\'93\'ae\u12434\'82\'f0\u21807\'97\'42\u19968\'88\'ea\u12398\'82\'cc\u30446
\'96\'da\u30340\'93\'49\u12392\'82\'c6\loch\af92\hich\af92\dbch\f92 \u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u23436\'8a\'ae\u20840\'91\'53\u12391
\'82\'c5\u25913\'89\'fc\u22793\'95\'cf\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u12414\'82\'dc\u12414\'82\'dc\u12289\'81\'41\u31038\'8e\'d0\u20869\'93\'e0\u12391\'82\'c5\u12398\'82\'cc\u12415\'82\'dd\u20877\'8d\'c4\u29983\'90\'b6\u12362
\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20351\'8e\'67\u29992\'97\'70\u12377\'82\'b7\u12427\'82\'e9\u12383\'82\'bd\u12417\'82\'df\u12398\'82\'cc\u-26786\'94\'f1\u29420\'93\'c6\u21344\'90\'e8\u30340\'93\'49\u12391\'82\'c5\u-29838\'8f\'f7\u28193\'93\'6e
\u19981\'95\'73\u-32515\'94\'5c\u12394\'82\'c8\u-27056\'8c\'c0\u23450\'92\'e8\u30340\'93\'49\u20351\'8e\'67\u29992\'97\'70\u27177\'8c\'a0\u12434\'82\'f0\u-30159\'8b\'96\u-29954\'91\'f8\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u-27253
\'8a\'4a\u30330\'94\'ad\u26989\'8b\'c6\u-32763\'8e\'d2\u12420\'82\'e2\u20986\'8f\'6f\u29256\'94\'c5\u26989\'8b\'c6\u-32763\'8e\'d2\u29992\'97\'70\u12398\'82\'cc\u-28675\'92\'c7\u21152\'89\'c1\u30340\'93\'49\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a
\u12531\'83\'93\u12473\'83\'58\u12399\'82\'cd\u12289\'81\'41\u-30500\'95\'e2\u-29261\'91\'ab\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u12362\'82\'a8\u12356\'82\'a2\u12390
\'82\'c4\u20184\'95\'74\u19982\'97\'5e\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 3.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u21046\'90\'a7\u-27056\'8c\'c0}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67
\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u12399\'82\'cd\u31192\'94\'e9\u23494\'96\'a7\u24773\'8f\'ee\u22577\'95\'f1\u12364\'82\'aa\u21547\'8a\'dc\u12414\'82\'dc\u12428\'82\'ea\u12390\'82\'c4\u12362\'82\'a8\u12426\'82\'e8\u12289\'81\'41
\u-31657\'92\'98\u20316\'8d\'ec\u27177\'8c\'a0\u12399\'82\'cd\u20445\'95\'db\u-29833\'8c\'ec\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488
\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u27177\'8c\'a0\u-27056\'8c\'c0\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20184\'95\'74\u-26993\'90\'8f\u12377\'82\'b7\u12427\'82\'e9\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4
\u12398\'82\'cc\u30693\'92\'6d\u30340\'93\'49\u-29535\'8d\'e0\u29987\'8e\'59\u27177\'8c\'a0\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12392\'82\'c6\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12469\'83\'54\u12289\'81\'41\u12414
\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12381\'82\'bb\u12398\'82\'cc\u12356\'82\'a2\u12378\'82\'b8\u12428\'82\'ea\u12363\'82\'a9\u12364\'82\'aa\u20445\'95\'db\u26377\'97\'4c\u12375\'82\'b5\u12390\'82\'c4\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290
\'81\'42\u28310\'8f\'80\u25312\'8b\'92\u27861\'96\'40\u12395\'82\'c9\u12424\'82\'e6\u12387\'82\'c1\u12390\'82\'c4\u12363\'82\'a9\u12363\'82\'a9\u12427\'82\'e9\u21046\'90\'a7\u-27056\'8c\'c0\u12364\'82\'aa\u31105\'8b\'d6\u12376\'82\'b6\u12425\'82\'e7
\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12434\'82\'f0\u-27036\'8f\'9c\u12365\'82\'ab\u12289\'81\'41\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450
\'83\'41\u12434\'82\'f0\u25913\'89\'fc\u22793\'95\'cf\u12289\'81\'41\u-28666\'8b\'74\u12467\'83\'52\u12531\'83\'93\u12497\'83\'70\u12452\'83\'43\u12523\'83\'8b\u12289\'81\'41\u12418\'82\'e0\u12375\'82\'b5\u12367\'82\'ad\u12399\'82\'cd\u12522\'83\'8a
\u12496\'83\'6f\u12540\'81\'5b\u12473\'83\'58\u12456\'83\'47\u12531\'83\'93\loch\af92\hich\af92\dbch\f92 \u12472\'83\'57\u12491\'83\'6a\u12450\'83\'41\u12522\'83\'8a\u12531\'83\'93\u12464\'83\'4f\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6
\u12399\'82\'cd\u31105\'8b\'d6\u27490\'8e\'7e\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12471\'83\'56\u12399\'82\'cd\u12289\'81\'41
\u20351\'8e\'67\u29992\'97\'70\u27177\'8c\'a0\u12398\'82\'cc\u20184\'95\'74\u19982\'97\'5e\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u12289\'81\'41
\u26680\'8a\'6a\u26045\'8e\'7b\u-30163\'90\'dd\u12398\'82\'cc\u-30163\'90\'dd\u-30200\'8c\'76\u12289\'81\'41\u24314\'8c\'9a\u-30163\'90\'dd\u12289\'81\'41\u-28597\'89\'5e\u-28958\'93\'5d\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u20445\'95\'db\u23432
\'8e\'e7\u12391\'82\'c5\u20351\'8e\'67\u29992\'97\'70\u12377\'82\'b7\u12427\'82\'e9\u12424\'82\'e6\u12358\'82\'a4\u12395\'82\'c9\u-30163\'90\'dd\u-30200\'8c\'76\u12289\'81\'41\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58
\u12289\'81\'41\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u24847\'88\'d3\u22259\'90\'7d\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u-30067\'94\'46\u-29864
\'8e\'af\u12377\'82\'b7\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun Microsystems, Inc. }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u12424\'82\'e6\u12358\'82\'a4\u12394\'82\'c8\u30446
\'96\'da\u30340\'93\'49\u12398\'82\'cc\u-28567\'93\'4b\u21512\'8d\'87\u24615\'90\'ab\u12395\'82\'c9\u-27230\'8a\'d6\u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u26126\'96\'be\u31034\'8e\'a6\u12289\'81\'41\u-24871\'96\'d9\u31034\'8e\'a6\u12434\'82\'f0
\u21839\'96\'e2\u12431\'82\'ed\u12378\'82\'b8\u12356\'82\'a2\u12363\'82\'a9\u12394\'82\'c8\u12427\'82\'e9\u20445\'95\'db\u-30148\'8f\'d8\u12418\'82\'e0\u-32268\'92\'76\u12375\'82\'b5\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42\u26412
\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12391\'82\'c5\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\u12383\'82\'bd\u12399
\'82\'cd\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12469\'83\'54\u12398\'82\'cc\u21830\'8f\'a4\u27161\'95\'57\u12289\'81\'41\u12469\'83\'54\u12540\'81\'5b\u12499\'83\'72\u12473\'83\'58\u12510\'83\'7d\u12540\'81\'5b\u12463\'83\'4e\u12289
\'81\'41\u12525\'83\'8d\u12468\'83\'53\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u21830\'8f\'a4\u21495\'8d\'86\u12398\'82\'cc\u27177\'8c\'a0\u21033\'97\'98\u12289\'81\'41\u27177\'8c\'a0\u-27056\'8c\'c0\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd
\u12399\'82\'cd\u21033\'97\'98\u30410\'89\'76\u12399\'82\'cd\u19968\'88\'ea\u20999\'90\'d8\u19982\'97\'5e\u12360\'82\'a6\u12425\'82\'e7\u12428\'82\'ea\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42\u-27253\'8a\'4a\u30330\'94\'ad\u26989
\'8b\'c6\u-32763\'8e\'d2\u12420\'82\'e2\u20986\'8f\'6f\u29256\'94\'c5\u26989\'8b\'c6\u-32763\'8e\'d2\u21521\'8c\'fc\u12369\'82\'af\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u12395\'82\'c9\u23550\'91\'ce\u12377\'82\'b7
\u12427\'82\'e9\u-28675\'92\'c7\u21152\'89\'c1\u21046\'90\'a7\u-27056\'8c\'c0\u20107\'8e\'96\u-26619\'8d\'80\u12399\'82\'cd\u12289\'81\'41\u-30500\'95\'e2\u-29261\'91\'ab\loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531
\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u12362\'82\'a8\u12356\'82\'a2\u12390\'82\'c4\u-30184\'8b\'4c\u-28688\'8f\'71\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 4.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-27056\'8c\'c0\u23450\'92\'e8
\u20445\'95\'db\u-30148\'8f\'d8}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12289\'81\'41\u-26600\'97\'cc\u21454\'8e\'fb\u-30148\'8f\'d8\u12395\'82\'c9\u-30184\'8b\'4c
\u20837\'93\'fc\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u-29444\'8d\'77\u20837\'93\'fc\u26085\'93\'fa\u12363\'82\'a9\u12425\'82\'e7}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 90 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u26085\'93\'fa\u-27245\'8a\'d4\u12289\'81\'41\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454
\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u27491\'90\'b3\u24120\'8f\'ed\u12395\'82\'c9\u20351\'8e\'67\u29992\'97\'70\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12395\'82\'c9\u-27056\'8c\'c0\u12426\'82\'e8
\u12289\'81\'41\u-26600\'97\'cc\u21454\'8e\'fb\u26360\'8f\'91\u12398\'82\'cc\u20889\'8e\'ca\u12375\'82\'b5\u12434\'82\'f0\u-30148\'8f\'d8\u25312\'8b\'92\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u26412\'96\'7b\u12477\'83\'5c\u12501
\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u20445\'95\'db\u23384\'91\'b6\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u23186\'94\'7d\u20307\'91\'cc}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u23384\'91\'b6\u22312\'8d\'dd\u12377\'82\'b7\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u26448\'8d\'de\u-29462\'8e\'bf\u19978\'8f\'e3\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-30467
\'90\'bb\u-28640\'91\'a2\u19978\'8f\'e3\u12398\'82\'cc\u29781\'e0\'ea\u30133\'e1\'72\u12364\'82\'aa\u12394\'82\'c8\u12356\'82\'a2\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u20445\'95\'db\u-30148\'8f\'d8\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7
\u12290\'81\'42\u19978\'8f\'e3\u-30184\'8b\'4c\u12398\'82\'cc\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u-27036\'8f\'9c\u12356\'82\'a2\u12390\'82\'c4\u12289\'81\'41\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455
\'83\'46\u12450\'83\'41\u12399\'82\'cd\u12300\'81\'75\u29694\'8c\'bb\u29366\'8f\'f3\u12398\'82\'cc\u12414\'82\'dc\u12414\'82\'dc\u12301\'81\'76\u12391\'82\'c5\u25552\'92\'f1\u20379\'8b\'9f\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290
\'81\'42\u12371\'82\'b1\u12398\'82\'cc\u-27056\'8c\'c0\u23450\'92\'e8\u20445\'95\'db\u-30148\'8f\'d8\u12391\'82\'c5\u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12377\'82\'b7\u12427\'82\'e9
\u20840\'91\'53\u-26782\'96\'ca\u30340\'93\'49\u12394\'82\'c8\u-30500\'95\'e2\u20767\'8f\'9e\u12392\'82\'c6}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u20840\'91\'53\u-29524\'90\'d3\u20219\'94\'43\u12399\'82\'cd\u12289\'81\'41\u26412\'96\'7b\u12477
\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u-30467\'90\'bb\u21697\'95\'69\u12398\'82\'cc\u20132\'8c\'f0\u25563\'8a\'b7\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74
\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12390\'82\'c4\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12364\'82\'aa\u25903\'8e\'78\u25173\'95\'a5\u12387\'82\'c1\u12383\'82\'bd\u20195\'91\'e3
\u-28207\'8b\'e0\u12398\'82\'cc\u25173\'95\'a5\u12356\'82\'a2\u25147\'96\'df\u12375\'82\'b5\u12395\'82\'c9\u-27056\'8c\'c0\u12425\'82\'e7\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u12477\'83\'5c\u12501
\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u-27230\'8a\'d6\u12375\'82\'b5\u12390\'82\'c4\u21547\'8a\'dc\u24847\'88\'d3\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u20445\'95\'db\u-30148\'8f\'d8\u12399\'82\'cd
\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 90 }{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u26085\'93\'fa\u-27245\'8a\'d4\u12395\'82\'c9\u-27056\'8c\'c0\u23450\'92\'e8\u12373\'82\'b3\u12428
\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u24030\'8f\'42\u12395\'82\'c9\u12424\'82\'e6\u12387\'82\'c1\u12390\'82\'c4\u12399\'82\'cd\u-24871\'96\'d9\u31034\'8e\'a6\u20445\'95\'db\u-30148\'8f\'d8\u26399\'8a\'fa\u-27245\'8a\'d4\u12408\'82\'d6
\u12398\'82\'cc\u21046\'90\'a7\u-27056\'8c\'c0\u12364\'82\'aa\u-30067\'94\'46\u21487\'89\'c2\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u12383\'82\'bd\u12417\'82\'df\u12289\'81\'41\u19978\'8f\'e3\u-30184
\'8b\'4c\u12399\'82\'cd\u-30094\'8a\'59\u24403\'93\'96\u12375\'82\'b5\u12394\'82\'c8\u12356\'82\'a2\u22580\'8f\'ea\u21512\'8d\'87\u12418\'82\'e0\u12354\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12371\'82\'b1\u12398\'82\'cc
\u-27056\'8c\'c0\u23450\'92\'e8\u20445\'95\'db\u-30148\'8f\'d8\u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u29305\'93\'c1\u23450\'92\'e8\u12398\'82\'cc\u27861\'96\'40\u30340\'93\'49\u27177\'8c\'a0\u21033
\'97\'98\u12434\'82\'f0\u19982\'97\'5e\u12360\'82\'a6\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12391\'82\'c5\u12377\'82\'b7\u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u24030\'8f\'42\u12395\'82\'c9\u12424\'82\'e6\u12387
\'82\'c1\u12390\'82\'c4\u30064\'88\'d9\u12394\'82\'c8\u12427\'82\'e9\u20182\'91\'bc\u12398\'82\'cc\u27177\'8c\'a0\u21033\'97\'98\u12434\'82\'f0\u20445\'95\'db\u26377\'97\'4c\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12418\'82\'e0\u12354
\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 5.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20445\'95\'db\u-30148\'8f\'d8
\u12398\'82\'cc\u21542\'94\'db\u-30067\'94\'46}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b
\u22865\'8c\'5f\u32004\'96\'f1\u12395\'82\'c9\u26126\'96\'be\u-30184\'8b\'4c\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u-27056\'8c\'c0\u12426\'82\'e8\u12289\'81\'41\u21830\'8f\'a4\u21697\'95\'69\u24615
\'90\'ab\u12289\'81\'41\u29305\'93\'c1\u23450\'92\'e8\u30446\'96\'da\u30340\'93\'49\u12408\'82\'d6\u12398\'82\'cc\u-28567\'93\'4b\u21512\'8d\'87\u24615\'90\'ab\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u27177\'8c\'a0\u21033\'97\'98
\u12398\'82\'cc\u-26786\'94\'f1\u20405\'90\'4e\u23475\'8a\'51\u24615\'90\'ab\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u-24871\'96\'d9\u31034\'8e\'a6\u12398\'82\'cc\u20445\'95\'db\u-30148\'8f\'d8\u12434\'82\'f0\u21547\'8a\'dc\u12416
\'82\'de\u12289\'81\'41\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12398\'82\'cc\u26126\'96\'be\u31034\'8e\'a6\u30340\'93\'49\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u-24871\'96\'d9\u31034\'8e\'a6\u30340\'93\'49\u12394\'82\'c8\u26465\'8f\'f0
\u20214\'8c\'8f\u12289\'81\'41\u-30616\'95\'5c\u26126\'96\'be\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20445\'95\'db\u-30148\'8f\'d8\u12434\'82\'f0\u21542\'94\'db\u-30067\'94\'46\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12383
\'82\'bd\u12384\'82\'be\u12375\'82\'b5\u12289\'81\'41\u12371\'82\'b1\u12428\'82\'ea\u12425\'82\'e7\u12398\'82\'cc\u21542\'94\'db\u-30067\'94\'46\u12364\'82\'aa\u27861\'96\'40\u20196\'97\'df\u12391\'82\'c5\u-30067\'94\'46\u12417\'82\'df\u12425\'82\'e7
\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u22580\'8f\'ea\u21512\'8d\'87\u12399\'82\'cd\loch\af92\hich\af92\dbch\f92 \u12371\'82\'b1\u12398\'82\'cc\u-27056\'8c\'c0\u12426\'82\'e8\u12391\'82\'c5\u12399\'82\'cd\u12354
\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 6.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-29524\'90\'d3\u20219\'94\'43
\u12398\'82\'cc\u-27056\'8c\'c0\u24230\'93\'78}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12381\'82\'bb\u12398\'82\'cc\u12521\'83\'89\u12452\'83\'43\u12475
\'83\'5a\u12531\'83\'93\u12469\'83\'54\u12399\'82\'cd\u12289\'81\'41\u12383\'82\'bd\u12392\'82\'c6\u12360\'82\'a6\u25613\'91\'b9\u23475\'8a\'51\u12398\'82\'cc\u21487\'89\'c2\u-32515\'94\'5c\u24615\'90\'ab\u12434\'82\'f0\u30693\'92\'6d\u12425\'82\'e7
\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12383\'82\'bd\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12418\'82\'e0\u12289\'81\'41\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41
\u12398\'82\'cc\u20351\'8e\'67\u29992\'97\'70\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u20351\'8e\'67\u29992\'97\'70\u19981\'95\'73\u-32515\'94\'5c\u12434\'82\'f0\u21407\'8c\'b4\u22240\'88\'f6\u12392\'82\'c6\u12377\'82\'b7\u12427\'82\'e9\u12289
\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12381\'82\'bb\u12428\'82\'ea\u12395\'82\'c9\u-27230\'8a\'d6\u-28637\'98\'41\u12377\'82\'b7\u12427\'82\'e9\u12289\'81\'41\u21454\'8e\'fb\u30410\'89\'76\u12289\'81\'41\u21033\'97\'98\u30410\'89\'76
\u12289\'81\'41\u12487\'83\'66\u12540\'81\'5b\u12479\'83\'5e\u12398\'82\'cc\u21930\'91\'72\u22833\'8e\'b8\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u20182\'91\'bc\u19968\'88\'ea\u20999\'90\'d8\u12398\'82\'cc\u25613\'91\'b9\u23475\'8a\'51}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u29305\'93\'c1\u21029\'95\'ca\u25613\'91\'b9\u23475\'8a\'51\u12289\'81\'41\u-27245\'8a\'d4\u25509\'90\'da\u25613
\'91\'b9\u23475\'8a\'51\u12289\'81\'41\u20598\'8b\'f4\u30330\'94\'ad\u30340\'93\'49\u25613\'91\'b9\u23475\'8a\'51\u12289\'81\'41\u20184\'95\'74\u-26993\'90\'8f\u30340\'93\'49\u25613\'91\'b9\u23475\'8a\'51\u12289\'81\'41\u25074\'92\'a6\u32624\'94\'b1
\u30340\'93\'49\u25613\'91\'b9\u23475\'8a\'51\u12434\'82\'f0\u21839\'96\'e2\u12356\'82\'a2\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u27861\'96\'40\u20196\'97\'df\u12364
\'82\'aa\u-30067\'94\'46\u12417\'82\'df\u12427\'82\'e9\u31684\'94\'cd\u22258\'88\'cd\u12391\'82\'c5\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u-29524\'90\'d3\u20219\'94\'43\u20869\'93\'e0\u23481\'97\'65\u12395\'82\'c9\u-27230\'8a\'d6\u12431\'82\'ed
\u12425\'82\'e7\u12378\'82\'b8\u19968\'88\'ea\u20999\'90\'d8\u-29524\'90\'d3\u20219\'94\'43\u12434\'82\'f0\u-29536\'95\'89\u12356\'82\'a2\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42\u22865\'8c\'5f\u32004\'96\'f1\u12395\'82\'c9\u23450
\'92\'e8\u12417\'82\'df\u12425\'82\'e7\u12428\'82\'ea\u12383\'82\'bd\u-30644\'8d\'73\u28858\'88\'d7\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12391\'82\'c5\u12354\'82\'a0\u12427\'82\'e9\u12363\'82\'a9\u12289\'81\'41
\u23450\'92\'e8\u12417\'82\'df\u12425\'82\'e7\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u-30644\'8d\'73\u28858\'88\'d7}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-28594\'89\'df\u22833\'8e\'b8\u12434\'82\'f0\u21547\'8a\'dc\u12417\'82\'df\u12390\'82\'c4}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12391\'82\'c5\u12354\'82\'a0\u12427
\'82\'e9\u12363\'82\'a9\u12395\'82\'c9\u-27230\'8a\'d6\u12431\'82\'ed\u12425\'82\'e7\u12378\'82\'b8\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12377\'82\'b7\u12427\'82\'e9}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Su\hich\af92\dbch\af92\loch\f92 n }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u-29524\'90\'d3\u20219\'94\'43\u12399\'82\'cd\u12289\'81\'41\u12356\'82\'a2\u12363\'82\'a9\u12394
\'82\'c8\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12418\'82\'e0\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12395\'82\'c9\u22522\'8a\'ee\u12389\'82\'c3\u12356\'82\'a2\u12390\'82\'c4\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12364\'82\'aa\u26412
\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12390\'82\'c4\u25903\'8e\'78\u25173\'95\'a5\u12387\'82\'c1\u12383\'82\'bd\u-28207\'8b\'e0\u-26547\'8a\'7a
\u12434\'82\'f0\u-29307\'92\'b4\u12360\'82\'a6\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12399\'82\'cd\u12354\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42\u19978\'8f\'e3\u-30184\'8b\'4c\u12398\'82\'cc\u21046
\'90\'a7\u-27056\'8c\'c0\u12399\'82\'cd\u12289\'81\'41\u21069\'91\'4f\u-28688\'8f\'71\u12398\'82\'cc\u20445\'95\'db\u-30148\'8f\'d8\u20869\'93\'e0\u23481\'97\'65\u12424\'82\'e6\u12426\'82\'e8\u12418\'82\'e0\u20778\'97\'44\u20808\'90\'e6\u12373\'82\'b3
\u12428\'82\'ea\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u24030\'8f\'42\u12395\'82\'c9\u12424\'82\'e6\u12387\'82\'c1\u12390\'82\'c4\u12399\'82\'cd\u20598\'8b\'f4\u30330\'94\'ad
\u30340\'93\'49\u25613\'91\'b9\u23475\'8a\'51\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u20184\'95\'74\u-26993\'90\'8f\u30340\'93\'49\u25613\'91\'b9\u23475\'8a\'51\u12398\'82\'cc\u-27036\'8f\'9c\u22806\'8a\'4f\u12364\'82\'aa\u-30067\'94\'46\u12417
\'82\'df\u12425\'82\'e7\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u12383\'82\'bd\u12417\'82\'df\u12289\'81\'41\u19978\'8f\'e3\u-30184\'8b\'4c\u12399\'82\'cd\u-30094\'8a\'59\u24403\'93\'96\u12375\'82\'b5\u12394\'82\'c8
\u12356\'82\'a2\u22580\'8f\'ea\u21512\'8d\'87\u12418\'82\'e0\u12354\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 7.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u32066\'8f\'49\u20102\'97\'b9}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12399\'82\'cd
\u32066\'8f\'49\u20102\'97\'b9\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u12414\'82\'dc\u12391\'82\'c5\u26377\'97\'4c\u21177\'8c\'f8\u12391\'82\'c5\u12377\'82\'b7\u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u12289\'81\'41
\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u-30457\'95\'a1\u-30467\'90\'bb\u29289\'95\'a8\u12434\'82\'f0\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u24259\'94\'70\u26820
\'8a\'fc\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12395\'82\'c9\u12424\'82\'e6\u12426\'82\'e8\u12289\'81\'41\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12434\'82\'f0\u12356\'82\'a2\u12388\'82\'c2\u12391\'82\'c5\u12418\'82\'e0\u32066
\'8f\'49\u20102\'97\'b9\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12364\'82\'aa\u12391\'82\'c5\u12365\'82\'ab\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12364\'82\'aa\u26412\'96\'7b\u22865
\'8c\'5f\u32004\'96\'f1\u12398\'82\'cc\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u24467\'8f\'5d\u12431\'82\'ed\u12394\'82\'c8\u12363\'82\'a9\u12387\'82\'c1\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12363\'82\'a9\u12425\'82\'e7\u-28646\'92\'ca\u30693\'92\'6d\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u12371
\'82\'b1\u12392\'82\'c6\u12394\'82\'c8\u12367\'82\'ad\u12289\'81\'41\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12399\'82\'cd\u12383\'82\'bd\u12384\'82\'be\u12385\'82\'bf\u12395\'82\'c9\u32066\'8f\'49\u20102\'97\'b9\loch\af92\hich\af92\dbch\f92 \u12377
\'82\'b7\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u20309\'89\'bd\u12425
\'82\'e7\u12363\'82\'a9\u12398\'82\'cc\u30693\'92\'6d\u30340\'93\'49\u25152\'8f\'8a\u26377\'97\'4c\u27177\'8c\'a0\u20405\'90\'4e\u23475\'8a\'51\u12398\'82\'cc\u30003\'90\'5c\u12375\'82\'b5\u31435\'97\'a7\u12390\'82\'c4\u12398\'82\'cc\u23550\'91\'ce
\u-29599\'8f\'db\u12392\'82\'c6\u12394\'82\'c8\u12387\'82\'c1\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12356\'82\'a2\u12378\'82\'b8\u12428\'82\'ea\u12363\'82\'a9\u12398\'82\'cc\u24403
\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u12364\'82\'aa\u12363\'82\'a9\u12363\'82\'a9\u12427\'82\'e9\u23550\'91\'ce\u-29599\'8f\'db\u12392\'82\'c6\u12394\'82\'c8\u12427\'82\'e9\u21487\'89\'c2\u-32515\'94\'5c\u24615\'90\'ab\u12364\'82\'aa\u12354\'82\'a0
\u12427\'82\'e9\u12392\'82\'c6\u21028\'94\'bb\u26029\'92\'66\u12375\'82\'b5\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u12356\'82\'a2\u12378\'82\'b8\u12428\'82\'ea\u12398\'82\'cc\u24403\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u12418
\'82\'e0\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12434\'82\'f0\u30452\'92\'bc\u12385\'82\'bf\u12395\'82\'c9\u32066\'8f\'49\u20102\'97\'b9\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12364\'82\'aa\u12391\'82\'c5\u12365\'82\'ab\u12414
\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u32066\'8f\'49\u20102\'97\'b9\u26178\'8e\'9e\u12395\'82\'c9\u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455
\'83\'46\u12450\'83\'41\u12398\'82\'cc\u-30457\'95\'a1\u-30467\'90\'bb\u29289\'95\'a8\u12434\'82\'f0\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u24259\'94\'70\u26820\'8a\'fc\u12375\'82\'b5\u12394\'82\'c8\u12369\'82\'af\u12428\'82\'ea\u12400\'82\'ce
\u12394\'82\'c8\u12426\'82\'e8\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 8.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-28872\'97\'41\u20986\'8f\'6f
\u-30321\'8b\'4b\u21046\'90\'a7}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f
\u32004\'96\'f1\u12391\'82\'c5\u25552\'92\'f1\u20379\'8b\'9f\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12398\'82\'cc\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41
\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u25216\'8b\'5a\u-30637\'8f\'70\u30340\'93\'49\u12487\'83\'66\u12540\'81\'5b\u12479\'83\'5e\u12399\'82\'cd\u12289\'81\'41\u31859\'95\'c4\u22269\'8d\'91\u-28872\'97\'41\u20986\'8f\'6f\u31649\'8a\'c7\u29702
\'97\'9d\u27861\'96\'40\u12398\'82\'cc\u23550\'91\'ce\u-29599\'8f\'db\u12392\'82\'c6\u12394\'82\'c8\u12387\'82\'c1\u12390\'82\'c4\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12414\'82\'dc\u12383\'82\'bd\u12289\'81\'41\u20182\'91\'bc
\u22269\'8d\'91\u12395\'82\'c9\u12362\'82\'a8\u12356\'82\'a2\u12390\'82\'c4\u12418\'82\'e0\u-28872\'97\'41\u20986\'8f\'6f\u20837\'93\'fc\u31649\'8a\'c7\u29702\'97\'9d\u27861\'96\'40\u-30321\'8b\'4b\u12398\'82\'cc\u23550\'91\'ce\u-29599\'8f\'db\u12392
\'82\'c6\u12394\'82\'c8\u12387\'82\'c1\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12364\'82\'aa\u12354\'82\'a0\u12426\'82\'e8\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399
\'82\'cd\u12289\'81\'41\u12381\'82\'bb\u12428\'82\'ea\u12425\'82\'e7\u12398\'82\'cc\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12398\'82\'cc\u27861\'96\'40\u20196\'97\'df\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-30321\'8b\'4b\u21046\'90\'a7
\u12434\'82\'f0\u21427\'8c\'b5\u23432\'8e\'e7\u12377\'82\'b7\loch\af92\hich\af92\dbch\f92 \u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12395\'82\'c9\u21516\'93\'af\u24847\'88\'d3\u12375\'82\'b5\u12289\'81\'41\u32013\'94\'5b\u21697\'95\'69\u24460\'8c\'e3
\u12395\'82\'c9\u-28872\'97\'41\u20986\'8f\'6f\u12289\'81\'41\u20877\'8d\'c4\u-28872\'97\'41\u20986\'8f\'6f\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u-28872\'97\'41\u20837\'93\'fc\u12398\'82\'cc\u-30159\'8b\'96\u21487\'89\'c2\u12364
\'82\'aa\u24517\'95\'4b\u-30335\'97\'76\u12392\'82\'c6\u12394\'82\'c8\u12387\'82\'c1\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12395\'82\'c9\u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u12381\'82\'bb
\u12428\'82\'ea\u12425\'82\'e7\u12434\'82\'f0\u21462\'8e\'e6\u24471\'93\'be\u12377\'82\'b7\u12427\'82\'e9\u-29524\'90\'d3\u20219\'94\'43\u12364\'82\'aa\u12354\'82\'a0\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414
\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 9.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u21830\'8f\'a4\u27161\'95\'57
\u12392\'82\'c6\u12525\'83\'8d\u12468\'83\'53}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u12362\'82\'a8
\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12364\'82\'aa}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SUN}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SOLARIS}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 JAVA}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 JINI}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 FORTE}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 iPLANET }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u21830\'8f\'a4\u27161\'95\'57\u12392\'82\'c6\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SUN}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 SOLARIS}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 JAVA}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 JINI}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 FORTE}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 iPLANET }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u12354\'82\'a0\u12425\'82\'e7\u12422\'82\'e4\u12427\'82\'e9\u-27230\'8a\'d6\u-28637\'98\'41\u21830
\'8f\'a4\u27161\'95\'57\u12289\'81\'41\u12469\'83\'54\u12540\'81\'5b\u12499\'83\'72\u12473\'83\'58\u12510\'83\'7d\u12540\'81\'5b\u12463\'83\'4e\u12289\'81\'41\u12525\'83\'8d\u12468\'83\'53\u12381\'82\'bb\u12398\'82\'cc\u20182\'91\'bc\u12398\'82\'cc\u12502
\'83\'75\u12521\'83\'89\u12531\'83\'93\u12489\'83\'68\u21517\'96\'bc}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20197\'88\'c8\u19979\'89\'ba\u12300\'81\'75}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12510\'83\'7d\u12540\'81\'5b\u12463\'83\'4e\u12301\'81\'76\u12392\'82\'c6\u12377\'82\'b7\u12427\'82\'e9}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u25152\'8f\'8a\u26377\'97\'4c\u-32763\'8e\'d2\u12391\'82\'c5\u12354\'82\'a0\u12427\'82\'e9\u12371
\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u-30067\'94\'46\u-29864\'8e\'af\u12375\'82\'b5\u12289\'81\'41\u21516\'93\'af\u24847\'88\'d3\u12377\'82\'b7\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7
\u12290\'81\'42\u12414\'82\'dc\u12383\'82\'bd\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u12289\'81\'41\u29694\'8c\'bb\u22312\'8d\'dd}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 http:\hich\af92\dbch\af92\loch\f92 //www.sun.com/policies/trademarks }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u25522\'8c\'66\u-28919\'8d\'da\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427
\'82\'e9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun Trademark and Logo Usage Requirements (Sun }{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u21830\'8f\'a4\u27161\'95\'57\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12525\'83\'8d
\u12468\'83\'53\u20351\'8e\'67\u29992\'97\'70\u-30335\'97\'76\u20214\'8c\'8f}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92
) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u24467\'8f\'5d\u12358\'82\'a4\u12371\'82\'b1\u12392
\'82\'c6\u12395\'82\'c9\u21516\'93\'af\u24847\'88\'d3\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12510\'83\'7d\u12540\'81\'5b\u12463\'83\'4e\u12398\'82\'cc\u12372\'82\'b2\u20351\'8e\'67\u29992\'97\'70\u12399
\'82\'cd\u12289\'81\'41\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u21033\'97\'98\u30410\'89\'76\u12398\'82\'cc\u12383\'82\'bd
\u12417\'82\'df\u12395\'82\'c9\u21177\'8c\'f8\u21147\'97\'cd\u12434\'82\'f0\u29983\'90\'b6\u12376\'82\'b6\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 10.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12450\'83\'41\u12513\'83\'81
\u12522\'83\'8a\u12459\'83\'4a\u21512\'8d\'87\u-30650\'8f\'4f\u22269\'8d\'91\u-28637\'98\'41\u-28506\'96\'4d\u25919\'90\'ad\u24220\'95\'7b\u12398\'82\'cc\u21046\'90\'a7\u-27056\'8c\'c0\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u27177\'8c\'a0\u21033
\'97\'98}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488
\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u31859\'95\'c4\u22269\'8d\'91\u-28637\'98\'41\u-28506\'96\'4d\u25919\'90\'ad\u24220\'95\'7b\u12420\'82\'e2\u12381\'82\'bb\u12398\'82\'cc\u20195\'91\'e3\u29702\'97\'9d\u27231\'8b\'40
\u-27230\'8a\'d6\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u31859\'95\'c4\u22269\'8d\'91\u-28637\'98\'41\u-28506\'96\'4d\u25919\'90\'ad\u24220\'95\'7b\u12392\'82\'c6\u30452\'92\'bc\u25509\'90\'da\u30340\'93\'49\u12354\'82\'a0\u12427\'82\'e9\u12356
\'82\'a2\u12399\'82\'cd\u-27245\'8a\'d4\u25509\'90\'da\u30340\'93\'49\u12395\'82\'c9\u22865\'8c\'5f\u32004\'96\'f1\u12434\'82\'f0\u32080\'8c\'8b\u12435\'82\'f1\u12384\'82\'be\u27231\'8b\'40\u-27230\'8a\'d6\u12395\'82\'c9\u12424\'82\'e6\u12387\'82\'c1
\u12390\'82\'c4\u21462\'8e\'e6\u24471\'93\'be\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\loch\af92\hich\af92\dbch\f92 \u12450\'83\'41
\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20184\'95\'74\u-26993\'90\'8f\u12377\'82\'b7\u12427\'82\'e9\u25991\'95\'b6\u26360\'8f\'91\u12395\'82\'c9\u23550\'91\'ce\u12377\'82\'b7\u12427\'82\'e9\u31859\'95\'c4\u22269\'8d\'91\u-28637\'98\'41\u-28506
\'96\'4d\u25919\'90\'ad\u24220\'95\'7b\u12398\'82\'cc\u27177\'8c\'a0\u-27056\'8c\'c0\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 48 CFR 227.7201 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12394\'82\'c8\u12356\'82\'a2\u12375\'82\'b5}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 227.7202-4 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u31859\'95\'c4\u22269\'8d\'91\u22269\'8d\'91\u-27086\'96\'68\u32207\'91\'8d\u30465\'8f\'c8\u12395\'82\'c9\u12424
\'82\'e6\u12427\'82\'e9\u21462\'8e\'e6\u24471\'93\'be}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u20006\'95\'c0\u12403\'82\'d1\u12395\'82\'c9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 48 CFR 2.101 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 12.212 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u31859\'95\'c4\u22269\'8d\'91\u22269\'8d\'91\u-27086\'96\'68\u32207\'91\'8d\u30465\'8f\'c8\u20197\'88\'c8\u22806
\'8a\'4f\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u21462\'8e\'e6\u24471\'93\'be}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u24467\'8f\'5d\u12387
\'82\'c1\u12390\'82\'c4\u12289\'81\'41\u12371\'82\'b1\u12398\'82\'cc\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u12395\'82\'c9\u-30184\'8b\'4c\u-28919\'8d\'da\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u20869\'93\'e0
\u23481\'97\'65\u12395\'82\'c9\u21046\'90\'a7\u-27056\'8c\'c0\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 11.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u28310\'8f\'80\u25312\'8b\'92
\u27861\'96\'40}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1
\u12399\'82\'cd\u12289\'81\'41\u12459\'83\'4a\u12522\'83\'8a\u12501\'83\'74\u12457\'83\'48\u12523\'83\'8b\u12491\'83\'6a\u12450\'83\'41\u24030\'8f\'42\u27861\'96\'40\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12381\'82\'bb\u12428\'82\'ea\u12434\'82\'f0
\u32113\'93\'9d\u25324\'8a\'87\u12375\'82\'b5\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u31859\'95\'c4\u22269\'8d\'91\u-28637\'98\'41\u-28506\'96\'4d\u27861\'96\'40\u12395\'82\'c9\u28310\'8f\'80\u25312\'8b\'92\u12377\'82\'b7\u12427\'82\'e9\u12418
\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u31649\'8a\'c7\u-28860\'8a\'8d\u12420\'82\'e2\u28310\'8f\'80\u25312\'8b\'92\u27861\'96\'40\u12434\'82\'f0\u-28552\'91\'49\u25246\'91\'f0\u12377\'82\'b7
\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12399\'82\'cd\u12391\'82\'c5\u12365\'82\'ab\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 12.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u21487\'89\'c2\u20998\'95\'aa
\u24615\'90\'ab}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1
\u12398\'82\'cc\u19968\'88\'ea\u-28440\'95\'94\u20998\'95\'aa\u12364\'82\'aa\u24375\'8b\'ad\u21046\'90\'a7\u21147\'97\'cd\u12434\'82\'f0\u25345\'8e\'9d\u12383\'82\'bd\u12394\'82\'c8\u12356\'82\'a2\u12392\'82\'c6\u21028\'94\'bb\u26126\'96\'be\u12375
\'82\'b5\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12391\'82\'c5\u12418\'82\'e0\u12289\'81\'41\u27531\'8e\'63\u12426\'82\'e8\u12398\'82\'cc\u-28440\'95\'94\u20998\'95\'aa\loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u24341\'88\'f8\u12365\'82\'ab
\u32154\'91\'b1\u12365\'82\'ab\u26377\'97\'4c\u21177\'8c\'f8\u12395\'82\'c9\u12394\'82\'c8\u12426\'82\'e8\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u12383\'82\'bd\u12384\'82\'be\u12375\'82\'b5\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u26465\'8f\'f0
\u-26619\'8d\'80\u12434\'82\'f0\u-27036\'8f\'9c\u12367\'82\'ad\u12371\'82\'b1\u12392\'82\'c6\u12391\'82\'c5\u24403\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u12398\'82\'cc\u30446\'96\'da\u30340\'93\'49\u12364\'82\'aa\u-28588\'92\'42\u25104\'90\'ac\u12373
\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12367\'82\'ad\u12394\'82\'c8\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12399\'82\'cd\u12289\'81\'41\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12399\'82\'cd\u12383\'82\'bd\u12384\'82\'be\u12385\'82\'bf\u12395
\'82\'c9\u32066\'8f\'49\u20102\'97\'b9\u12377\'82\'b7\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12392\'82\'c6\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 13.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u23436\'8a\'ae\u20840\'91\'53
\u24615\'90\'ab}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1
\u12399\'82\'cd\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12392\'82\'c6}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\u12362\'82\'a8\u12369
\'82\'af\u12427\'82\'e9\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u22865\'8c\'5f\u32004\'96\'f1\u20869\'93\'e0\u23481\'97\'65\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u23436\'8a\'ae\u20840\'91\'53\u12394\'82\'c8\u21512\'8d\'87
\u24847\'88\'d3\u12391\'82\'c5\u12354\'82\'a0\u12426\'82\'e8\u12289\'81\'41\u20107\'8e\'96\u21069\'91\'4f\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u21516\'93\'af\u26178\'8e\'9e\u12395\'82\'c9\u12394\'82\'c8\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd
\u21475\'8c\'fb\u-26579\'93\'aa\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u26360\'8f\'91\u-26782\'96\'ca\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u21332\'8b\'a6\u-29840\'8b\'63\u12289\'81\'41\u25552\'92\'f1\u26696\'88\'c4\u12289\'81\'41\u-30616
\'95\'5c\u26126\'96\'be\u12289\'81\'41\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20445\'95\'db\u-30148\'8f\'d8\u12424\'82\'e6\u12426\'82\'e8\u12418\'82\'e0\u20778\'97\'44\u20808\'90\'e6\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7
\u12290\'81\'42\u12414\'82\'dc\u12383\'82\'bd\u12289\'81\'41\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u26399\'8a\'fa\u-27245\'8a\'d4\u20013\'92\'86\u12395\'82\'c9\u24403\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u-27245\'8a\'d4\u12391\'82\'c5\u20132
\'8c\'f0\u12431\'82\'ed\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u12289\'81\'41\u22865\'8c\'5f\u32004\'96\'f1\u20869\'93\'e0\u23481\'97\'65\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u-30325\'8c\'a9\u31309\'90\'cf\u12426\'82\'e8
\u12289\'81\'41\u27880\'92\'8d\u25991\'95\'b6\u12289\'81\'41\u25215\'8f\'b3\u-30067\'94\'46\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u20182\'91\'bc\u19968\'88\'ea\u20999\'90\'d8\u12398\'82\'cc\u21332\'8b\'a6\u-29840\'8b\'63\u12392\'82\'c6\u12398
\'82\'cc\u-27245\'8a\'d4\u12391\'82\'c5\u12289\'81\'41\u30683\'96\'b5\u30462\'8f\'82\u12420\'82\'e2\u-28675\'92\'c7\u21152\'89\'c1\u26465\'8f\'f0\u-26619\'8d\'80\u12364\'82\'aa\u12354\'82\'a0\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41
\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12364\'82\'aa\u20778\'97\'44\u20808\'90\'e6\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12399\'82\'cd\u12289\'81\'41\u21508\'8a\'65
\u24403\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u12398\'82\'cc\u27177\'8c\'a0\u-27056\'8c\'c0\u12398\'82\'cc\u12354\'82\'a0\u12427\'82\'e9\u20195\'91\'e3\u-30616\'95\'5c\u-32763\'8e\'d2\u12364\'82\'aa\u32626\'8f\'90\u21517\'96\'bc
\loch\af92\hich\af92\dbch\f92 \u12375\'82\'b5\u12383\'82\'bd\u26360\'8f\'91\u-26782\'96\'ca\u12395\'82\'c9\u12424\'82\'e6\u12387\'82\'c1\u12390\'82\'c4\u12398\'82\'cc\u12415\'82\'dd\u12289\'81\'41\u12381\'82\'bb\u12398\'82\'cc\u20869\'93\'e0\u23481
\'97\'65\u12434\'82\'f0\u22793\'95\'cf\u26356\'8d\'58\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12364\'82\'aa\u12391\'82\'c5\u12365\'82\'ab\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par
\par }\pard \ltrpar\qc \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid12530894
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-30500\'95\'e2\u-29261\'91\'ab\u12521\'83\'89\u12452\'83\'43\u12475
\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12371\'82\'b1\u12398\'82\'cc\u-30500\'95\'e2\u-29261\'91\'ab\u12521
\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12399\'82\'cd\u12289\'81\'41\u12496\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004\'96\'f1\u26360
\'8f\'91\u12395\'82\'c9\u-28675\'92\'c7\u21152\'89\'c1\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u20462\'8f\'43\u27491\'90\'b3\u12434\'82\'f0\u21152\'89\'c1\u12360\'82\'a6\u12427\'82\'e9\u12418\'82\'e0\u12398\'82\'cc\u12391\'82\'c5\u12377\'82\'b7
\u12290\'81\'42\u12371\'82\'b1\u12398\'82\'cc\u-30500\'95\'e2\u-29261\'91\'ab\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u23450\'92\'e8\u32681\'8b\'60\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u22826
\'91\'be\u25991\'95\'b6\u23383\'8e\'9a\u12398\'82\'cc\u29992\'97\'70\u-30050\'8c\'ea\u12399\'82\'cd\u12289\'81\'41\u22865\'8c\'5f\u32004\'96\'f1\u26360\'8f\'91\u12391\'82\'c5\u12398\'82\'cc\u23450\'92\'e8\u32681\'8b\'60\u12392\'82\'c6\u21516\'93\'af
\u32681\'8b\'60\u12391\'82\'c5\u12377\'82\'b7\u12290\'81\'42\u12371\'82\'b1\u12398\'82\'cc\u-30500\'95\'e2\u-29261\'91\'ab\u26465\'8f\'f0\u-26619\'8d\'80\u12399\'82\'cd\u12289\'81\'41\u12496\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u12467
\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004
\'96\'f1\u26360\'8f\'91\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u21547\'8a\'dc\u12414\'82\'dc\u12428\'82\'ea\u12427\'82\'e9\u12521\'83\'89\u12452
\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u20869\'93\'e0\u12398\'82\'cc\u30683\'96\'b5\u30462\'8f\'82\u12377\'82\'b7\u12427\'82\'e9\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u30456\'91\'8a\u21453\'94\'bd\u12377\'82\'b7\u12427
\'82\'e9\u26465\'8f\'f0\u-26619\'8d\'80\u12398\'82\'cc\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12395\'82\'c9\u20778\'97\'44\u20808\'90\'e6\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0\pararsid12877612 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 A.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92 \u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u20869\'93\'e0\u-28440\'95\'94\u30340\'93\'49
\u20351\'8e\'67\u29992\'97\'70\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-27253\'8a\'4a\u30330\'94\'ad\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u-30159
\'8b\'96\u-29954\'91\'f8}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u-30500\'95\'e2\u-29261\'91\'ab\u26465\'8f\'f0\u-26619
\'8d\'80\u12398\'82\'cc}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \hich\af0\dbch\af92\loch\f92 Java }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92 \u12486\'83\'65\u12463\'83\'4e\u12494\'83\'6d\u12525\'83\'8d\u12472\'83\'57\u12540\'81\'5b\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9
\u21046\'90\'a7\u32004\'96\'f1\u20107\'8e\'96\u-26619\'8d\'80\loch\af92\hich\af0\dbch\f92 \u12434\'82\'f0\u21547\'8a\'dc\u12416\'82\'de\u12364\'82\'aa\u12381\'82\'bb\u12428\'82\'ea\u12395\'82\'c9\u-27056\'8c\'c0\u23450\'92\'e8\u12373\'82\'b3\u12428
\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12398\'82\'cc\u26465\'8f\'f0\u20214\'8c\'8f\u12392\'82\'c6\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid11735800\charrsid11735800 \loch\af92\hich\af0\dbch\f92 \u21442\'8e\'51\u29031\'8f\'c6\loch\af92\hich\af0\dbch\f92 \u12377\'82\'b7\u12427\'82\'e9\u20107\'8e\'96\loch\af92\hich\af0\dbch\f92
\u12395\'82\'c9\loch\af92\hich\af0\dbch\f92 \u12424\'82\'e6\loch\af92\hich\af0\dbch\f92 \u12426\'82\'e8\loch\af92\hich\af0\dbch\f92 \u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\loch\af92\hich\af0\dbch\f92 \u12395\'82\'c9\loch\af92\hich\af0\dbch\f92
\u21547\'8a\'dc\loch\af92\hich\af0\dbch\f92 \u12414\'82\'dc\loch\af92\hich\af0\dbch\f92 \u12428\'82\'ea\loch\af92\hich\af0\dbch\f92 \u12427\'82\'e9}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92 \u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \hich\af0\dbch\af92\loch\f92 README }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92
\u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12395\'82\'c9\u-30184\'8b\'4c\u-28919\'8d\'da\u12398\'82\'cc\u21046\'90\'a7\u-27056\'8c\'c0\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20363\'97\'e1\u22806\'8a\'4f\u20107\'8e\'96\u-26619
\'8d\'80\u12395\'82\'c9\u24467\'8f\'5d\u12356\'82\'a2\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \hich\af0\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe2052\loch\af92\dbch\af92\langnp1041\insrsid12877612 \loch\af92\hich\af0\dbch\f92 \u12399\'82\'cd\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71
\u27096\'97\'6c\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12398\'82\'cc\u-30163\'90\'dd\u-30200\'8c\'76\u12289\'81\'41\u-27253\'8a\'4a\u30330\'94\'ad\u12289\'81\'41\u12486
\'83\'65\u12473\'83\'58\u12488\'83\'67\u12434\'82\'f0\u30446\'96\'da\u30340\'93\'49\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12289\'81\'41\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u23436
\'8a\'ae\u20840\'91\'53\u12394\'82\'c8\u12289\'81\'41\u12363\'82\'a9\u12388\'82\'c2\u25913\'89\'fc\u22793\'95\'cf\u12398\'82\'cc\u21152\'89\'c1\u12360\'82\'a6\u12425\'82\'e7\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12394\'82\'c8\u12356\'82\'a2\u29366
\'8f\'f3\u24907\'91\'d4\u12391\'82\'c5\u12289\'81\'41\u31038\'8e\'d0\u20869\'93\'e0\u12391\'82\'c5\u-30457\'95\'a1\u-30467\'90\'bb\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20351\'8e\'67\u29992\'97\'70\u12377\'82\'b7\u12427\'82\'e9\u12383\'82\'bd
\u12417\'82\'df\u12398\'82\'cc\u12289\'81\'41\u-26786\'94\'f1\u29420\'93\'c6\u21344\'90\'e8\u30340\'93\'49\u12391\'82\'c5\u-29838\'8f\'f7\u28193\'93\'6e\u19981\'95\'73\u-32515\'94\'5c\u12394\'82\'c8\u12289\'81\'41\u21046\'90\'a7\u-27056\'8c\'c0\u12373
\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u20351\'8e\'67\u29992\'97\'70\u27177\'8c\'a0\u12434\'82\'f0\u12289\'81\'41\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26009\'97\'bf\u12394\'82\'c8\u12375\'82\'b5\u12391\'82\'c5
\u-30159\'8b\'96\u-29954\'91\'f8\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 B.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12501\'83\'74
\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u-26606\'94\'d0\u24067\'95\'7a\u-30159\'8b\'96\u21487\'89\'c2}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u26412\'96\'7b\u-30500\'95\'e2\u-29261\'91\'ab\u26465\'8f\'f0\u-26619\'8d\'80\u12398\'82\'cc}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Java }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12486\'83\'65\u12463\'83\'4e\u12494\'83\'6d\u12525\'83\'8d\u12472\'83\'57\u12540\'81\'5b\u12395\'82\'c9\u-27230
\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u21046\'90\'a7\u32004\'96\'f1\u20107\'8e\'96\u-26619\'8d\'80\u12392\'82\'c6\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 README }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12395\'82\'c9\u-30184\'8b\'4c\u-28919\'8d\'da\u12398
\'82\'cc\u21046\'90\'a7\u-27056\'8c\'c0\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20363\'97\'e1\u22806\'8a\'4f\u20107\'8e\'96\u-26619\'8d\'80\u12434\'82\'f0\u21547\'8a\'dc\u12416\'82\'de}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12383\'82\'bd\u12384\'82\'be\u12375\'82\'b5\u12381\'82\'bb\u12428\'82\'ea\u12425\'82\'e7\u12395\'82\'c9\u-27056
\'8c\'c0\u23450\'92\'e8\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u26412\'96\'7b\u22865\'8c\'5f\u32004
\'96\'f1\u12398\'82\'cc\u26465\'8f\'f0\u20214\'8c\'8f\u12395\'82\'c9\u24467\'8f\'5d\u12356\'82\'a2\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12395\'82\'c9\u23550\'91\'ce\u12375\'82\'b5\u12289
\'81\'41\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u31038\'8e\'d0\u20869\'93\'e0\u12391\'82\'c5\u-30457\'95\'a1\u-30467\'90\'bb\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-26606\'94\'d0
\u24067\'95\'7a\u12377\'82\'b7\u12427\'82\'e9\u12289\'81\'41\u-26786\'94\'f1\u29420\'93\'c6\u21344\'90\'e8\u30340\'93\'49\u12391\'82\'c5\u-29838\'8f\'f7\u28193\'93\'6e\u19981\'95\'73\u-32515\'94\'5c\u12394\'82\'c8\u12289\'81\'41\u21046\'90\'a7\u-27056
\'8c\'c0\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u20351\'8e\'67\u29992\'97\'70\u27177\'8c\'a0\u12434\'82\'f0\u12289\'81\'41\u20197\'88\'c8\u19979\'89\'ba\u12398\'82\'cc}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (i) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12363\'82\'a9\u12425\'82\'e7}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (vii) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12434\'82\'f0\u26465\'8f\'f0\u20214\'8c\'8f\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12521\'83\'89\u12452
\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26009\'97\'bf\u12394\'82\'c8\u12375\'82\'b5\u12391\'82\'c5\u-30159\'8b\'96\u-29954\'91\'f8\u12375\'82\'b5\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (i) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u23436
\'8a\'ae\u20840\'91\'53\u12391\'82\'c5\u25913\'89\'fc\u22793\'95\'cf\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u12414\'82\'dc\u12414\'82\'dc\u12289\'81\'41\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12398\'82\'cc\u12503\'83\'76\u12525
\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12434\'82\'f0\u23455\'8e\'c0\u-30644\'8d\'73\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u21807\'97\'42\u19968\'88\'ea\u12398\'82\'cc\u30446\'96\'da\u30340\'93\'49
\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12414\'82\'dc\u12383\'82\'bd\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12398\'82\'cc\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12398\'82\'cc\u19968\'88\'ea\u-28440
\'95\'94\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12496\'83\'6f\u12531\'83\'93\u12489\'83\'68\u12523\'83\'8b\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u29366\'8f\'f3\u24907\'91\'d4\u12391\'82\'c5\u12398\'82\'cc\u12415\'82\'dd\u-26606\'94\'d0
\u24067\'95\'7a\u12377\'82\'b7\u12427\'82\'e9\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (ii) }{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80
\u12364\'82\'aa\u-28211\'8f\'64\u-30335\'97\'76\u12363\'82\'a9\u12388\'82\'c2\u20027\'8e\'e5\u-30335\'97\'76\u12394\'82\'c8\u27231\'8b\'40\u-32515\'94\'5c\u12434\'82\'f0\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455
\'83\'46\u12450\'83\'41\u12395\'82\'c9\u19982\'97\'5e\u12360\'82\'a6\u12427\'82\'e9\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 (iii) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12501\'83\'74\u12488
\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12398\'82\'cc\u12467\'83\'52\u12531\'83\'93\u12509\'83\'7c\u12540\'81\'5b\u12493\'83\'6c\u12531\'83\'93\u12488\'83\'67\u12434\'82\'f0\u21462\'8e\'e6\loch\af92\hich\af92\dbch\f92 \u12426\'82\'e8\u26367
\'91\'d6\u12360\'82\'a6\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12434\'82\'f0\u30446\'96\'da\u30340\'93\'49\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u-28675\'92\'c7\u21152\'89\'c1\u30340\'93\'49\u12394\'82\'c8\u12477\'83\'5c\u12501\'83\'74
\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u-26606\'94\'d0\u24067\'95\'7a\u12375\'82\'b5\u12394\'82\'c8\u12356\'82\'a2\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (iv) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u-30184
\'8b\'4c\u-28919\'8d\'da\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u12356\'82\'a2\u12363\'82\'a9\u12394\'82\'c8\u12427\'82\'e9\u25152\'8f\'8a\u26377\'97\'4c\u27177\'8c\'a0\u-30616\'95\'5c\u31034\'8e\'a6\u12420\'82\'e2
\u21578\'8d\'90\u30693\'92\'6d\u12418\'82\'e0\u-27036\'8f\'9c\u21435\'8b\'8e\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u22793\'95\'cf\u26356\'8d\'58\u12375\'82\'b5\u12394\'82\'c8\u12356\'82\'a2\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (v) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12364\'82\'aa\u12289\'81\'41\u26412\'96\'7b\u22865\'8c\'5f\u32004
\'96\'f1\u12395\'82\'c9\u21547\'8a\'dc\u12414\'82\'dc\u12428\'82\'ea\u12427\'82\'e9\u26465\'8f\'f0\u-26619\'8d\'80\u12392\'82\'c6\u19968\'88\'ea\u-29525\'8a\'d1\u12375\'82\'b5\u12383\'82\'bd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\u21033\'97\'98\u30410\'89\'76\u12434\'82\'f0\u20445\'95\'db\u-29833\'8c\'ec\u12377\'82\'b7\u12427
\'82\'e9\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004\'96\'f1\u12395\'82\'c9\u24467\'8f\'5d\u12387\'82\'c1\u12390\'82\'c4\u12398\'82\'cc\u12415\'82\'dd\u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488
\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12434\'82\'f0\u-26606\'94\'d0\u24067\'95\'7a\u12377\'82\'b7\u12427\'82\'e9\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (vi) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12300\'81\'75\u12503\'83\'76\u12525\'83\'8d\u12464\'83\'4f\u12521\'83\'89\u12512\'83\'80\u12301\'81\'76\u12362
\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12300\'81\'75\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12301\'81\'76\u12398\'82\'cc\u19968\'88\'ea\u-28440\'95\'94\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd
\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12398\'82\'cc\u20351\'8e\'67\u29992\'97\'70\u12354\'82\'a0\u12427\'82\'e9\u12356\'82\'a2\u12399\'82\'cd\u-26606\'94\'d0\u24067\'95\'7a\u12395\'82\'c9\u-29321\'8b\'4e\u22240\'88\'f6\u12375\'82\'b5\u12383
\'82\'bd\u31532\'91\'e6\u19977\'8e\'4f\u-32763\'8e\'d2\u12363\'82\'a9\u12425\'82\'e7\u12398\'82\'cc\u-30005\'90\'bf\u27714\'8b\'81\u12289\'81\'41\u-30156\'91\'69\u-30177\'8f\'d7\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u-30644\'8d\'73\u28858\'88\'d7
\u12395\'82\'c9\u-27230\'8a\'d6\u-28637\'98\'41\u12375\'82\'b5\u12390\'82\'c4\u29983\'90\'b6\u12376\'82\'b6\u12427\'82\'e9\u12356\'82\'a2\u12363\'82\'a9\u12394\'82\'c8\u12427\'82\'e9\u25613\'91\'b9\u23475\'8a\'51\u12289\'81\'41\u-29509\'94\'ef\u29992
\'97\'70\u12289\'81\'41\u-29524\'90\'d3\u20219\'94\'43\u12289\'81\'41\u21644\'98\'61\u-30237\'89\'f0\u-28207\'8b\'e0\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u20986\'8f\'6f\u-29509\'94\'ef}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u24321\'95\'d9\u-29833\'8c\'ec\u22763\'8e\'6d\u-29509\'94\'ef\u29992\'97\'70\u12434\'82\'f0\u21547\'8a\'dc\u12416
\'82\'de}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12363\'82\'a9\u12425\'82\'e7\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12392\'82\'c6\u12381\'82\'bb\u12398\'82\'cc\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12469
\'83\'54\loch\af92\hich\af92\dbch\f92 \u12434\'82\'f0\u-27086\'96\'68\u31142\'8b\'9a\u12375\'82\'b5\u12289\'81\'41\u-30500\'95\'e2\u20767\'8f\'9e\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12395\'82\'c9\u21516\'93\'af\u24847\'88\'d3
\u12377\'82\'b7\u12427\'82\'e9\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 C.\tab Java}{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12486\'83\'65\u12463\'83\'4e
\u12494\'83\'6d\u12525\'83\'8d\u12472\'83\'57\u12540\'81\'5b\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u21046\'90\'a7\u32004\'96\'f1\u20107\'8e\'96\u-26619\'8d\'80}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12364\'82\'aa\u21629\'96\'bd\u21517\'96\'bc\u-30321\'8b\'4b\u32004\'96\'f1\u12391\'82\'c5\u29305\'93\'c1\u23450
\'92\'e8\u12375\'82\'b5\u12383\'82\'bd}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 java}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 javax}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u21516\'93\'af\u27096\'97\'6c\u12395\'82\'c9\u-30321\'8b\'4b\u23450
\'92\'e8\u12373\'82\'b3\u12428\'82\'ea\u12383\'82\'bd\u21517\'96\'bc\u31216\'8f\'cc\u12392\'82\'c6\u12375\'82\'b5\u12390\'82\'c4\u12394\'82\'c8\u12435\'82\'f1\u12425\'82\'e7\u12363\'82\'a9\u12398\'82\'cc\u26041\'95\'fb\u27861\'96\'40\u12391\'82\'c5\u30906
\'8a\'6d\u-30067\'94\'46\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u12463\'83\'4e\u12521\'83\'89\u12473\'83\'58\u12289\'81\'41\u12452\'83\'43\u12531\'83\'93\u12479\'83\'5e\u12501\'83\'74\u12455\'83\'46\u12540\'81\'5b\u12473\'83\'58\u12289\'81\'41
\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12469\'83\'54\u12502\'83\'75\u12497\'83\'70\u12483\'83\'62\u12465\'83\'50\u12540\'81\'5b\u12472\'83\'57\u12398\'82\'cc\u21453\'94\'bd\u24540\'89\'9e\u12434\'82\'f0\u12362\'82\'a8\u23458\'8b\'71\u27096\'97\'6c
\u-32278\'8e\'a9\u-29013\'90\'67\u12364\'82\'aa\u21109\'91\'6e\u25104\'90\'ac\u12289\'81\'41\u25913\'89\'fc\u22793\'95\'cf\u12418\'82\'e0\u12375\'82\'b5\u12367\'82\'ad\u12399\'82\'cd\u22793\'95\'cf\u26356\'8d\'58\u12375\'82\'b5\u12383\'82\'bd\u12426
\'82\'e8\u12289\'81\'41\u20182\'91\'bc\u-32763\'8e\'d2\u12395\'82\'c9\u12371\'82\'b1\u12398\'82\'cc\u21453\'94\'bd\u24540\'89\'9e\u12434\'82\'f0\u21109\'91\'6e\u25104\'90\'ac\u12289\'81\'41\u25913\'89\'fc\u22793\'95\'cf\u12418\'82\'e0\u12375\'82\'b5
\u12367\'82\'ad\u12399\'82\'cd\u22793\'95\'cf\u26356\'8d\'58\u12373\'82\'b3\u12379\'82\'b9\u12383\'82\'bd\u12426\'82\'e8\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12399\'82\'cd\u12391\'82\'c5\u12365\'82\'ab\u12414\'82\'dc\u12379\'82\'b9
\u12435\'82\'f1\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 D.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12540\'81\'5b
\u12473\'83\'58\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42
\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12399\'82\'cd\u12289\'81\'41\u20182\'91\'bc\u12398\'82\'cc\u30446\'96\'da\u30340\'93\'49\u12398\'82\'cc\u12383\'82\'bd\u12417\'82\'df\u12395\'82\'c9\u20351\'8e\'67
\u29992\'97\'70\u27177\'8c\'a0\u12364\'82\'aa\u26126\'96\'be\u30906\'8a\'6d\u12395\'82\'c9\u20184\'95\'74\u19982\'97\'5e\u12373\'82\'b3\u12428\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u-27056\'8c\'c0\u12426\'82\'e8\u12289\'81\'41\u26412\'96\'7b\u22865
\'8c\'5f\u32004\'96\'f1\u12398\'82\'cc\u26465\'8f\'f0\u-26619\'8d\'80\u12395\'82\'c9\u24467\'8f\'5d\u12387\'82\'c1\u12390\'82\'c4\u21442\'8e\'51\u29031\'8f\'c6\u30446\'96\'da\u30340\'93\'49\u12398\'82\'cc\u12383\'82\'bd\u12417\'82\'df\u12384\'82\'be
\u12369\'82\'af\u12395\'82\'c9\u25552\'92\'f1\u20379\'8b\'9f\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\loch\af92\hich\af92\dbch\f92 \u12477\'83\'5c\u12540\'81\'5b\u12473\'83\'58\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68\u12434\'82\'f0\u21547\'8a\'dc
\u12435\'82\'f1\u12391\'82\'c5\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12391\'82\'c5\u26126\'96\'be\u30906\'8a\'6d\u12395\'82\'c9\u-30321\'8b\'4b\u23450\'92\'e8\u12373\'82\'b3\u12428
\'82\'ea\u12394\'82\'c8\u12356\'82\'a2\u-27056\'8c\'c0\u12426\'82\'e8\u12289\'81\'41\u12477\'83\'5c\u12540\'81\'5b\u12473\'83\'58\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68\u12398\'82\'cc\u20877\'8d\'c4\u-26606\'94\'d0\u24067\'95\'7a\u12399\'82\'cd
\u-30159\'8b\'96\u21487\'89\'c2\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12379\'82\'b9\u12435\'82\'f1\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang5130\langfe1041\loch\af92\hich\af92\dbch\af92\langnp5130\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0\pararsid8458625 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 E.\tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u31532\'91\'e6\u19977\'8e\'4f\u-32763\'8e\'d2\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46
\u12450\'83\'41\u12398\'82\'cc\u19968\'88\'ea\u-28440\'95\'94\u12395\'82\'c9\u-28567\'93\'4b\u29992\'97\'70\u12373\'82\'b3\u12428\'82\'ea\u12427\'82\'e9\u-28675\'92\'c7\u21152\'89\'c1\u30340\'93\'49\u12394\'82\'c8\u-31657\'92\'98\u20316\'8d\'ec\u27177
\'8c\'a0\u21578\'8d\'90\u30693\'92\'6d\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12399\'82\'cd\u12289\'81\'41}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 THIRDPARTYLICENSEREADME.txt }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12501\'83\'74\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12395\'82\'c9\u-30321\'8b\'4b\u23450\'92\'e8\u12373
\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 THIRDPARTYLICENSEREADME.txt }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12501\'83\'74
\u12449\'83\'40\u12452\'83\'43\u12523\'83\'8b\u12395\'82\'c9\u26126\'96\'be\u-30184\'8b\'4c\u12373\'82\'b3\u12428\'82\'ea\u12390\'82\'c4\u12356\'82\'a2\u12427\'82\'e9\u12354\'82\'a0\u12425\'82\'e7\u12422\'82\'e4\u12427\'82\'e9\u31532\'91\'e6\u19977
\'8e\'4f\u-32763\'8e\'d2\u12458\'83\'49\u12540\'81\'5b\u12503\'83\'76\u12531\'83\'93\u12477\'83\'5c\u12540\'81\'5b\u12473\'83\'58}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 /}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12501\'83\'74\u12522\'83\'8a\u12540\'81\'5b\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u26465\'8f\'f0\u-26619\'8d\'80\u12395
\'82\'c9\u21152\'89\'c1\u12360\'82\'a6\u12390\'82\'c4\u12289\'81\'41\u12496\'83\'6f\u12452\'83\'43\u12490\'83\'69\u12522\'83\'8a\u12467\'83\'52\u12540\'81\'5b\u12489\'83\'68}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12521\'83\'89\u12452\'83\'43\u12475\'83\'5a\u12531\'83\'93\u12473\'83\'58\u22865\'8c\'5f\u32004\'96\'f1\u12398
\'82\'cc\u31532\'91\'e6}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 5 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u31532\'91\'e6}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 6 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u-26619\'8d\'80\u12395\'82\'c9\u-30184\'8b\'4c\u-28919\'8d\'da\u12398\'82\'cc\u12300\'81\'75\u20445\'95\'db
\u-30148\'8f\'d8\u12398\'82\'cc\u21542\'94\'db\u-30067\'94\'46\u12301\'81\'76\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u12300\'81\'75\loch\af92\hich\af92\dbch\f92 \u-29524\'90\'d3\u20219\'94\'43\u12398\'82\'cc\u-27056\'8c\'c0\u24230\'93\'78\u12301
\'81\'76\u26465\'8f\'f0\u-26619\'8d\'80\u12364\'82\'aa\u12371\'82\'b1\u12398\'82\'cc\u-26606\'94\'d0\u24067\'95\'7a\u12398\'82\'cc\u12377\'82\'b7\u12409\'82\'d7\u12390\'82\'c4\u12398\'82\'cc\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45
\u12455\'83\'46\u12450\'83\'41\u12395\'82\'c9\u-28567\'93\'4b\u29992\'97\'70\u12373\'82\'b3\u12428\'82\'ea\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0\pararsid10382301 {\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 F.}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0
\b\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid10382301 \loch\af92\hich\af92\dbch\f92 \u27177\'8c\'a0\u21033\'97\'98\u20405\'90\'4e\u23475\'8a\'51\u12395\'82\'c9\u12424\'82\'e6\u12427\'82\'e9\u22865\'8c\'5f
\u32004\'96\'f1\u-30237\'89\'f0\u-27036\'8f\'9c}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid10382301\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{
\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12356\'82\'a2\u12378\'82\'b8\u12428\'82\'ea\u12363\'82\'a9\u12398\'82\'cc\u12477
\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450\'83\'41\u12364\'82\'aa\u12394\'82\'c8\u12435\'82\'f1\u12425\'82\'e7\u12363\'82\'a9\u12398\'82\'cc\u30693\'92\'6d\u30340\'93\'49\u-29535\'8d\'e0\u29987\'8e\'59\u27177\'8c\'a0
\u12434\'82\'f0\u20405\'90\'4e\u23475\'8a\'51\u12375\'82\'b5\u12383\'82\'bd\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12381\'82\'bb\u12428\'82\'ea\u12364\'82\'aa\u30097\'8b\'5e\u12431\'82\'ed\u12428\'82\'ea
\u12427\'82\'e9\u22580\'8f\'ea\u21512\'8d\'87\u12289\'81\'41\u12356\'82\'a2\u12378\'82\'b8\u12428\'82\'ea\u12363\'82\'a9\u12398\'82\'cc\u24403\'93\'96\u20107\'8e\'96\u-32763\'8e\'d2\u12399\'82\'cd\u26412\'96\'7b\u22865\'8c\'5f\u32004\'96\'f1\u12434
\'82\'f0\u21363\'91\'a6\u26178\'8e\'9e\u32066\'8f\'49\u32080\'8c\'8b\u12377\'82\'b7\u12427\'82\'e9\u12371\'82\'b1\u12392\'82\'c6\u12364\'82\'aa\u12391\'82\'c5\u12365\'82\'ab\u12414\'82\'dc\u12377\'82\'b7\u12290\'81\'42}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\faauto\rin0\lin720\itap0\pararsid8458625 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 G.}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \tab }{\rtlch\fcs1 \ab\af92\afs20 \ltrch\fcs0 \b\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid10382301
\loch\af92\hich\af92\dbch\f92 \u12452\'83\'43\u12531\'83\'93\u12473\'83\'58\u12488\'83\'67\u12540\'81\'5b\u12523\'83\'8b\u12362\'82\'a8\u12424\'82\'e6\u12403\'82\'d1\u-32278\'8e\'a9\u21205\'93\'ae\u12450\'83\'41\u12483\'83\'62\u12503\'83\'76\u12487
\'83\'66\u12540\'81\'5b\u12488\'83\'67}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid10382301\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u26412\'96\'7b\u12477\'83\'5c\u12501\'83\'74\u12488\'83\'67\u12454\'83\'45\u12455\'83\'46\u12450
\'83\'41\u12398\'82\'cc\u12452\'83\'43\u12531\'83\'93\u12473\'83\'58\u12488\'83\'67\u12540\'81\'5b\u12523\'83\'8b\u12392\'82\'c6\u-32278\'8e\'a9\u21205\'93\'ae\u12450\'83\'41\u12483\'83\'62\u12503\'83\'76\u12487\'83\'66\u12540\'81\'5b\u12488\'83\'67
\u12503\'83\'76\u12525\'83\'8d\u12475\'83\'5a\u12473\'83\'58\u12395\'82\'c9\u-26981\'8d\'db\u12375\'82\'b5\u12390\'82\'c4\u12399\'82\'cd\u12289\'81\'41\u12381\'82\'bb\u12428\'82\'ea\u12425\'82\'e7\u29305\'93\'c1\u23450\'92\'e8\u12398\'82\'cc\u12503
\'83\'76\u12525\'83\'8d\u12475\'83\'5a\u12473\'83\'58\u12395\'82\'c9\u-27230\'8a\'d6\u12377\'82\'b7\u12427\'82\'e9\u19968\'88\'ea\u23450\'92\'e8\u12398\'82\'cc\u12487\'83\'66\u12540\'81\'5b\u12479\'83\'5e\u12364\'82\'aa}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun (}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\u12383\'82\'bd\u12399\'82\'cd\u12469\'83\'54\u12540\'81\'5b\u12499\'83\'72\u12473\'83\'58\u12503\'83\'76
\u12525\'83\'8d\u12496\'83\'6f\u12452\'83\'43\u12480\'83\'5f}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 ) }{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\loch\af92\hich\af92\dbch\f92 \u-28958\'93\'5d\loch\af92\hich\af92\dbch\f92 \u-28671
\'91\'97\loch\af92\hich\af92\dbch\f92 \u12373\'82\'b3\loch\af92\hich\af92\dbch\f92 \u12428\'82\'ea\loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\loch\af92\hich\af92\dbch\f92 \u12377\'82\'b7\loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1
\af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\loch\af92\hich\af92\dbch\f92 \u12371\'82\'b1\loch\af92\hich\af92\dbch\f92 \u12428\'82\'ea
\loch\af92\hich\af92\dbch\f92 \u12425\'82\'e7\loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\loch\af92\hich\af92\dbch\f92 \u12487\'83\'66\loch\af92\hich\af92\dbch\f92 \u12540\'81\'5b\loch\af92\hich\af92\dbch\f92 \u12479\'83\'5e\loch\af92\hich\af92\dbch\f92
\u12434\'82\'f0\loch\af92\hich\af92\dbch\f92 \u12503\'83\'76\loch\af92\hich\af92\dbch\f92 \u12525\'83\'8d\loch\af92\hich\af92\dbch\f92 \u12475\'83\'5a\loch\af92\hich\af92\dbch\f92 \u12473\'83\'58\loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc
\loch\af92\hich\af92\dbch\f92 \u25226\'94\'63\loch\af92\hich\af92\dbch\f92 \u25569\'88\'ac\loch\af92\hich\af92\dbch\f92 \u12392\'82\'c6\loch\af92\hich\af92\dbch\f92 \u26368\'8d\'c5\loch\af92\hich\af92\dbch\f92 \u-28567\'93\'4b
\loch\af92\hich\af92\dbch\f92 \u21270\'89\'bb\loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\loch\af92\hich\af92\dbch\f92 \u21033\'97\'98\loch\af92\hich\af92\dbch\f92 \u29992\'97\'70\loch\af92\hich\af92\dbch\f92 \u12375\'82\'b5\loch\af92\hich\af92\dbch\f92
\u12414\'82\'dc\loch\af92\hich\af92\dbch\f92 \u12377\'82\'b7\loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\hich\af92\dbch\af92\loch\f92 Sun }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\loch\af92\hich\af92\dbch\f92 \u12371
\'82\'b1\loch\af92\hich\af92\dbch\f92 \u12358\'82\'a4\loch\af92\hich\af92\dbch\f92 \u12375\'82\'b5\loch\af92\hich\af92\dbch\f92 \u12390\'82\'c4\loch\af92\hich\af92\dbch\f92 \u-26938\'8f\'57\loch\af92\hich\af92\dbch\f92 \u12417\'82\'df
\loch\af92\hich\af92\dbch\f92 \u12425\'82\'e7\loch\af92\hich\af92\dbch\f92 \u12428\'82\'ea\loch\af92\hich\af92\dbch\f92 \u12383\'82\'bd\loch\af92\hich\af92\dbch\f92 \u12487\'83\'66\loch\af92\hich\af92\dbch\f92 \u12540\'81\'5b\loch\af92\hich\af92\dbch\f92
\u12479\'83\'5e\loch\af92\hich\af92\dbch\f92 \u12434\'82\'f0\loch\af92\hich\af92\dbch\f92 \u20491\'8c\'c2\loch\af92\hich\af92\dbch\f92 \u20154\'90\'6c\loch\af92\hich\af92\dbch\f92 \u24773\'8f\'ee\loch\af92\hich\af92\dbch\f92 \u22577\'95\'f1
\loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\loch\af92\hich\af92\dbch\f92 \u32080\'8c\'8b\loch\af92\hich\af92\dbch\f92 \u12403\'82\'d1\loch\af92\hich\af92\dbch\f92 \u12388\'82\'c2\loch\af92\hich\af92\dbch\f92 \u12369\'82\'af\loch\af92\hich\af92\dbch\f92
\u12427\'82\'e9\loch\af92\hich\af92\dbch\f92 \u12371\'82\'b1\loch\af92\hich\af92\dbch\f92 \u12392\'82\'c6\loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\loch\af92\hich\af92\dbch\f92 \u12354\'82\'a0\loch\af92\hich\af92\dbch\f92 \u12426\'82\'e8
\loch\af92\hich\af92\dbch\f92 \u12414\'82\'dc\loch\af92\hich\af92\dbch\f92 \u12379\'82\'b9\loch\af92\hich\af92\dbch\f92 \u12435\'82\'f1\loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 Sun\hich\af92\dbch\af92\loch\f92 }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12398\'82\'cc\loch\af92\hich\af92\dbch\f92 \u12487\'83\'66\loch\af92\hich\af92\dbch\f92 \u12540\'81\'5b
\loch\af92\hich\af92\dbch\f92 \u12479\'83\'5e\loch\af92\hich\af92\dbch\f92 \u21454\'8e\'fb\loch\af92\hich\af92\dbch\f92 \u-26938\'8f\'57\loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9\loch\af92\hich\af92\dbch\f92 \u-27230\'8a\'d6
\loch\af92\hich\af92\dbch\f92 \u12377\'82\'b7\loch\af92\hich\af92\dbch\f92 \u12427\'82\'e9\loch\af92\hich\af92\dbch\f92 \u-30093\'8f\'da\loch\af92\hich\af92\dbch\f92 \u32048\'8d\'d7\loch\af92\hich\af92\dbch\f92 \u12395\'82\'c9
\loch\af92\hich\af92\dbch\f92 \u12388\'82\'c2\loch\af92\hich\af92\dbch\f92 \u12356\'82\'a2\loch\af92\hich\af92\dbch\f92 \u12390\'82\'c4\loch\af92\hich\af92\dbch\f92 \u12399\'82\'cd\loch\af92\hich\af92\dbch\f92 \u12289\'81\'41}{\rtlch\fcs1 \af92\afs20
\ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92 http://java.com/data/ }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0
\fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142 \loch\af92\hich\af92\dbch\f92 \u12434\'82\'f0\loch\af92\hich\af92\dbch\f92 \u21442\'8e\'51\loch\af92\hich\af92\dbch\f92 \u29031\'8f\'c6
\loch\af92\hich\af92\dbch\f92 \u12375\'82\'b5\loch\af92\hich\af92\dbch\f92 \u12390\'82\'c4\loch\af92\hich\af92\dbch\f92 \u12367\'82\'ad\loch\af92\hich\af92\dbch\f92 \u12384\'82\'be\loch\af92\hich\af92\dbch\f92 \u12373\'82\'b3\loch\af92\hich\af92\dbch\f92
\u12356\'82\'a2\loch\af92\hich\af92\dbch\f92 \u12290\'81\'42}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid8458625 {\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142
\loch\af92\hich\af92\dbch\f92 \u12362\'82\'a8\loch\af92\hich\af92\dbch\f92 \u21839\'96\'e2\loch\af92\hich\af92\dbch\f92 \u12356\'82\'a2\loch\af92\hich\af92\dbch\f92 \u21512\'8d\'87\loch\af92\hich\af92\dbch\f92 \u12431\'82\'ed\loch\af92\hich\af92\dbch\f92
\u12379\'82\'b9\loch\af92\hich\af92\dbch\f92 \u20808\'90\'e6}{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1041\langfe1041\loch\af92\hich\af92\dbch\af92\langnp1041\langfenp1041\insrsid8458625\charrsid1653142 \hich\af92\dbch\af92\loch\f92
: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. }{\rtlch\fcs1 \af92\afs20 \ltrch\fcs0 \fs20\lang1033\langfe1041\loch\af92\hich\af92\dbch\af92\langfenp1041\insrsid8458625\charrsid1653142
\par }}

View File

@@ -0,0 +1,61 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe2052{\fonttbl{\f0\froman\fprq2\fcharset129 Batang;}{\f1\froman\fprq2\fcharset0 Times New Roman;}}
{\colortbl ;\red0\green0\blue0;}
{\*\generator Msftedit 5.41.15.1507;}{\info{\horzdoc}{\*\lchars ([\'5c\'7b\'a3\'a5\'91\'93<\'ab????$([\'7b?}{\*\fchars !%),.:\'3b?]\'7d\'a2\'b0\'92\'94'??>\'bb????!%),.:\'3b?]\'7d?}}
\viewkind4\uc1\pard\qc\lang1042\f0\fs20 Sun Microsystems, Inc.\par
Binary Code License Agreement\par
\par
\'b0\'e8\'be\'e0 \'c1\'a6\'c7\'b0\lang5130\f1\par
\par
\lang1042\f0 JAVA SE RUNTIME ENVIRONMENT(JRE) VERSION 6\lang5130\f1\par
\par
\lang1042\f0\'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\lang5130\f1\par
\pard\qj\par
\lang1042\f0 SUN MICROSYSTEMS, INC.(\'c0\'cc\'c7\'cf "Sun")\'b4\'c2 \'b1\'cd\'c7\'cf\'b0\'a1 \'ba\'bb \'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\'bc\'ad \'b9\'d7 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7(\'c3\'d1\'c4\'aa\'c7\'cf\'bf\'a9 "\'ba\'bb \'b0\'e8\'be\'e0")\'bf\'a1 \'c6\'f7\'c7\'d4\'b5\'c8 \'b8\'f0\'b5\'e7 \'c1\'b6\'b0\'c7\'b5\'e9\'c0\'bb \'bd\'c2\'b3\'ab\'c7\'cf\'b4\'c2 \'c1\'b6\'b0\'c7 \'c7\'cf\'bf\'a1\'bc\'ad\'b8\'b8 \'be\'c6\'b7\'a1\'bf\'a1\'bc\'ad \'c6\'af\'c1\'a4\'b5\'c8 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\'bf\'a1 \'b4\'eb\'c7\'d1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b8\'a6 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'ba\'ce\'bf\'a9\'c7\'cf\'b0\'ed\'c0\'da \'c7\'d5\'b4\'cf\'b4\'d9. \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote \'b3\'bb\'bf\'eb\'c0\'bb \'c1\'d6\'c0\'c7 \'b1\'ed\'b0\'d4 \'c0\'d0\'c0\'b8\'bd\'ca\'bd\'c3\'bf\'c0. \'b1\'cd\'c7\'cf\'b0\'a1 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\'b8\'a6 \'b4\'d9\'bf\'ee\'b7\'ce\'b5\'e5\'c7\'cf\'b0\'c5\'b3\'aa \'bc\'b3\'c4\'a1\'c7\'cf\'b8\'e9 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'b8\'f0\'b5\'e7 \'c1\'b6\'c7\'d7\'c0\'bb \'bd\'c2\'b3\'ab\'c7\'cf\'b4\'c2 \'b0\'cd\'c0\'b8\'b7\'ce \'b0\'a3\'c1\'d6\'b5\'cb\'b4\'cf\'b4\'d9. \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'c7\'cf\'b4\'dc\'bf\'a1 \'c0\'d6\'b4\'c2 "\'bd\'c2\'b3\'ab(ACCEPT)" \'b9\'f6\'c6\'b0\'c0\'bb \'b4\'ad\'b7\'af \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b4\'eb\'c7\'d1 \'bd\'c2\'b3\'ab \'c0\'c7\'bb\'e7\'b8\'a6 \'c7\'a5\'bd\'c3\'c7\'cf\'bd\'ca\'bd\'c3\'bf\'c0. \'b1\'cd\'c7\'cf\'b2\'b2\'bc\'ad \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'b8\'f0\'b5\'e7 \'c1\'b6\'b0\'c7\'bf\'a1 \'b5\'fb\'b8\'a6 \'c0\'c7\'bb\'e7\'b0\'a1 \'be\'f8\'b4\'c2 \'b0\'e6\'bf\'ec, \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'c7\'cf\'b4\'dc\'bf\'a1 \'c0\'d6\'b4\'c2 "\'b0\'c5\'c0\'fd(DECLINE)" \'b9\'f6\'c6\'b0\'c0\'bb \'b4\'a9\'b8\'a3\'bd\'c3\'b8\'e9 \'b4\'d9\'bf\'ee\'b7\'ce\'b5\'e5\'b3\'aa \'bc\'b3\'c4\'a1\'b0\'fa\'c1\'a4\'c0\'cc \'c1\'df\'b4\'dc\'b5\'cb\'b4\'cf\'b4\'d9.\par
\par
\pard\fi-360\li720\qj\tx720\b 1.\tab\'bf\'eb\'be\'ee\'c0\'c7 \'c1\'a4\'c0\'c7.\b0 "\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee"\'b6\'f3 \'c7\'d4\'c0\'ba 'Sun'\'c0\'cc \'c1\'a6\'b0\'f8\'c7\'cf\'b4\'c2 \'c0\'a7\'bf\'a1 \'c7\'a5\'bd\'c3\'b5\'c8 \'c0\'cc\'c1\'f8 \'c7\'fc\'c5\'c2(binary form)\'c0\'c7 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee, \'b1\'e2\'b0\'e8\'c6\'c7\'b5\'b6 \'b0\'a1\'b4\'c9\'c7\'d1 \'bf\'a9\'c5\'b8 \'b8\'f0\'b5\'e7 \'c0\'da\'b7\'e1(\'b6\'f3\'c0\'cc\'ba\'ea\'b7\'af\'b8\'ae, \'bc\'d2\'bd\'ba \'c6\'c4\'c0\'cf, \'c7\'ec\'b4\'f5 \'c6\'c4\'c0\'cf \'b9\'d7 \'b5\'a5\'c0\'cc\'c5\'cd \'c6\'c4\'c0\'cf\'c0\'bb \'c6\'f7\'c7\'d4\'c7\'cf\'b3\'aa \'c0\'cc\'bf\'a1 \'b1\'b9\'c7\'d1\'b5\'c7\'c1\'f6\'b4\'c2 \'be\'ca\'c0\'bd), 'Sun'\'c0\'cc \'c1\'a6\'b0\'f8\'c7\'cf\'b4\'c2 \'b8\'f0\'b5\'e7 \'be\'f7\'b5\'a5\'c0\'cc\'c6\'ae(update) \'b6\'c7\'b4\'c2 \'bf\'c0\'b7\'f9 \'bc\'f6\'c1\'a4(error correction), \'b1\'d7\'b8\'ae\'b0\'ed \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b5\'fb\'b6\'f3 'Sun'\'c0\'cc \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c1\'a6\'b0\'f8\'c7\'cf\'b4\'c2 \'bb\'e7\'bf\'eb\'c0\'da \'b8\'c5\'b4\'ba\'be\'f3, \'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a1\'b9\'d6 \'b0\'a1\'c0\'cc\'b5\'e5 \'b9\'d7 \'b1\'e2\'c5\'b8 \'bc\'ad\'b7\'f9(documentation)\'b5\'e9\'c0\'bb \'c0\'c7\'b9\'cc\'c7\'d5\'b4\'cf\'b4\'d9. "\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5"\'c0\'cc\'b6\'f5 \'c0\'da\'b9\'d9\'b8\'a6 \'c1\'f6\'bf\'f8\'c7\'cf\'b4\'c2 \'c0\'cf\'b9\'dd \'b5\'a5\'bd\'ba\'c5\'a9\'c5\'be \'c4\'c4\'c7\'bb\'c5\'cd \'b9\'d7 \'bc\'ad\'b9\'f6\'c0\'c7 Java Platform Standard Edition(Java SE)\'bf\'a1\'bc\'ad \'c0\'db\'b5\'bf\'c7\'d2 \'bc\'f6 \'c0\'d6\'b5\'b5\'b7\'cf \'c1\'a6\'c0\'db\'b5\'c8 \'c0\'da\'b9\'d9 \'be\'d6\'c7\'c3\'b8\'b4\'b0\'fa \'be\'d6\'c7\'c3\'b8\'ae\'c4\'c9\'c0\'cc\'bc\'c7\'c0\'bb \'b8\'bb\'c7\'d5\'b4\'cf\'b4\'d9.\lang5130\f1\par
\pard\qj\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 2.\tab\'bb\'e7\'bf\'eb \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'c1\'b6\'b0\'c7(\'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\'c0\'c7 Java \'b1\'e2\'bc\'fa \'b1\'d4\'c1\'a6\'bb\'e7\'c7\'d7\'c0\'cc \'c6\'f7\'c7\'d4\'b5\'c7\'b3\'aa \'c0\'cc\'bf\'a1 \'b1\'b9\'c7\'d1\'b5\'c7\'c1\'f6 \'be\'ca\'c0\'bd)\'bf\'a1 \'b5\'fb\'b6\'f3, 'Sun'\'c0\'ba \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \ldblquote\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5\rdblquote\'c0\'bb \'b0\'a1\'b5\'bf\'c7\'d2 \'b8\'f1\'c0\'fb\'b8\'b8\'c0\'bb \'c0\'a7\'c7\'cf\'bf\'a9 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'bb\'e7\'bf\'eb\'b7\'e1 \'be\'f8\'c0\'cc \'bc\'f6\'c1\'a4\'c0\'bb \'b0\'c5\'c4\'a1\'c1\'f6 \'be\'ca\'c0\'ba \'bf\'cf\'c1\'a6\'c7\'b0 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'ba\'b9\'c1\'a6\'c7\'cf\'bf\'a9 \'b3\'bb\'ba\'ce\'bf\'a1\'bc\'ad \'bb\'e7\'bf\'eb\'c7\'d2 \'bc\'f6 \'c0\'d6\'b4\'c2 \'ba\'f1\'b5\'b6\'c1\'a1\'c0\'fb\'c0\'cc\'b0\'ed \'be\'e7\'b5\'b5 \'ba\'d2\'b0\'a1\'b4\'c9\'c7\'d1 \'c1\'a6\'c7\'d1\'b5\'c8 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b8\'a6 \'ba\'ce\'bf\'a9\'c7\'d5\'b4\'cf\'b4\'d9. \'b0\'b3\'b9\'df\'c0\'da(developer) \'b9\'d7/\'b6\'c7\'b4\'c2 \'b9\'df\'c7\'e0\'c0\'da(publisher)\'bf\'a1 \'b4\'eb\'c7\'d1 \'c3\'df\'b0\'a1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b4\'c2 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\'bf\'a1 \'c0\'c7\'c7\'cf\'bf\'a9 \'ba\'ce\'bf\'a9\'b5\'cb\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 3.\tab\'c1\'a6\'c7\'d1\'bb\'e7\'c7\'d7.\b0 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'b3\'bb\'bf\'eb\'c0\'ba \'b1\'e2\'b9\'d0\'c0\'cc\'b8\'e7 \'c0\'fa\'c0\'db\'b1\'c7\'c0\'b8\'b7\'ce \'ba\'b8\'c8\'a3\'b8\'a6 \'b9\'de\'bd\'c0\'b4\'cf\'b4\'d9. \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'b4\'eb\'c7\'d1 \'bc\'d2\'c0\'af\'b1\'c7 \'b9\'d7 \'c0\'cc\'bf\'a1 \'b0\'fc\'b7\'c3\'b5\'c8 \'b8\'f0\'b5\'e7 \'c1\'f6\'c0\'fb\'c0\'e7\'bb\'ea\'b1\'c7\'c0\'ba 'Sun' \'b9\'d7/\'b6\'c7\'b4\'c2 'Sun'\'bf\'a1 \'b4\'eb\'c7\'d1 \'c7\'d8\'b4\'e7 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'c1\'a6\'b0\'f8\'c0\'da(licensor)\'b0\'a1 \'ba\'b8\'c0\'af\'c7\'d5\'b4\'cf\'b4\'d9. \'b0\'fc\'b7\'c3 \'b9\'fd\'b7\'c9\'bf\'a1 \'c0\'c7\'c7\'d8 \'c1\'fd\'c7\'e0\'c0\'cc \'b1\'dd\'c1\'f6\'b5\'c7\'b4\'c2 \'b0\'e6\'bf\'ec\'b8\'a6 \'c1\'a6\'bf\'dc\'c7\'cf\'b0\'ed\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'bc\'f6\'c1\'a4\'c7\'cf\'b0\'c5\'b3\'aa, \'b5\'f0\'c4\'c4\'c6\'c4\'c0\'cf(Decompiling)\'c7\'cf\'b0\'c5\'b3\'aa \'b6\'c7\'b4\'c2 \'bf\'aa\'bc\'b3\'b0\'e8(Reverse Engineering)\'c7\'d8\'bc\'ad \'be\'c8\'b5\'cb\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'b4\'c2 \ldblquote\'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b0\'a1 \'ba\'ce\'bf\'a9\'b5\'c8 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b0\'a1 \'c7\'d9 \'bd\'c3\'bc\'b3\'c0\'c7 \'bc\'b3\'b0\'e8\'b3\'aa \'b0\'c7\'bc\'b3, \'c0\'db\'b5\'bf, \'c0\'af\'c1\'f6 \'ba\'b8\'bc\'f6 \'b5\'ee\'bf\'a1 \'bb\'e7\'bf\'eb\'c7\'d2 \'b8\'f1\'c0\'fb\'c0\'b8\'b7\'ce \'c0\'c7\'b5\'b5\'b5\'c7\'b0\'c5\'b3\'aa \'b0\'ed\'be\'c8\'b5\'c7\'c1\'f6 \'be\'ca\'be\'d2\'c0\'bd\'c0\'bb \'c0\'ce\'c1\'a4\'c7\'d5\'b4\'cf\'b4\'d9. Sun Microsystems, Inc\cf1 .\cf0\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b0\'a1 \'c0\'cc\'b7\'af\'c7\'d1 \'bf\'eb\'b5\'b5\'bf\'a1 \'c0\'fb\'c7\'d5\'c7\'cf\'b4\'d9\'b4\'c2 \'c1\'a1\'bf\'a1 \'b4\'eb\'c7\'d8\'bc\'ad\'b4\'c2 \'be\'ee\'b6\'b0\'c7\'d1 \'b8\'ed\'bd\'c3\'c0\'fb \'b6\'c7\'b4\'c2 \'b9\'ac\'bd\'c3\'c0\'fb \'ba\'b8\'c1\'f5\'c0\'bb \'c7\'cf\'c1\'f6 \'be\'ca\'bd\'c0\'b4\'cf\'b4\'d9. \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'c0\'c7\'c7\'d8\'bc\'ad\'b4\'c2, 'Sun' \'b6\'c7\'b4\'c2 'Sun'\'bf\'a1 \'b4\'eb\'c7\'d1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'c1\'a6\'b0\'f8\'c0\'da(licensor)\'c0\'c7 \'bb\'f3\'c7\'a5, \'bc\'ad\'ba\'f1\'bd\'ba\'c7\'a5, \'b7\'ce\'b0\'ed \'b6\'c7\'b4\'c2 \'bb\'f3\'c8\'a3\'bf\'a1 \'b4\'eb\'c7\'d1 \'be\'ee\'b6\'b0\'c7\'d1 \'b1\'c7\'b8\'ae\'b5\'b5 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'ba\'ce\'bf\'a9\'b5\'c7\'c1\'f6 \'be\'ca\'bd\'c0\'b4\'cf\'b4\'d9. \'b0\'b3\'b9\'df\'c0\'da(developer) \'b9\'d7/\'b6\'c7\'b4\'c2 \'b9\'df\'c7\'e0\'c0\'da(publisher) \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'bf\'a1 \'b4\'eb\'c7\'d1 \'c3\'df\'b0\'a1 \'c1\'a6\'c7\'d1\'bb\'e7\'c7\'d7\'c0\'ba \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\'bf\'a1 \'b1\'d4\'c1\'a4\'b5\'c7\'be\'ee \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 4.\tab\'c1\'a6\'c7\'d1\'c0\'fb \'c7\'b0\'c1\'fa\'ba\'b8\'c1\'f5.\b0 'Sun'\'c0\'ba \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b0\'a1 \'c1\'a6\'b0\'f8 \'b8\'c5\'c3\'bc(media)\'bf\'a1 \'c0\'c7\'c7\'cf\'bf\'a9 \'c1\'a6\'b0\'f8\'b5\'c8 \'b0\'e6\'bf\'ec \'b1\'d7 \'b8\'c5\'c3\'bc\'b4\'c2 \'bf\'b5\'bc\'f6\'c1\'f5\'c0\'b8\'b7\'ce \'c1\'f5\'b8\'ed\'b5\'c7\'b4\'c2 \'b1\'b8\'b8\'c5\'c0\'cf\'b7\'ce\'ba\'ce\'c5\'cd 90\'c0\'cf \'b5\'bf\'be\'c8 \'c1\'a4\'bb\'f3\'c0\'fb\'c0\'ce \'bb\'e7\'bf\'eb\'c1\'b6\'b0\'c7 \'c7\'cf\'bf\'a1\'bc\'ad\'b4\'c2 \'c0\'e7\'b7\'e1 \'b9\'d7\'c1\'a6\'c1\'b6\'b1\'e2\'bc\'fa\'bf\'a1 \'b0\'fc\'c7\'d1\'b0\'e1\'c7\'d4\'c0\'cc \'be\'f8\'c0\'bb \'b0\'cd\'c0\'d3\'c0\'bb \'ba\'b8\'c1\'f5\'c7\'d5\'b4\'cf\'b4\'d9. \'c0\'fc\'bc\'fa\'c7\'d1 \'ba\'b8\'c1\'f5\'c0\'bb \'c1\'a6\'bf\'dc\'c7\'cf\'b0\'ed\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b4\'c2 "\'c0\'d6\'b4\'c2 \'b1\'d7\'b4\'eb\'b7\'ce" \'c1\'a6\'b0\'f8\'b5\'cb\'b4\'cf\'b4\'d9. \'c0\'cc\'bf\'cd \'b0\'b0\'c0\'ba \'c1\'a6\'c7\'d1\'c0\'fb\'c0\'ce \'ba\'b8\'c1\'f5 \'c7\'cf\'bf\'a1\'bc\'ad\'c0\'c7 \'b1\'cd\'c7\'cf\'c0\'c7 \'c0\'af\'c0\'cf\'c7\'d1 \'b1\'b8\'c1\'a6\'bc\'f6\'b4\'dc \'b9\'d7 'Sun'\'c0\'c7 \'b8\'f0\'b5\'e7 \'c3\'a5\'c0\'d3\'c0\'ba 'Sun'\'c0\'c7 \'bc\'b1\'c5\'c3\'bf\'a1 \'b5\'fb\'b6\'f3 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'b8\'c5\'c3\'bc\'b8\'a6 \'b1\'b3\'c8\'af\'c7\'cf\'bf\'a9 \'b5\'e5\'b8\'ae\'b0\'c5\'b3\'aa \'b6\'c7\'b4\'c2 \'b1\'cd\'c7\'cf\'b0\'a1 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'b1\'b8\'b8\'c5\'c7\'d2 \'b6\'a7 \'c1\'f6\'b1\'de\'c7\'d1 \'b1\'dd\'be\'d7\'c0\'bb \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c8\'af\'ba\'d2\'c7\'cf\'bf\'a9 \'b5\'e5\'b8\'ae\'b4\'c2 \'b0\'cd\'bf\'a1 \'b1\'b9\'c7\'d1\'b5\'cb\'b4\'cf\'b4\'d9. \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'b4\'eb\'c7\'d1 \'b8\'f0\'b5\'e7 \'b9\'ac\'bd\'c3\'c0\'fb \'ba\'b8\'c1\'f5\'c0\'ba90\'c0\'cf\'b7\'ce \'c7\'d1\'c1\'a4\'b5\'cb\'b4\'cf\'b4\'d9. \'b9\'ac\'bd\'c3\'c0\'fb \'ba\'b8\'c1\'f5\'c0\'c7 \'c1\'f6\'bc\'d3\'b1\'e2\'b0\'a3\'bf\'a1 \'b4\'eb\'c7\'d1 \'c1\'a6\'c7\'d1\'c0\'bb \'c7\'e3\'bf\'eb\'c7\'cf\'c1\'f6 \'be\'ca\'b4\'c2 \'b1\'b9\'b0\'a1\'b5\'e9\'c0\'cc \'c0\'d6\'c0\'b8\'b9\'c7\'b7\'ce, \'c0\'a7\'c0\'c7 \'bb\'e7\'c7\'d7\'c0\'ba \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c0\'fb\'bf\'eb\'b5\'c7\'c1\'f6 \'be\'ca\'c0\'bb \'bc\'f6\'b5\'b5 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. \'c0\'cc\'bf\'cd \'b0\'b0\'c0\'ba \'c1\'a6\'c7\'d1\'b5\'c8 \'ba\'b8\'c1\'f5\'c0\'ba \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c6\'af\'c1\'a4\'c0\'c7 \'b9\'fd\'c0\'fb \'b1\'c7\'b8\'ae\'b8\'a6 \'ba\'ce\'bf\'a9\'c7\'d5\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'b0\'a1 \'bc\'d3\'c7\'d1 \'b1\'b9\'b0\'a1\'c0\'c7 \'b9\'fd\'b7\'fc\'bf\'a1 \'b5\'fb\'b6\'f3 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'b1\'e2\'c5\'b8 \'b4\'d9\'b8\'a5 \'b1\'c7\'b8\'ae\'b0\'a1 \'c0\'d6\'c0\'bb \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 5.\tab\'c7\'b0\'c1\'fa\'ba\'b8\'c1\'f5\'c0\'c7 \'ba\'ce\'c0\'ce.\b0 'Sun'\'c0\'ba \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b8\'ed\'bd\'c3\'b5\'c8 \'b9\'d9\'b8\'a6 \'c1\'a6\'bf\'dc\'c7\'cf\'b0\'ed\'b4\'c2, \'bb\'f3\'c7\'b0\'bc\'ba\'c0\'cc\'b3\'aa \'c6\'af\'c1\'a4 \'b8\'f1\'c0\'fb\'bf\'a1 \'b4\'eb\'c7\'d1 \'c0\'fb\'c7\'d5\'bc\'ba, \'b1\'c7\'b8\'ae\'c4\'a7\'c7\'d8\'c0\'c7 \'ba\'ce\'c1\'b8\'c0\'e7 \'b5\'ee\'b0\'fa \'b0\'b0\'c0\'ba \'b9\'ac\'bd\'c3\'c0\'fb \'ba\'b8\'c1\'f5 \'b5\'ee \'b8\'f0\'b5\'e7 \'b8\'ed\'bd\'c3\'c0\'fb \'b6\'c7\'b4\'c2 \'b9\'ac\'bd\'c3\'c0\'fb \'c1\'b6\'b0\'c7, \'c1\'f8\'bc\'fa \'b9\'d7 \'ba\'b8\'c1\'f5\'c0\'bb \'ba\'ce\'c0\'ce\'c7\'d5\'b4\'cf\'b4\'d9. \'b4\'dc, \'c0\'cc\'bf\'cd \'b0\'b0\'c0\'ba \'c7\'b0\'c1\'fa \'ba\'b8\'c1\'f5\'c0\'c7 \'ba\'ce\'c0\'ce\'c0\'ba \'b9\'fd\'c0\'fb\'c0\'b8\'b7\'ce \'c0\'af\'c8\'bf\'c7\'cf\'b4\'d9\'b0\'ed \'c0\'ce\'c1\'a4\'b5\'c8\'b4\'c2 \'b9\'fc\'c0\'a7 \'b3\'bb\'bf\'a1\'bc\'ad\'b8\'b8 \'c0\'fb\'bf\'eb\'b5\'cb\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 6.\tab\'c3\'a5\'c0\'d3\'c0\'c7 \'c1\'a6\'c7\'d1.\b0 'Sun' \'b6\'c7\'b4\'c2 \'b1\'d7\'bf\'a1 \'b4\'eb\'c7\'d1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'c1\'a6\'b0\'f8\'c0\'da(licensor)\'b4\'c2 \'b9\'fd\'c0\'cc \'c7\'e3\'bf\'eb\'c7\'cf\'b4\'c2 \'c7\'d1\'b5\'b5 \'b3\'bb\'bf\'a1\'bc\'ad\'b4\'c2, \'be\'ee\'b6\'b0\'c7\'d1 \'b0\'e6\'bf\'ec\'bf\'a1\'b5\'b5, \'bc\'b3\'bb\'e7 'Sun'\'c0\'cc \'b1\'d7\'b7\'af\'c7\'d1 \'bc\'d5\'c7\'d8\'c0\'c7 \'b9\'df\'bb\'fd \'b0\'a1\'b4\'c9\'bc\'ba\'c0\'bb \'bb\'e7\'c0\'fc\'bf\'a1 \'b0\'ed\'c1\'f6 \'b9\'de\'be\'d2\'b4\'d9\'b0\'ed \'c7\'d2\'c1\'f6\'b6\'f3\'b5\'b5, '\'b9\'fd\'c0\'fb \'c3\'a5\'c0\'d3'\'bf\'a1 \'b0\'fc\'c7\'d1 \'bf\'a9\'c7\'cf\'c7\'d1 \'c0\'cc\'b7\'d0\'bf\'a1 \'bb\'f3\'b0\'fc\'be\'f8\'c0\'cc, \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'bb\'e7\'bf\'eb \'b6\'c7\'b4\'c2 \'bb\'e7\'bf\'eb \'ba\'d2\'b0\'a1\'b4\'c9\'c0\'b8\'b7\'ce\'ba\'ce\'c5\'cd \'ba\'f1\'b7\'d4\'b5\'c7\'b0\'c5\'b3\'aa \'b0\'fc\'b7\'c3\'b5\'c7\'be\'ee \'b9\'df\'bb\'fd\'c7\'cf\'b4\'c2 \'bc\'f6\'c0\'cd, \'c0\'cc\'c0\'cd \'b6\'c7\'b4\'c2 \'b5\'a5\'c0\'cc\'c5\'cd\'c0\'c7 \'bc\'d5\'bd\'c7, \'b6\'c7\'b4\'c2 \'c6\'af\'ba\'b0\'bc\'d5\'c7\'d8, \'b0\'a3\'c1\'a2\'bc\'d5\'c7\'d8, \'b0\'e1\'b0\'fa\'c0\'fb \'bc\'d5\'c7\'d8, \'ba\'ce\'bc\'f6\'c0\'fb \'bc\'d5\'c7\'d8, \'b6\'c7\'b4\'c2 \'c2\'a1\'b9\'fa\'c0\'fb \'bc\'d5\'c7\'d8\'bf\'a1 \'b0\'fc\'c7\'d1 \'b9\'e8\'bb\'f3\'c3\'a5\'c0\'d3\'c0\'bb \'c1\'f6\'c1\'f6 \'be\'ca\'bd\'c0\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'bf\'a1 \'b4\'eb\'c7\'d1 'Sun'\'c0\'c7 \'c3\'a5\'c0\'d3\'c0\'ba \'b0\'e8\'be\'e0\'c0\'cc\'b3\'aa \'ba\'d2\'b9\'fd\'c7\'e0\'c0\'a7(\'b0\'fa\'bd\'c7 \'c6\'f7\'c7\'d4) \'b5\'ee \'b1\'e2\'c5\'b8 \'be\'ee\'b6\'b0\'c7\'d1 \'b0\'cd\'bf\'a1 \'b1\'d9\'b0\'c5\'c7\'d1 \'b0\'cd\'c0\'ce\'c1\'f6\'bf\'a1 \'b0\'fc\'b0\'e8 \'be\'f8\'c0\'cc, \'be\'ee\'b6\'b0\'c7\'d1 \'b0\'e6\'bf\'ec\'b6\'f3\'b5\'b5 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b5\'fb\'b6\'f3 \'b1\'cd\'c7\'cf\'b0\'a1 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'b4\'eb\'c7\'d8 \'c1\'f6\'ba\'d2\'c7\'d1 \'b1\'dd\'be\'d7\'c0\'bb \'c3\'ca\'b0\'fa\'c7\'d2 \'bc\'f6\'b4\'c2 \'be\'f8\'bd\'c0\'b4\'cf\'b4\'d9. \'c0\'cc\'bf\'cd \'b0\'b0\'c0\'ba \'c3\'a5\'c0\'d3\'c0\'c7 \'c1\'a6\'c7\'d1\'c0\'ba \'be\'d5\'bf\'a1\'bc\'ad \'b1\'d4\'c1\'a4\'c7\'d1 \'ba\'b8\'c1\'f5\'c0\'cc \'b1\'d7 \'ba\'bb\'c1\'fa\'c0\'fb\'c0\'ce \'b8\'f1\'c0\'fb\'c0\'bb \'b4\'de\'bc\'ba\'c7\'cf\'c1\'f6 \'b8\'f8\'c7\'cf\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b5\'b5 \'c0\'fb\'bf\'eb\'b5\'cb\'b4\'cf\'b4\'d9. \'ba\'ce\'bc\'f6\'c0\'fb \'b6\'c7\'b4\'c2 \'b0\'e1\'b0\'fa\'c0\'fb \'bc\'d5\'c7\'d8\'c0\'c7 \'b9\'e8\'c1\'a6\'b8\'a6 \'c7\'e3\'bf\'eb\'c7\'cf\'c1\'f6 \'be\'ca\'b4\'c2 \'b1\'b9\'b0\'a1\'b5\'e9\'c0\'cc \'c0\'d6\'c0\'b8\'b9\'c7\'b7\'ce \'c0\'a7 \'b3\'bb\'bf\'eb \'c1\'df \'c0\'cf\'ba\'ce\'b4\'c2 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c0\'fb\'bf\'eb\'b5\'c7\'c1\'f6 \'be\'ca\'c0\'bb \'bc\'f6\'b5\'b5 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 7.\tab\'b0\'e8\'be\'e0\'c0\'c7 \'c7\'d8\'c1\'f6.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'ba \'c7\'d8\'c1\'f6\'b5\'c9 \'b6\'a7\'b1\'ee\'c1\'f6 \'c0\'af\'c8\'bf\'c7\'d5\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'b4\'c2 \'be\'f0\'c1\'a6\'b6\'f3\'b5\'b5 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'b8\'f0\'b5\'e7 \'bb\'e7\'ba\'bb(copy)\'c0\'bb \'c6\'f3\'b1\'e2\'c7\'d4\'c0\'b8\'b7\'ce\'bd\'e1 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'bb \'c7\'d8\'c1\'f6\'c7\'d2 \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'b0\'a1 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'be\'ee\'b4\'c0 \'c7\'d1 \'b1\'d4\'c1\'a4\'c0\'cc\'b6\'f3\'b5\'b5 \'c1\'d8\'bc\'f6\'c7\'cf\'c1\'f6 \'be\'ca\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b4\'c2, 'Sun'\'c0\'c7 \'c5\'eb\'c1\'f6\'b0\'a1 \'be\'f8\'b4\'f5\'b6\'f3\'b5\'b5 \'c1\'ef\'bd\'c3 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'ba \'c7\'d8\'c1\'f6\'b5\'cb\'b4\'cf\'b4\'d9. \cf1\'b0\'a2 \'b4\'e7\'bb\'e7\'c0\'da\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b0\'a1 \'c1\'f6\'c0\'fb\'c0\'e7\'bb\'ea\'b1\'c7 \cf0\'c4\'a7\'c7\'d8\'c0\'c7 \'c5\'ac\'b7\'b9\'c0\'d3 \'b4\'eb\'bb\'f3\'c0\'cc \'b5\'c7\'b0\'c5\'b3\'aa \'b5\'c9 \'b0\'a1\'b4\'c9\'bc\'ba\'c0\'cc \'c0\'d6\'b4\'d9\'b0\'ed \'c6\'c7\'b4\'dc\'c7\'cf\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b4\'c2 \'c1\'ef\'bd\'c3 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'bb \'c7\'d8\'c1\'f6\'c7\'d2 \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'cc \'c7\'d8\'c1\'f6\'b5\'c7\'b4\'c2 \'b0\'e6\'bf\'ec, \'b1\'cd\'c7\'cf\'b4\'c2 \'c1\'ef\'bd\'c3 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'b8\'f0\'b5\'e7 \'bb\'e7\'ba\'bb(copy)\'c0\'bb \'c6\'f3\'b1\'e2\'c7\'d8\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 8.\tab\'bc\'f6\'c3\'e2 \'b1\'d4\'c1\'a6.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b5\'fb\'b6\'f3 \'c1\'a6\'b0\'f8\'b5\'c7\'b4\'c2 \'b8\'f0\'b5\'e7 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote \'b9\'d7 \'b1\'e2\'bc\'fa \'b5\'a5\'c0\'cc\'c5\'cd\'b4\'c2 \'b9\'cc\'b1\'b9\'c0\'c7 \'bc\'f6\'c3\'e2\'c5\'eb\'c1\'a6 \'b0\'fc\'b7\'c3 \'b9\'fd\'b1\'d4(US export control laws)\'c0\'c7 \'c0\'fb\'bf\'eb\'c0\'bb \'b9\'de\'c0\'b8\'b8\'e7, \'b1\'e2\'c5\'b8 \'b4\'d9\'b8\'a5 \'b1\'b9\'b0\'a1\'b7\'ce\'ba\'ce\'c5\'cd \'bc\'f6\'c3\'e2 \'b6\'c7\'b4\'c2 \'bc\'f6\'c0\'d4\'c0\'c7 \'b1\'d4\'c1\'a6\'b8\'a6 \'b9\'de\'c0\'bb \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'b4\'c2 \'c0\'cc\'b7\'af\'c7\'d1 \'b8\'f0\'b5\'e7 \'c7\'d8\'b4\'e7 \'b9\'fd\'b1\'d4\'b8\'a6 \'be\'f6\'b0\'dd\'c8\'f7 \'c1\'d8\'bc\'f6\'c7\'d2 \'b0\'cd\'bf\'a1 \'b5\'bf\'c0\'c7\'c7\'cf\'b8\'e7, \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'c0\'ce\'b5\'b5\'b5\'c8 \'c0\'cc\'c8\'c4 \'bc\'f6\'c3\'e2, \'c0\'e7\'bc\'f6\'c3\'e2 \'b6\'c7\'b4\'c2 \'bc\'f6\'c0\'d4\'c0\'bb \'c0\'a7\'c7\'cf\'bf\'a9 \'c7\'ca\'bf\'e4\'c7\'d1 \'c7\'e3\'b0\'a1\'c0\'c7 \'c3\'eb\'b5\'e6\'c0\'ba \'b1\'cd\'c7\'cf\'c0\'c7 \'c3\'a5\'c0\'d3\'c0\'d3\'c0\'bb \'c0\'ce\'c1\'a4\'c7\'d5\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\cf1\lang1042\b\f0 9.\tab\'bb\'f3\'c7\'a5 \'b9\'d7 \'b7\'ce\'b0\'ed.\b0 \'b1\'cd\'c7\'cf\'b4\'c2 \'b1\'cd\'c7\'cf\'bf\'cd 'Sun' \'bb\'e7\'c0\'cc\'bf\'a1\'bc\'ad, "SUN," "SOLARIS," "JAVA," "JINI," "FORTE" \'b9\'d7 "iPLANET"\'c0\'c7 \'bb\'f3\'c7\'a5\'bf\'cd "SUN," "SOLARIS," "JAVA," "JINI," "FORTE" \'b9\'d7 "iPLANET"\'b0\'fa \'b0\'fc\'b7\'c3\'b5\'c8 \'b8\'f0\'b5\'e7 \'bb\'f3\'c7\'a5, \'bc\'ad\'ba\'f1\'bd\'ba\'c7\'a5, \'b7\'ce\'b0\'ed \'b9\'d7 \'b1\'e2\'c5\'b8 \'ba\'ea\'b7\'a3\'b5\'e5 \'c7\'a5\'bd\'c3(\'c0\'cc\'c7\'cf "Sun \'c7\'a5\'bd\'c3")\'b0\'a1 'Sun'\'c0\'c7 \'bc\'d2\'c0\'af\'c0\'d3\'c0\'bb \'c0\'ce\'c1\'a4\'c7\'cf\'b0\'ed \'c0\'cc\'bf\'a1 \'b5\'bf\'c0\'c7\'c7\'cf\'b8\'e7, \'c7\'f6\'c0\'e7 http://www.sun.com/policies/trademarks\'bf\'a1 \'b0\'d4\'c0\'e7\'b5\'c7\'be\'ee \'c0\'d6\'b4\'c2 Sun \'bb\'f3\'c7\'a5 \'b9\'d7 \'b7\'ce\'b0\'ed \'bb\'e7\'bf\'eb \'bf\'e4\'b0\'c7\'c0\'bb \'c1\'d8\'bc\'f6\'c7\'d2 \'b0\'cd\'bf\'a1 \'b5\'bf\'c0\'c7\'c7\'d5\'b4\'cf\'b4\'d9. \'b1\'cd\'c7\'cf\'c0\'c7 \ldblquote Sun \'c7\'a5\'bd\'c3\rdblquote\'c0\'c7 \'bb\'e7\'bf\'eb\'c0\'ba 'Sun'\'c0\'c7 \'c0\'cc\'c0\'cd\'c0\'b8\'b7\'ce \'b1\'cd\'bc\'d3\'b5\'cb\'b4\'cf\'b4\'d9. \par
\pard\qj\cf0 \par
\pard\fi-360\li720\qj\tx720\b 10.\tab\'b9\'cc\'b1\'b9 \'c1\'a4\'ba\'ce\'c0\'c7 \'c1\'a6\'c7\'d1\'b5\'c8 \'b1\'c7\'b8\'ae.\b0 \'b9\'cc\'b1\'b9 \'c1\'a4\'ba\'ce \'b6\'c7\'b4\'c2 \'b9\'cc\'b1\'b9 \'c1\'a4\'ba\'ce\'c0\'c7 \'c1\'d6 \'b0\'e8\'be\'e0\'c0\'da\'b3\'aa \'b1\'d7 \'c7\'cf\'b5\'b5\'b1\'de\'be\'f7\'c3\'bc(\'c7\'cf\'b5\'b5\'b1\'de\'c0\'c7 \'b4\'dc\'b0\'e8\'b4\'c2 \'ba\'d2\'b9\'ae\'c7\'d4)\'b0\'a1 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'b1\'b8\'c0\'d4\'c7\'d1 \'b0\'e6\'bf\'ec\'bf\'a1\'b5\'b5, \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote \'b9\'d7 \'b5\'bf\'ba\'c0\'b5\'c8 \'b9\'ae\'bc\'ad\'bf\'a1 \'b4\'eb\'c7\'d1 \'c1\'a4\'ba\'ce\'c0\'c7 \'b1\'c7\'b8\'ae\'b4\'c2 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'b1\'d4\'c1\'a4\'b5\'c7\'be\'ee \'c0\'d6\'b4\'c2 \'c1\'b6\'b0\'c7 \'b9\'d7 \'b1\'d4\'c1\'a4\'bf\'a1 \'b1\'b9\'c7\'d1\'b5\'cb\'b4\'cf\'b4\'d9. \'c0\'cc\'b4\'c2 48 C.F.R.227.7201\'b3\'bb\'c1\'f6 227.7202-4\'c0\'c7 \'b1\'d4\'c1\'a4(\'b9\'cc\'b1\'b9 \'b1\'b9\'b9\'e6\'bc\'ba(DOD) \'c3\'eb\'b5\'e6\'bf\'a1 \'b0\'fc\'c7\'d1 \'b1\'d4\'c1\'a4)\'b0\'fa 48 C.F.R.2.101 \'b9\'d7 12.212 \'b1\'d4\'c1\'a4(\'b9\'cc\'b1\'b9 \'b1\'b9\'b9\'e6\'bc\'ba(DOD) \'c0\'cc\'bf\'dc\'c0\'c7 \'c3\'eb\'b5\'e6\'bf\'a1 \'b0\'fc\'c7\'d1 \'b1\'d4\'c1\'a4)\'bf\'a1 \'c0\'c7\'c7\'d1 \'b0\'cd\'c0\'d4\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 11.\tab\'c1\'d8\'b0\'c5\'b9\'fd.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'b0\'fa \'b0\'fc\'b7\'c3\'b5\'c8 \'b8\'f0\'b5\'e7 \'bc\'d2\'bc\'db\'c0\'ba \'c4\'b6\'b8\'ae\'c6\'f7\'b4\'cf\'be\'c6\'c1\'d6 \'b9\'fd\'b7\'fc\'b0\'fa \'b9\'cc \'bf\'ac\'b9\'e6 \'b9\'fd\'b7\'fc\'c0\'c7 \'c0\'fb\'bf\'eb\'c0\'bb \'b9\'de\'bd\'c0\'b4\'cf\'b4\'d9. \'b4\'d9\'b8\'a5 \'be\'ee\'b6\'b2 \'b1\'b9\'b0\'a1 \'b6\'c7\'b4\'c2 \'c1\'d6\'c0\'c7 \'bc\'b7\'bf\'dc\'bb\'e7\'b9\'fd \'b1\'d4\'c1\'a4\'b5\'b5 \'c0\'fb\'bf\'eb\'b5\'c7\'c1\'f6 \'be\'ca\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 12.\tab\'b0\'a2 \'c1\'b6\'c7\'d7\'c0\'c7 \'b5\'b6\'b8\'b3\'bc\'ba.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'be\'ee\'b6\'b2 \'c1\'b6\'c7\'d7\'c0\'cc \'b0\'ad\'c7\'e0\'b5\'c9 \'bc\'f6 \'be\'f8\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b5\'b5, \'b4\'e7\'c7\'d8 \'c1\'b6\'c7\'d7\'c0\'bb \'c1\'a6\'bf\'dc\'c7\'d1 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'b3\'aa\'b8\'d3\'c1\'f6 \'c1\'b6\'c7\'d7\'c0\'ba \'b1\'d7\'b4\'eb\'b7\'ce \'c0\'af\'c8\'bf\'c7\'d5\'b4\'cf\'b4\'d9. \'b4\'dc, \'b4\'e7\'c7\'d8 \'c1\'b6\'c7\'d7\'c0\'c7 \'c1\'a6\'bf\'dc\'b7\'ce \'c0\'ce\'c7\'d8 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'b8\'f1\'c0\'fb\'c0\'bb \'b4\'de\'bc\'ba\'c7\'cf\'c1\'f6 \'b8\'f8\'c7\'cf\'b0\'d4 \'b5\'c7\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b4\'c2 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'cc \'c1\'ef\'bd\'c3 \'c7\'d8\'c1\'f6\'b5\'cb\'b4\'cf\'b4\'d9.\lang5130\f1\par
\pard\qj\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 13.\tab\'c3\'d6\'c1\'be\'c7\'d5\'c0\'c7.\b0 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'ba \'b1\'cd\'c7\'cf\'bf\'cd 'Sun' \'bb\'e7\'c0\'cc\'c0\'c7 \'b1\'d7 \'b0\'e8\'be\'e0 \'bb\'e7\'c7\'d7\'bf\'a1 \'b0\'fc\'c7\'d1 \'c3\'d6\'c1\'be \'c7\'d5\'c0\'c7\'c0\'d4\'b4\'cf\'b4\'d9. \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'ba \'be\'e7 \'b4\'e7\'bb\'e7\'c0\'da \'bb\'e7\'c0\'cc\'bf\'a1\'bc\'ad \'c7\'f6\'c0\'e7 \'c8\'a4\'c0\'ba \'b1\'d7 \'c0\'cc\'c0\'fc\'bf\'a1 \'b1\'b8\'b5\'ce \'b6\'c7\'b4\'c2 \'bc\'ad\'b8\'e9\'c0\'b8\'b7\'ce \'c0\'cc\'b7\'e7\'be\'ee\'c1\'f8 \'c0\'c7\'bb\'e7\'b1\'b3\'c8\'af, \'c1\'a6\'be\'c8, \'c1\'f8\'bc\'fa \'b9\'d7 \'ba\'b8\'c1\'f5\'bf\'a1 \'bf\'ec\'bc\'b1\'c7\'cf\'b8\'e7, \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote \'b1\'e2\'b0\'a3 \'c1\'df \'b1\'d7 \'b0\'e8\'be\'e0 \'bb\'e7\'c7\'d7\'bf\'a1 \'bb\'f3\'c3\'e6\'b5\'c7\'b4\'c2 \'b0\'df\'c0\'fb, \'c1\'d6\'b9\'ae, \'bd\'c2\'c0\'ce \'b6\'c7\'b4\'c2 \'b1\'e2\'c5\'b8 \'c0\'c7\'bb\'e7\'b1\'b3\'c8\'af, \'b6\'c7\'b4\'c2 \'c0\'cc\'b5\'e9\'bf\'a1 \'b4\'eb\'c7\'d1 \'c3\'df\'b0\'a1 \'c1\'b6\'b0\'c7\'bf\'a1 \'bf\'ec\'bc\'b1\'c7\'d5\'b4\'cf\'b4\'d9. \'be\'e7 \'b4\'e7\'bb\'e7\'c0\'da\'c0\'c7 \'b1\'c7\'c7\'d1 \'c0\'d6\'b4\'c2 \'b4\'eb\'c7\'a5\'c0\'da\'bf\'a1 \'c0\'c7\'c7\'d1 \'bc\'ad\'b8\'e9 \'c7\'d5\'c0\'c7\'bf\'cd \'bc\'ad\'b8\'ed\'c0\'cc \'be\'f8\'b4\'c2 \'c7\'d1 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'bc\'f6\'c1\'a4\'c0\'ba \'b9\'fd\'c0\'fb \'b1\'b8\'bc\'d3\'b7\'c2\'c0\'cc \'be\'f8\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\par
\pard\qc\lang1042\f0\'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\lang5130\f1\par
\pard\qj\par
\lang1042\f0\'ba\'bb \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\'c0\'ba \ldblquote\'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'c1\'b6\'c7\'d7\'bf\'a1 \'c3\'df\'b0\'a1\'b5\'c7\'b0\'c5\'b3\'aa \'c0\'cc\'b8\'a6 \'bc\'f6\'c1\'a4\'c7\'cf\'b4\'c2 \'b0\'cd\'c0\'d4\'b4\'cf\'b4\'d9. \'ba\'bb \ldblquote\'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\rdblquote\'bf\'a1\'bc\'ad \'c1\'a4\'c0\'c7\'b5\'c7\'c1\'f6 \'be\'ca\'c0\'ba \'bf\'eb\'be\'ee\'b4\'c2 \ldblquote\'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\rdblquote\'bf\'a1\'bc\'ad\'bf\'cd \'b1\'d7 \'c0\'c7\'b9\'cc\'b0\'a1 \'b5\'bf\'c0\'cf\'c7\'d5\'b4\'cf\'b4\'d9. \'ba\'bb \ldblquote\'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\rdblquote\'c0\'cc \ldblquote\'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\rdblquote\'c0\'cc\'b3\'aa \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'c6\'f7\'c7\'d4\'b5\'c8 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'c0\'c7 \'c1\'b6\'c7\'d7\'b0\'fa \'ba\'d2\'c0\'cf\'c4\'a1\'c7\'cf\'b0\'c5\'b3\'aa \'bb\'f3\'c8\'a3 \'c3\'e6\'b5\'b9\'c7\'cf\'b4\'c2 \'b0\'e6\'bf\'ec\'bf\'a1\'b4\'c2 \'ba\'bb \ldblquote\'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\rdblquote\'c0\'cc \'bf\'ec\'bc\'b1\'c7\'d5\'b4\'cf\'b4\'d9.\par
\par
\pard\fi-360\li720\qj\tx720\b A.\tab\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee \'b3\'bb\'ba\'ce \'bb\'e7\'bf\'eb \'b9\'d7 \'b0\'b3\'b9\'df \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'ba\'ce\'bf\'a9.\b0 \'ba\'bb \'b0\'e8\'be\'e0\'c0\'c7 \'b1\'e2\'b0\'a3 \'b9\'d7 \'c1\'b6\'b0\'c7, \'c1\'a6\'c7\'d1 \'b9\'d7 \'bf\'b9\'bf\'dc\'b4\'c2 \'c2\'fc\'c1\'b6\'b7\'ce \'bf\'a9\'b1\'e2\'bf\'a1 \'c5\'eb\'c7\'d5\'b5\'c8 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee "README" \'c6\'c4\'c0\'cf\'bf\'a1 \'b8\'ed\'bd\'c3\'b5\'c7\'be\'ee \'c0\'d6\'c0\'b8\'b8\'e7, \'c0\'cc\'b7\'af\'c7\'d1 \'c3\'df\'b0\'a1 \'bf\'eb\'be\'ee\'c0\'c7 Java Technology \'c1\'a6\'c7\'d1\'c0\'cc \'c0\'d6\'c0\'bb \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. Sun\'c0\'ba \'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5 \'bc\'b3\'b0\'e8, \'b0\'b3\'b9\'df \'b9\'d7 \'c5\'d7\'bd\'ba\'c6\'ae \'b8\'f1\'c0\'fb\'c0\'b8\'b7\'ce \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\'b8\'a6 \'bc\'f6\'c1\'a4\'c7\'cf\'c1\'f6 \'be\'ca\'b0\'ed \'b3\'bb\'ba\'ce\'bf\'a1\'bc\'ad \'bf\'cf\'ba\'ae\'c7\'cf\'b0\'d4 \'c0\'e7\'bb\'fd\'bb\'ea \'b9\'d7 \'bb\'e7\'bf\'eb\'c7\'d2 \'bc\'f6 \'c0\'d6\'b5\'b5\'b7\'cf \'ba\'f1\'b5\'b6\'c1\'a1\'c0\'fb\'c0\'cc\'b8\'e7 \'be\'e7\'b5\'b5 \'ba\'d2\'b0\'a1\'b4\'c9\'c7\'d1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b8\'a6 \'c1\'a6\'c7\'d1\'c0\'fb\'c0\'b8\'b7\'ce \'ba\'ce\'bf\'a9\'c7\'d5\'b4\'cf\'b4\'d9.\lang5130\f1\par
\pard\qj\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 B.\tab\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee \'b9\'e8\'c6\'f7 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba.\b0 'Sun'\'c0\'ba \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote \'c1\'b6\'b0\'c7 \'b9\'d7 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote README \'c6\'c4\'c0\'cf\'bf\'a1 \'bc\'b3\'b8\'ed\'b5\'c8 \'c1\'a6\'c7\'d1 \'b9\'d7 \'bf\'b9\'bf\'dc\'bb\'e7\'c7\'d7(\'ba\'bb \ldblquote\'ba\'b8\'c3\'e6 \'c1\'b6\'c7\'d7\rdblquote\'c0\'c7 Java \'b1\'e2\'bc\'fa \'b1\'d4\'c1\'a6\'bb\'e7\'c7\'d7\'c0\'bb \'c6\'f7\'c7\'d4\'c7\'cf\'b3\'aa \'c0\'cc\'bf\'a1 \'b1\'b9\'c7\'d1\'b5\'c7\'c1\'f6 \'be\'ca\'c0\'bd)\'bf\'a1 \'b5\'fb\'b6\'f3, \'bb\'e7\'bf\'eb\'b7\'e1 \'be\'f8\'c0\'cc \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'ba\'b9\'c1\'a6 \'b9\'d7 \'b9\'e8\'c6\'f7\'c7\'d2 \'bc\'f6 \'c0\'d6\'b4\'c2 \'ba\'f1\'b5\'b6\'c1\'a1\'c0\'fb\'c0\'cc\'b0\'ed \'be\'e7\'b5\'b5 \'ba\'d2\'b0\'a1\'b4\'c9\'c7\'d1 \'c1\'a6\'c7\'d1\'b5\'c8 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b8\'a6 \'b1\'cd\'c7\'cf\'bf\'a1\'b0\'d4 \'ba\'ce\'bf\'a9\'c7\'d5\'b4\'cf\'b4\'d9. \'b4\'dc, \'b4\'d9\'c0\'bd \'c1\'b6\'b0\'c7\'c0\'bb \'c1\'d8\'bc\'f6\'c7\'d8\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9. (i) \'b1\'cd\'c7\'cf\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'bc\'f6\'c1\'a4\'c0\'bb \'b0\'c5\'c4\'a1\'c1\'f6 \'be\'ca\'b0\'ed \'bf\'cf\'c1\'a6\'c7\'b0 \'b1\'d7\'b4\'eb\'b7\'ce, \'b1\'cd\'c7\'cf\'c0\'c7 \ldblquote\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5\rdblquote\'c0\'bb \'c0\'db\'b5\'bf\'bd\'c3\'c5\'b0\'b1\'e2 \'c0\'a7\'c7\'d1 \'b8\'f1\'c0\'fb\'b8\'b8\'c0\'bb \'c0\'a7\'c7\'d8 \ldblquote\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5\rdblquote\'c0\'c7 \'c0\'cf\'ba\'ce\'b7\'ce\'bc\'ad \'b9\'f8\'b5\'e9\'bf\'a1 \'c6\'f7\'c7\'d4\'c7\'d8\'bc\'ad\'b8\'b8 \'b9\'e8\'c6\'f7\'c7\'d8\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9. (ii)\lang5130\f1\~\lang1042\f0\ldblquote\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5\rdblquote\'c0\'ba \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'c1\'df\'bf\'e4\'c7\'cf\'b0\'ed \'b1\'d9\'ba\'bb\'c0\'fb\'c0\'ce \'b1\'e2\'b4\'c9\'bc\'ba\'c0\'bb \'c3\'df\'b0\'a1\'c7\'d8\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9. (iii)\lang5130\f1\~\lang1042\f0\ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'b1\'b8\'bc\'ba\'bf\'e4\'bc\'d2\'b8\'a6 \'b4\'eb\'c3\'bc\'c7\'cf\'b5\'b5\'b7\'cf \'c0\'c7\'b5\'b5\'b5\'c8 \'c3\'df\'b0\'a1 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\'b8\'a6 \'b9\'e8\'c6\'f7\'c7\'cf\'c1\'f6 \'be\'ca\'be\'c6\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9. (iv) \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'c6\'f7\'c7\'d4\'b5\'c8 \'c0\'e7\'bb\'ea\'b1\'c7\'c0\'bb \'b3\'aa\'c5\'b8\'b3\'bb\'b4\'c2 \'c7\'a5\'bd\'c3\'b3\'aa \'b9\'fc\'b7\'ca\'b8\'a6 \'c1\'a6\'b0\'c5\'c7\'cf\'b0\'c5\'b3\'aa \'ba\'af\'b0\'e6\'c7\'d8\'bc\'ad\'b4\'c2 \'be\'c8\'b5\'cb\'b4\'cf\'b4\'d9. (v) \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1 \'c6\'f7\'c7\'d4\'b5\'c8 \'c1\'b6\'b0\'c7\'bf\'a1 \'b5\'fb\'b6\'f3 'Sun'\'c0\'c7 \'c0\'cc\'c0\'cd\'c0\'bb \'ba\'b8\'c8\'a3\'c7\'cf\'b4\'c2 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\'bf\'a1 \'b1\'e2\'c3\'ca\'c7\'d8\'bc\'ad\'b8\'b8 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'b8\'a6 \'b9\'e8\'c6\'f7\'c7\'d8\'be\'df \'c7\'d5\'b4\'cf\'b4\'d9. (vi) \ldblquote\'c7\'c1\'b7\'ce\'b1\'d7\'b7\'a5\rdblquote \'b9\'d7/\'b6\'c7\'b4\'c2 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'bb\'e7\'bf\'eb \'b6\'c7\'b4\'c2 \'b9\'e8\'c6\'f7\'b8\'a6 \'bb\'e7\'c0\'af\'b7\'ce \'c1\'a63\'c0\'da\'b0\'a1 \'c1\'a6\'b1\'e2\'c7\'cf\'b4\'c2 \'c5\'ac\'b7\'b9\'c0\'d3\'c0\'cc\'b3\'aa \'bc\'d2\'bc\'db\'b0\'fa \'b0\'fc\'b7\'c3\'c7\'cf\'bf\'a9 \'b9\'df\'bb\'fd\'b5\'c7\'b4\'c2 \'b8\'f0\'b5\'e7 \'bc\'d5\'c7\'d8, \'ba\'f1\'bf\'eb, \'c3\'a4\'b9\'ab, \'c8\'ad\'c7\'d8\'b1\'dd \'b9\'d7/\'b6\'c7\'b4\'c2 \'b0\'e6\'ba\'f1(\'ba\'af\'c8\'a3\'bb\'e7 \'ba\'f1\'bf\'eb \'c6\'f7\'c7\'d4)\'bf\'a1 \'b4\'eb\'c7\'d8 'Sun' \'b9\'d7 'Sun'\'bf\'a1 \'b4\'eb\'c7\'d1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'c1\'a6\'b0\'f8\'c0\'da\'b8\'a6 \'ba\'b8\'c8\'a3\'c7\'cf\'b0\'ed \'b8\'e9\'c3\'a5\'bd\'c3\'c5\'b3 \'b0\'cd\'bf\'a1 \'b5\'bf\'c0\'c7\'c7\'d5\'b4\'cf\'b4\'d9. \par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 C.\tab Java \'b1\'e2\'bc\'fa \'b1\'d4\'c1\'a6\'bb\'e7\'c7\'d7.\b0 \'b1\'cd\'c7\'cf\'b4\'c2 \'be\'ee\'b6\'b2 \'b9\'e6\'bd\'c4\'c0\'b8\'b7\'ce\'b5\'e7 "java," "javax," "sun" \'b6\'c7\'b4\'c2 'Sun'\'c0\'cc \'c0\'d3\'c0\'c7\'c0\'c7 \'b8\'ed\'b8\'ed\'b1\'d4\'c4\'a2\'bf\'a1\'bc\'ad \'b8\'ed\'bd\'c3\'c7\'d1 \'b0\'cd\'b0\'fa \'c0\'af\'bb\'e7\'c7\'d1 \'c5\'ac\'b7\'a1\'bd\'ba, \'c0\'ce\'c5\'cd\'c6\'e4\'c0\'cc\'bd\'ba \'b6\'c7\'b4\'c2 \'c7\'cf\'c0\'a7 \'c6\'d0\'c5\'b0\'c1\'f6\'b8\'a6 \'c0\'db\'bc\'ba\'c7\'cf\'b0\'c5\'b3\'aa \'bc\'f6\'c1\'a4\'c7\'cf\'b0\'c5\'b3\'aa \'b6\'c7\'b4\'c2 \'c0\'cc\'b5\'e9\'c0\'c7 \'b5\'bf\'c0\'db\'c0\'bb \'ba\'af\'b0\'e6\'c7\'d8\'bc\'ad\'b4\'c2 \'be\'c8\'b5\'c7\'b8\'e7, \'b6\'c7\'c7\'d1 \'b1\'cd\'c7\'cf\'b0\'a1 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b8\'a6 \'ba\'ce\'bf\'a9\'c7\'d1 \'c0\'da(licensee)\'b7\'ce \'c7\'cf\'bf\'a9\'b1\'dd \'c0\'cc\'b5\'e9\'c0\'bb \'c0\'db\'bc\'ba\'c7\'cf\'b0\'c5\'b3\'aa \'bc\'f6\'c1\'a4\'c7\'cf\'b0\'c5\'b3\'aa \'b6\'c7\'b4\'c2 \'c0\'cc\'b5\'e9\'c0\'c7 \'b5\'bf\'c0\'db\'c0\'bb \'ba\'af\'b0\'e6\'c7\'d2 \'b1\'c7\'c7\'d1\'c0\'bb \'ba\'ce\'bf\'a9\'c7\'d8\'bc\'ad\'b5\'b5 \'be\'c8\'b5\'cb\'b4\'cf\'b4\'d9. \par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 D.\tab\'bc\'d2\'bd\'ba \'c4\'da\'b5\'e5.\b0 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1\'b4\'c2 \'b8\'ed\'bd\'c3\'c0\'fb\'c0\'b8\'b7\'ce \'b1\'e2\'c5\'b8 \'b8\'f1\'c0\'fb\'c0\'bb \'c0\'a7\'c7\'d8 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'b0\'a1 \'ba\'ce\'bf\'a9\'b5\'c7\'c1\'f6 \'be\'ca\'b4\'c2 \'c7\'d1 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'b1\'d4\'c1\'a4\'bf\'a1 \'b5\'fb\'b6\'f3 \'b4\'dc\'c1\'f6 \'c2\'fc\'c1\'b6\'bf\'eb(reference)\'c0\'b8\'b7\'ce\'b8\'b8 \'c1\'a6\'b0\'f8\'b5\'c7\'b4\'c2 \'bc\'d2\'bd\'ba \'c4\'da\'b5\'e5(Source Code)\'b0\'a1 \'c6\'f7\'c7\'d4\'b5\'c9 \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. \'bc\'d2\'bd\'ba \'c4\'da\'b5\'e5\'b4\'c2 \ldblquote\'ba\'bb \'b0\'e8\'be\'e0\rdblquote\'bf\'a1\'bc\'ad \'b8\'ed\'bd\'c3\'c0\'fb\'c0\'b8\'b7\'ce \'b1\'d4\'c1\'a4\'b5\'c7\'c1\'f6 \'be\'ca\'b4\'c2 \'c7\'d1 \'c0\'e7\'b9\'e8\'c6\'f7\'b5\'c9 \'bc\'f6 \'be\'f8\'bd\'c0\'b4\'cf\'b4\'d9. \par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 E.\tab\'c1\'a63\'c0\'da \'c4\'da\'b5\'e5.\b0 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'c0\'c7 \'c0\'cf\'ba\'ce\'bf\'a1 \'c0\'fb\'bf\'eb\'b5\'c7\'b4\'c2 \'c3\'df\'b0\'a1 \'c0\'fa\'c0\'db\'b1\'c7 \'c5\'eb\'c1\'f6 \'b9\'d7 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'c1\'b6\'c7\'d7\'c0\'ba THIRDPARTYLICENSEREADME.txt \'c6\'c4\'c0\'cf\'bf\'a1 \'b1\'e2\'c0\'e7\'b5\'c7\'be\'ee \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9. THIRDPARTYLICENSEREADME.txt \'c6\'c4\'c0\'cf\'bf\'a1 \'c6\'f7\'c7\'d4\'b5\'c8 \'c1\'a63\'c0\'da \'bf\'c0\'c7\'c2 \'bc\'d2\'bd\'ba/\'c7\'c1\'b8\'ae\'bf\'fe\'be\'ee \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba\'c0\'c7 \'c1\'b6\'b0\'c7 \'b9\'d7 \'c1\'b6\'c7\'d7 \'c0\'cc\'bf\'dc\'bf\'a1\'b5\'b5, \ldblquote\'c0\'cc\'c1\'f8 \'c4\'da\'b5\'e5 \'b6\'f3\'c0\'cc\'bc\'be\'bd\'ba \'b0\'e8\'be\'e0\rdblquote\'c0\'c7 \'c1\'a65\'c0\'fd \'b9\'d7 \'c1\'a66\'c0\'fd\'c0\'c7 \'c7\'b0\'c1\'fa\'ba\'b8\'c1\'f5\'c0\'c7 \'ba\'ce\'c0\'ce \'b9\'d7 \'c3\'a5\'c0\'d3\'c0\'c7 \'c1\'a6\'c7\'d1\'bf\'a1 \'b0\'fc\'c7\'d1 \'b1\'d4\'c1\'a4\'c0\'cc \'ba\'bb \'b9\'e8\'c6\'f7\'c0\'c7 \'b8\'f0\'b5\'e7 \ldblquote\'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\rdblquote\'bf\'a1 \'c0\'fb\'bf\'eb\'b5\'cb\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 F.\tab\'c0\'a7\'b9\'dd\'bf\'a1 \'b4\'eb\'c7\'d1 \'c1\'be\'b7\'e1.\b0 \'b4\'e7\'bb\'e7\'c0\'da\'b0\'a1 \'ba\'bb \'b0\'e8\'be\'e0\'c0\'bb \'c1\'be\'b7\'e1\'c7\'cf\'b4\'c2 \'c1\'ef\'bd\'c3 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee \'b6\'c7\'b4\'c2 \'b4\'e7\'bb\'e7\'c0\'da\'c0\'c7 \'c0\'c7\'b0\'df\'c0\'cc \'b8\'f0\'b5\'e7 \'c1\'f6\'c0\'fb \'c0\'e7\'bb\'ea\'b1\'c7\'c0\'c7 \'c0\'a7\'b9\'dd \'c3\'bb\'b1\'b8 \'b4\'eb\'bb\'f3\'c0\'cc \'b5\'c9 \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj\lang5130\f1\par
\pard\fi-360\li720\qj\tx720\lang1042\b\f0 G.\tab\'bc\'b3\'c4\'a1 \'b9\'d7 \'c0\'da\'b5\'bf \'be\'f7\'b5\'a5\'c0\'cc\'c6\'ae.\b0 \'c7\'d8\'b4\'e7 \'bc\'d2\'c7\'c1\'c6\'ae\'bf\'fe\'be\'ee\'c0\'c7 \'bc\'b3\'c4\'a1 \'b9\'d7 \'c0\'da\'b5\'bf \'be\'f7\'b5\'a5\'c0\'cc\'c6\'ae \'b0\'fa\'c1\'a4\'c0\'ba Sun\'c0\'cc \'c6\'c4\'be\'c7 \'b9\'d7 \'c3\'d6\'c0\'fb\'c8\'ad\'c7\'d2 \'bc\'f6 \'c0\'d6\'b5\'b5\'b7\'cf \'c7\'d8\'c1\'d6\'b4\'c2 \'c0\'cc\'b7\'af\'c7\'d1 \'c6\'af\'c1\'a4 \'b0\'fa\'c1\'a4\'bf\'a1 \'b4\'eb\'c7\'d8 Sun (\'b6\'c7\'b4\'c2 \'bc\'ad\'ba\'f1\'bd\'ba \'b0\'f8\'b1\'de\'be\'f7\'c3\'bc) \'bf\'a1 \'c1\'a6\'c7\'d1\'b5\'c8 \'b5\'a5\'c0\'cc\'c5\'cd \'be\'e7\'c0\'bb \'bc\'db\'bd\'c5\'c7\'d5\'b4\'cf\'b4\'d9. Sun\'c0\'ba \'b5\'a5\'c0\'cc\'c5\'cd\'bf\'cd \'b0\'b3\'c0\'ce \'c1\'a4\'ba\'b8\'b8\'a6 \'bf\'ac\'b0\'fc\'bd\'c3\'c5\'b0\'c1\'f6 \'be\'ca\'bd\'c0\'b4\'cf\'b4\'d9. Sun\'c0\'cc \'bc\'f6\'c1\'fd\'c7\'cf\'b4\'c2 \'b5\'a5\'c0\'cc\'c5\'cd\'bf\'a1 \'b4\'eb\'c7\'d1 \'c0\'da\'bc\'bc\'c7\'d1 \'b3\'bb\'bf\'eb\'c0\'ba http://java.com/data/\'bf\'a1\'bc\'ad \'c3\'a3\'c0\'bb \'bc\'f6 \'c0\'d6\'bd\'c0\'b4\'cf\'b4\'d9.\par
\pard\qj \par
\'c0\'c7\'b9\'ae \'bb\'e7\'c7\'d7\'c0\'cc \'c0\'d6\'c0\'b8\'b8\'e9 \'b4\'d9\'c0\'bd \'c1\'d6\'bc\'d2\'b7\'ce \'b9\'ae\'c0\'c7\'c7\'cf\'bd\'c3\'b1\'e2 \'b9\'d9\'b6\'f8\'b4\'cf\'b4\'d9. Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. \par
}

View File

@@ -0,0 +1,56 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe1041{\fonttbl{\f0\fswiss\fprq2\fcharset0 Microsoft Sans Serif;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\nowidctlpar\qc\lang1053\f0\fs16 Sun Microsystems, Inc.\par
Licensavtal betr\'e4ffande bin\'e4rkod\par
\par
\lang1036 f\'f6r\par
\par
JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\par
\pard\nowidctlpar\par
\lang1053 SUN MICROSYSTEMS, INC. (\rdblquote SUN\rdblquote ) \'c4R VILLIGT ATT LICENSIERA NEDANST\'c5ENDE PROGRAMVARA TILL ER ENDAST UNDER F\'d6RUTS\'c4TTNING ATT NI ACCEPTERAR ALLA VILLKOR I DETTA LICENSAVTAL BETR\'c4FFANDE BIN\'c4RKOD OCH TILL\'c4GGSVILLKOREN F\'d6R LICENSAVTAL (TILLSAMMANS KALLADE \rdblquote AVTALET\rdblquote ). V\'c4NLIGEN L\'c4S NOGGRANT IGENOM AVTALET. GENOM ATT LADDA NED ELLER INSTALLERA DENNA PROGRAMVARA ACCEPTERAR NI VILLKOREN I AVTALET. ANGE ATT NI ACCEPTERAR GENOM ATT KLICKA P\'c5 KNAPPEN \rdblquote JAG ACCEPTERAR\rdblquote L\'c4NGST NED I AVTALET. OM NI INTE \'c4R VILLIG ATT BLI BUNDEN AV ALLA VILLKOR KLICKAR NI P\'c5 KNAPPEN \rdblquote JAG ACCEPTERAR INTE\rdblquote L\'c4NGST NED I DETTA AVTAL, VILKET MEDF\'d6R ATT NEDLADDNINGS- ELLER INSTALLATIONSPROCESSEN AVBRYTS.\par
\par
\pard\nowidctlpar\fi-360\li780\tx780 1.\tab DEFINITIONER. \rdblquote Programvara\rdblquote avser den produkt som anges ovan i bin\'e4r form, allt annat maskinl\'e4sbart material (inklusive, men inte begr\'e4nsat till, bibliotek, k\'e4llfiler, rubrikfiler och datafiler), alla uppdateringar eller felkorrigeringar som tillhandah\'e5llits av Sun och alla anv\'e4ndarhandb\'f6cker, programmeringshandb\'f6cker och annan dokumentation som tillhandah\'e5llits av Sun till Er enligt detta Avtal. \rdblquote Program\rdblquote avser Java-applets och applikationer som \'e4r avsedda att k\'f6ras p\'e5 plattformen Java Platform Standard Edition (Java SE) p\'e5 Java-f\'f6rberedda skrivbordsdatorer och servrar f\'f6r allm\'e4nt bruk.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 2.\tab LICENS F\'d6R ANV\'c4NDNING. I enlighet med villkoren och best\'e4mmelserna i detta Avtal inklusive, men inte begr\'e4nsat till, Java-teknikrestriktionerna i Till\'e4ggsvillkoren f\'f6r licensavtal, beviljar Sun Er en icke-exklusiv, icke-\'f6verl\'e5tbar, begr\'e4nsad licens utan licensavgifter f\'f6r att i fullst\'e4ndigt och of\'f6r\'e4ndrat skick internt reproducera och anv\'e4nda Programvaran, endast i syfte att k\'f6ra Program. Ytterligare licenser f\'f6r utvecklare och/eller utgivare beviljas i Till\'e4ggsvillkoren f\'f6r licensavtal.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 3.\tab BEGR\'c4NSNINGAR. Programvaran \'e4r konfidentiell och upphovsr\'e4ttsligt skyddad. \'c4gander\'e4tten till Programvaran och alla tillh\'f6rande immateriella r\'e4ttigheter kvarst\'e5r hos Sun och/eller dess licensgivare. Med undantag av vad som \'e4r f\'f6rbjudet enligt tvingande lagstiftning f\'e5r Ni inte modifiera, dekompilera eller efterforska Programvarans k\'e4llkod. Licensinnehavaren godtar att den licensierade Programvaran inte \'e4r utformad eller avsedd f\'f6r anv\'e4ndning vid utformning, konstruktion, drift eller underh\'e5ll av k\'e4rnkraftsanl\'e4ggningar. Sun Microsystems, Inc. friskriver sig fr\'e5n alla uttryckliga eller underf\'f6rst\'e5dda garantier om l\'e4mplighet f\'f6r s\'e5dana \'e4ndam\'e5l. Ingen \'e4gander\'e4tt, inga r\'e4ttigheter till eller intressen i n\'e5gra varum\'e4rken, servicem\'e4rken, logotyper eller aff\'e4rsnamn som tillh\'f6r Sun eller deras licensgivare beviljas under detta Avtal. Ytterligare restriktioner f\'f6r utvecklare och/eller utgivare anges i Till\'e4ggsvillkoren f\'f6r licensavtal.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 4.\tab BEGR\'c4NSAD GARANTI. Sun garanterar under en period om nittio (90) dagar fr\'e5n ink\'f6psdagen, i enlighet med en kopia av ink\'f6pskvittot, att de media som Programvaran levereras p\'e5 (i till\'e4mpliga fall) \'e4r fria fr\'e5n felaktigheter i material och utf\'f6rande vid normal anv\'e4ndning. Med undantag f\'f6r det f\'f6reg\'e5ende levereras Programvaran \rdblquote i befintligt skick\rdblquote . Er enda kompensation och Suns totala ansvar under denna begr\'e4nsade garanti \'e4r att Sun, efter eget gottfinnande, ers\'e4tter Programvarumedia eller \'e5terbetalar den avgift som Ni betalat f\'f6r Programvaran. Alla underf\'f6rst\'e5dda garantier avseende Programvaran \'e4r begr\'e4nsade till 90 dagar. I vissa l\'e4nder till\'e5ts inga begr\'e4nsningar av varaktigheten f\'f6r en underf\'f6rst\'e5dd garanti, varf\'f6r ovanst\'e5ende kanske inte g\'e4ller i Ert fall. Denna begr\'e4nsade garanti ger Er specifika juridiska r\'e4ttigheter. Det kan finnas ytterligare r\'e4ttigheter, som varierar fr\'e5n land till land.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 5.\tab FRISKRIVNING FR\'c5N GARANTI. F\'d6RUTOM VAD SOM S\'c4RSKILT ANGES I DETTA AVTAL FRISKRIVER SIG SUN FR\'c5N ALLA UTTRYCKLIGA ELLER UNDERF\'d6RST\'c5DDA VILLKOR, L\'d6FTEN OCH GARANTIER INKLUSIVE EVENTUELLA UNDERF\'d6RST\'c5DDA GARANTIER OM S\'c4LJBARHET, L\'c4MPLIGHET F\'d6R ETT VISST \'c4NDAM\'c5L ELLER ATT PRODUKTEN INTE UTG\'d6R INTR\'c5NG I N\'c5GONS R\'c4TT, DOCK INTE I DEN UTSTR\'c4CKNING SOM DESSA FRISKRIVNINGAR \'c4R OGILTIGA ENLIGT TVINGANDE LAGSTIFTNING.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 6.\tab ANSVARSBEGR\'c4NSNING. I DEN M\'c5N ANNAT INTE F\'d6LJER AV TVINGANDE LAGSTIFTNING KOMMER SUN ELLER SUNS LICENSGIVARE INTE UNDER N\'c5GRA OMST\'c4NDIGHETER ATT ANSVARA F\'d6R F\'d6RLORADE INKOMSTER, VINSTER ELLER DATA, ELLER F\'d6R S\'c4RSKILDA SKADOR, INDIREKTA SKADOR, F\'d6LJDSKADOR, OAVSIKTLIGA SKADOR ELLER IDEELLA SKADOR, OAVSETT ORSAK TILL SKADORNA OCH OAVSETT ANSVARSGRUND OM SKADORNA HAR UPPST\'c5TT VID ELLER I ANSLUTNING TILL ANV\'c4NDNING AV ELLER OF\'d6RM\'c5GA ATT ANV\'c4NDA PROGRAMVARAN. DETTA G\'c4LLER \'c4VEN OM SUN HAR INFORMERATS OM M\'d6JLIGHETEN AV S\'c5DANA SKADOR. Under inga omst\'e4ndigheter, vare sig enligt kontrakt, kr\'e4nkning (f\'f6rsumlighet) eller p\'e5 annat s\'e4tt, skall Suns ansvar gentemot Er \'f6verstiga det belopp Ni har betalat f\'f6r Programvaran i enlighet med detta Avtal. De ovan beskrivna begr\'e4nsningarna kommer att g\'e4lla \'e4ven om den ovan n\'e4mnda garantin inte kan anses g\'e4lla i sitt egentliga syfte. Vissa l\'e4nder till\'e5ter inte friskrivning fr\'e5n of\'f6rutsedda skador eller f\'f6ljdskador, varf\'f6r vissa av ovanst\'e5ende villkor kanske inte g\'e4ller i Ert fall.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li780\tx780 7.\tab UPPS\'c4GNING. Detta Avtal g\'e4ller tills det s\'e4gs upp. Ni kan s\'e4ga upp detta Avtal n\'e4r som helst genom att f\'f6rst\'f6ra alla exemplar av Programvaran. Detta Avtal kommer att upph\'f6ra att g\'e4lla omedelbart utan f\'f6reg\'e5ende upps\'e4gning fr\'e5n Sun om Ni underl\'e5ter att uppfylla n\'e5got av villkoren i detta Avtal. B\'e5da parter har r\'e4tt att omedelbart s\'e4ga upp detta Avtal om n\'e5gon Programvara blir, eller enligt n\'e5gon parts uppfattning sannolikt kommer att bli, f\'f6rem\'e5l f\'f6r intr\'e5ngstalan r\'f6rande n\'e5gon immateriell r\'e4ttighet. N\'e4r Ni s\'e4ger upp detta Avtal m\'e5ste Ni f\'f6rst\'f6ra alla exemplar av Programvaran.\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-354\li780\tx778 8.\tab EXPORTLAGSTIFTNING. All Programvara och teknisk information som levereras enligt detta Avtal omfattas av USA:s exportlagstiftning och kan omfattas av export- eller importlagstiftning i andra l\'e4nder. Ni samtycker till att strikt f\'f6lja alla s\'e5dana lagar och regler och \'e4r inf\'f6rst\'e5dd med att Ni har ansvar f\'f6r att skaffa s\'e5dana export-, vidareexport- eller importlicenser som kan komma att kr\'e4vas efter leveransen till Er.\par
\pard\nowidctlpar\tx778\par
\pard\nowidctlpar\fi-354\li780\tx778 9.\tab VARUM\'c4RKEN OCH LOGOTYPER. Ni godtar och samtycker till att Sun \'e4ger varum\'e4rkena SUN, SOLARIS, JAVA, JINI, FORTE och iPLANET, samt alla varum\'e4rken, tj\'e4nstem\'e4rken, logotyper och andra m\'e4rkesbeteckningar relaterade till SUN, SOLARIS, JAVA, JINI, FORTE och iPLANET (\rdblquote Sun-m\'e4rken\rdblquote ), och Ni samtycker till att f\'f6lja kraven f\'f6r anv\'e4ndning av Suns varum\'e4rken och logotyper som f\'f6r n\'e4rvarande finns p\'e5 http://www.sun.com/policies/trademarks. All Er anv\'e4ndning av Sun-m\'e4rken skall ske p\'e5 s\'e5 s\'e4tt att det gagnar Sun.\par
\pard\nowidctlpar\tx778\par
\pard\nowidctlpar\fi-354\li780\tx778 10.\tab BEGR\'c4NSADE R\'c4TTIGHETER F\'d6R USA:S STATSMAKT. Om Programvaran f\'f6rv\'e4rvas av USA:s statsmakt, f\'f6r dess r\'e4kning eller av en entrepren\'f6r eller underentrepren\'f6r som anlitats av USA:s statsmakt (oavsett niv\'e5) skall statsmaktens r\'e4ttigheter till Programvaran och medf\'f6ljande dokumentation vara begr\'e4nsad till vad som anges i detta Avtal. Detta \'e4r i enlighet med 48 CFR 227.7201 till och med 227.7202-4 (f\'f6r f\'f6rv\'e4rv av Department of Defense (DOD)) och i enlighet med 48 CFR 2.101 och 12.212 (f\'f6r f\'f6rv\'e4rv som inte g\'f6rs av DOD).\par
\pard\nowidctlpar\tx778\par
\pard\nowidctlpar\fi-354\li780\tx778 11.\tab TILL\'c4MPLIG LAG. Kalifornisk lag och till\'e4mplig amerikansk federal lagstiftning skall till\'e4mpas p\'e5 detta Avtal. Ingen jurisdiktions lagvalsregler skall vara till\'e4mpliga p\'e5 detta Avtal.\par
\pard\nowidctlpar\tx778\par
\pard\nowidctlpar\fi-354\li780\tx778 12.\tab SEPARERBARHET. Om n\'e5gon del av detta Avtal anses vara ogiltig kommer Avtalet att forts\'e4tta att vara g\'e4llande med den ogiltiga delen undantagen, s\'e5vida inte undantaget skulle om\'f6jligg\'f6ra parternas intentioner, i vilket fall detta Avtal omedelbart upph\'f6r att g\'e4lla.\par
\pard\nowidctlpar\tx778\par
\pard\nowidctlpar\fi-354\li780\tx778 13.\tab INTEGRERING. Detta Avtal \'e4r det fullst\'e4ndiga avtalet mellan Er och Sun betr\'e4ffande det inneh\'e5ll det ber\'f6r. Det ers\'e4tter alla tidigare eller samtidiga muntliga eller skriftliga kommunikationer, f\'f6rslag, l\'f6ften och garantier samt har f\'f6retr\'e4de framf\'f6r motstridiga eller ytterligare villkor i offerter, order, bekr\'e4ftelser eller annan kommunikation mellan parterna betr\'e4ffande det inneh\'e5ll som Avtalet ber\'f6r under Avtalets giltighetstid. \'c4ndringar av detta Avtal \'e4r inte bindande s\'e5vida dessa inte \'e4r skriftliga och har undertecknats av beh\'f6riga f\'f6retr\'e4dare f\'f6r respektive part.\par
\pard\nowidctlpar\par
TILL\'c4GGSVILLKOR F\'d6R LICENSAVTAL\par
\par
Dessa \rdblquote Till\'e4ggsvillkor f\'f6r licensavtal\rdblquote \'e4r ett till\'e4gg till eller \'e4ndrar villkoren i Licensavtal betr\'e4ffande bin\'e4rkod. Termer som inleds med versal och som inte definierats i dessa Till\'e4ggsvillkor skall ha samma betydelse som de har i Licensavtal betr\'e4ffande bin\'e4rkod. Till\'e4ggsvillkoren skall ers\'e4tta eventuellt of\'f6renliga eller stridande villkor i Licensavtal betr\'e4ffande bin\'e4rkod eller annan licens som medf\'f6ljer Programvaran.\par
\par
\pard\nowidctlpar\fi-294\li720\tx720 A.\tab Internt anv\'e4ndande av programvara och utvecklingslicensbeviljande. Enligt anv\'e4ndarvillkoren i detta Avtal och restriktioner och undantag i enlighet med Programvarans \rdblquote README\rdblquote fil inf\'f6rlivad h\'e4refter med referens, inkluderat, men inte begr\'e4nsat till Java Technology restriktioner av dessa till\'e4ggsvillkor, beviljar Sun dig en icke exklusiv, icke \'f6verf\'f6rbar, begr\'e4nsad, avgiftsfri licens f\'f6r att reproducera och anv\'e4nda Programvaran komplett och icke modifierad internt i syftet f\'f6r design, utveckling och testning av dina program.\par
\par
B.\tab Licens att distribuera programvaran. I enlighet med villkoren i detta Avtal och de restriktioner och undantag som beskrivs i Programvarans \rdblquote README\rdblquote -fil, inklusive men inte begr\'e4nsat till, Begr\'e4nsningar i Javateknologi i dessa Till\'e4ggsvillkor f\'f6r licensavtal, beviljar Sun Er en icke-exklusiv, icke-\'f6verl\'e5tbar och begr\'e4nsad licens utan avgifter att framst\'e4lla exemplar av och distribuera Programvaran, under f\'f6ruts\'e4ttning att: (i) Ni distribuerar hela Programvaran i fullst\'e4ndigt och of\'f6r\'e4ndrat skick och enbart tillsammans med som en del av och i syfte att k\'f6ra Era Program; (ii) Programmen ger Programvaran v\'e4sentlig och prim\'e4r funktionalitet; (iii) Ni inte distribuerar ytterligare programvara som \'e4r avsedd att ers\'e4tta n\'e5gon eller n\'e5gra av komponenterna i Programvaran; (iv) Ni inte tar bort eller \'e4ndrar n\'e5gra r\'e4ttighetsmeddelanden eller andra meddelanden i Programvaran; (v) Ni endast distribuerar Programvaran i enlighet med ett licensavtal som skyddar Suns intressen och som \'e4r i enlighet med villkoren i detta Avtal; och (vi) Ni samtycker till att f\'f6rsvara och h\'e5lla Sun och dess licensgivare skadesl\'f6sa i f\'f6rh\'e5llande till alla skador, kostnader, skadest\'e5nd, f\'f6rlikningslikvider och/eller utgifter (inklusive ers\'e4ttning f\'f6r juristarvoden) som har uppst\'e5tt i samband med krav, r\'e4ttslig \'e5tg\'e4rd eller annan \'e5tg\'e4rd fr\'e5n tredje part och som har uppkommit som ett resultat av eller beror p\'e5 anv\'e4ndningen eller distributionen av Program och/eller Programvara. \par
\par
C.\tab Begr\'e4nsningar i Javateknologi. Ni f\'e5r inte skapa, modifiera, eller \'e4ndra funktionaliteten hos, eller ge Era licenstagare tillst\'e5nd att skapa, modifiera, eller \'e4ndra funktionaliteten hos klasser, gr\'e4nssnitt eller underpaket som p\'e5 n\'e5got s\'e4tt identifieras som \rdblquote java\rdblquote , \rdblquote javax\rdblquote , \rdblquote sun\rdblquote eller liknande bruk enligt n\'e5gon av Suns namngivningsregler.\par
\par
D.\tab K\'e4llkod. Programvaran kan inneh\'e5lla k\'e4llkod som, s\'e5vida den inte uttryckligen licensierats f\'f6r andra \'e4ndam\'e5l, tillhandah\'e5lls endast f\'f6r referens\'e4ndam\'e5l i enlighet med villkoren i detta Avtal. K\'e4llkod f\'e5r inte vidaredistribueras, s\'e5vida detta inte uttryckligen till\'e5ts enligt detta Avtal. \par
\par
E.\tab Kod fr\'e5n tredje part. Ytterligare meddelanden om upphovsr\'e4tt och licensvillkor som g\'e4ller delar av Programvaran anges i filen THIRDPARTYLICENSEREADME.txt. Som till\'e4gg till alla tredje parts villkor och best\'e4mmelser f\'f6r \'f6ppen licens/freewarelicens som finns angivna i filen THIRDPARTYLICENSEREADME.txt, g\'e4ller friskrivningen fr\'e5n garanti och ansvarsbegr\'e4nsningen i paragraf 5 och 6 i Licensavtal betr\'e4ffande bin\'e4rkod all Programvara i denna distribution.\par
\par
F. \tab Upph\'f6rande p\'e5 grund av \'f6vertr\'e4delse. Vardera parten kan h\'e4va detta Avtal omedelbart om Programvaran blir, eller i endera parens \'e5sikt troligen kommer att bli, f\'f6rem\'e5l f\'f6r \'f6vertr\'e4delsekrav f\'f6r immateriell egendomsr\'e4ttighet.\par
\par
G.\tab Installation och automatisk uppdatering. Programinstallationen och autouppdateringsprocessen f\'f6r \'f6ver en begr\'e4nsad m\'e4ngd data till Sun (eller dess serviceleverant\'f6r) om dessa specifika processer f\'f6r att hj\'e4lpa Sun f\'f6rst\'e5 och optimera dem. Sun associerar inte data med personligt identifierbar information. Du kan hitta mer information om data som Sun samlar in p\'e5 http://java.com/data/.\par
\pard\nowidctlpar\par
Vid fr\'e5gor v\'e4nligen kontakta: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, USA \par
}

View File

@@ -0,0 +1,56 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe1041{\fonttbl{\f0\fnil\fprq2\fcharset134 SimSun;}{\f1\froman\fprq2\fcharset0 Times New Roman;}}
{\*\generator Msftedit 5.41.15.1507;}{\info{\horzdoc}{\*\lchars (.<?[\'7b\'ab\'b7\'91\'93}{\*\fchars !"'),.:\'3b>?]`|\'7d~\'a8\'af\'b7\'bb\'92\'94\'85}}
\viewkind4\uc1\pard\nowidctlpar\qc\lang2052\f0\fs20 SUN MICROSYSTEMS, INC.\par
\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\lang1036\f1\par
\par
\lang2052\f0 JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\lang1036\f1\par
\pard\nowidctlpar\par
\lang2052\f0 SUN MICROSYSTEMS,INC. (\ldblquote SUN\rdblquote ) \'d4\'b8\'d2\'e2\'ca\'da\'d3\'e8\'c4\'fa\'d0\'ed\'bf\'c9\'d6\'a4\'a3\'ac\'d0\'ed\'bf\'c9\'c4\'fa\'ca\'b9\'d3\'c3\'cf\'c2\'ca\'f6\'c8\'ed\'bc\'fe\'a3\'ac\'b5\'ab\'cc\'f5\'bc\'fe\'ca\'c7\'c4\'fa\'b1\'d8\'d0\'eb\'bd\'d3\'ca\'dc\'b1\'be\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\'b5\'c4\'cb\'f9\'d3\'d0\'cc\'f5\'bf\'ee\'d2\'d4\'bc\'b0\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee (\'cd\'b3\'b3\'c6\ldblquote\'d0\'ad\'d2\'e9\rdblquote ) \'a1\'a3\'c7\'eb\'d7\'d0\'cf\'b8\'d4\'c4\'b6\'c1\'b1\'be\'d0\'ad\'d2\'e9\'a1\'a3\'cf\'c2\'d4\'d8\'bb\'f2\'b0\'b2\'d7\'b0\'b1\'be\'c8\'ed\'bc\'fe\'a3\'ac\'bc\'b4\'b1\'ed\'c3\'f7\'c4\'fa\'d2\'d1\'bd\'d3\'ca\'dc\'b1\'be\'d0\'ad\'d2\'e9\'b5\'c4\'cc\'f5\'bf\'ee\'a1\'a3\'c7\'eb\'d1\'a1\'d4\'f1\'b1\'be\'d0\'ad\'d2\'e9\'bd\'e1\'ce\'b2\'b4\'a6\'b5\'c4\ldblquote\'bd\'d3\'ca\'dc\rdblquote\'b0\'b4\'c5\'a5\'d2\'d4\'ca\'be\'bd\'d3\'ca\'dc\'a1\'a3\'c8\'e7\'b9\'fb\'c4\'fa\'b2\'bb\'d4\'b8\'d2\'e2\'bd\'d3\'ca\'dc\'cb\'f9\'d3\'d0\'cc\'f5\'bf\'ee\'b5\'c4\'d4\'bc\'ca\'f8\'a3\'ac\'c7\'eb\'d1\'a1\'d4\'f1\'b1\'be\'d0\'ad\'d2\'e9\'bd\'e1\'ce\'b2\'b4\'a6\'b5\'c4\ldblquote\'be\'dc\'be\'f8\rdblquote\'b0\'b4\'c5\'a5\'a3\'ac\'d4\'f2\'cf\'c2\'d4\'d8\'bb\'f2\'b0\'b2\'d7\'b0\'b3\'cc\'d0\'f2\'b2\'bb\'bb\'e1\'d4\'d9\'bc\'cc\'d0\'f8\'a1\'a3\lang5130\f1\par
\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 1.\tab\'b6\'a8\'d2\'e5\b0\'a1\'a3\ldblquote\'c8\'ed\'bc\'fe\rdblquote\'ca\'c7\'d6\'b8\'c9\'cf\'ca\'f6\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'c8\'ed\'bc\'fe\'a1\'a2\'c8\'ce\'ba\'ce\'c6\'e4\'cb\'fb\'bb\'fa\'c6\'f7\'bf\'c9\'b6\'c1\'b2\'c4\'c1\'cf (\'c6\'e4\'d6\'d0\'b0\'fc\'c0\'a8\'b5\'ab\'b2\'bb\'cf\'de\'d3\'da\'bf\'e2\'a1\'a2\'d4\'b4\'ce\'c4\'bc\'fe\'a1\'a2\'b1\'ea\'cc\'e2\'ce\'c4\'bc\'fe\'a1\'a2\'ca\'fd\'be\'dd\'ce\'c4\'bc\'fe) \'a1\'a2Sun \'cc\'e1\'b9\'a9\'b5\'c4\'b8\'fc\'d0\'c2\'bb\'f2\'b4\'ed\'ce\'f3\'be\'c0\'d5\'fd\'ce\'c4\'bc\'fe\'a1\'a2\'d2\'d4\'bc\'b0 Sun \'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'cf\'f2\'c4\'fa\'cc\'e1\'b9\'a9\'b5\'c4\'ca\'d6\'b2\'e1\'a1\'a2\'b1\'e0\'b3\'cc\'d6\'b8\'c4\'cf\'ba\'cd\'c6\'e4\'cb\'fb\'ce\'c4\'bc\'fe\'a1\'a3\ldblquote\'b3\'cc\'d0\'f2\rdblquote\'ca\'c7\'d6\'b8\'d2\'e2\'cd\'bc\'d4\'da\'d6\'a7\'b3\'d6 Java \'b9\'a6\'c4\'dc\'b5\'c4\'cd\'a8\'d3\'c3\'d7\'c0\'c3\'e6\'ca\'bd\'bc\'c6\'cb\'e3\'bb\'fa\'ba\'cd\'b7\'fe\'ce\'f1\'c6\'f7\'c9\'cf\'ca\'b9\'d3\'c3 Java Platform Standard Edition (Java SE)\'c6\'bd\'cc\'a8\'d4\'cb\'d0\'d0\'b5\'c4 Java \'d0\'a1\'b3\'cc\'d0\'f2\'ba\'cd\'d3\'a6\'d3\'c3\'b3\'cc\'d0\'f2\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 2.\tab\'ca\'b9\'d3\'c3\'d0\'ed\'bf\'c9\b0\'a1\'a3\'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'b5\'c4\'cc\'f5\'bf\'ee\'ba\'cd\'cc\'f5\'bc\'fe\'a3\'ac\'c6\'e4\'d6\'d0\'b0\'fc\'c0\'a8\'b5\'ab\'b2\'bb\'cf\'de\'d3\'da\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\ldblquote Java \'bc\'bc\'ca\'f5\'cf\'de\'d6\'c6\rdblquote\'a3\'acSun \'cf\'f2\'c4\'fa\'ca\'da\'d3\'e8\'b7\'c7\'c5\'c5\'cb\'fb\'d0\'d4\'a1\'a2\'b2\'bb\'bf\'c9\'d7\'aa\'c8\'c3\'a1\'a2\'b2\'bb\'d0\'e8\'bd\'bb\'c4\'c9\'d0\'ed\'bf\'c9\'b7\'d1\'b5\'c4\'d3\'d0\'cf\'de\'d0\'ed\'bf\'c9\'d6\'a4\'a3\'ac\'d4\'ca\'d0\'ed\'bd\'f6\'ce\'aa\'d4\'cb\'d0\'d0\'b3\'cc\'d0\'f2\'b5\'c4\'c4\'bf\'b5\'c4\'d4\'da\'c4\'da\'b2\'bf\'b8\'b4\'d6\'c6\'ba\'cd\'ca\'b9\'d3\'c3\'cd\'ea\'d5\'fb\'b6\'f8\'ce\'b4\'b8\'c4\'b1\'e4\'b5\'c4\'c8\'ed\'bc\'fe\'a1\'a3\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\'cf\'f2\'bf\'aa\'b7\'a2\'c9\'cc\'ba\'cd/\'bb\'f2\'b3\'f6\'b0\'e6\'c9\'cc\'ca\'da\'d3\'e8\'c6\'e4\'cb\'fb\'d0\'ed\'bf\'c9\'d6\'a4\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 3.\tab\'cf\'de\'d6\'c6\b0\'a1\'a3\'b1\'be\'c8\'ed\'bc\'fe\'ce\'aa\'b1\'a3\'c3\'dc\'c8\'ed\'bc\'fe\'a3\'ac\'b2\'a2\'ca\'dc\'b0\'e6\'c8\'a8\'b1\'a3\'bb\'a4\'a1\'a3Sun \'ba\'cd/\'bb\'f2\'c6\'e4\'d0\'ed\'bf\'c9\'b7\'bd\'b1\'a3\'c1\'f4\'b6\'d4\'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'cb\'f9\'d3\'d0\'c8\'a8\'bc\'b0\'cb\'f9\'d3\'d0\'cf\'e0\'b9\'d8\'b5\'c4\'d6\'aa\'ca\'b6\'b2\'fa\'c8\'a8\'a1\'a3\'b3\'fd\'b7\'c7\'ca\'ca\'d3\'c3\'b7\'a8\'c2\'c9\'bd\'fb\'d6\'b9\'ca\'b5\'ca\'a9\'a3\'ac\'b7\'f1\'d4\'f2\'c4\'fa\'b2\'bb\'b5\'c3\'b6\'d4\'b1\'be\'c8\'ed\'bc\'fe\'bd\'f8\'d0\'d0\'d0\'de\'b8\'c4\'a1\'a2\'b7\'b4\'b1\'e0\'d2\'eb\'bb\'f2\'b7\'b4\'cf\'f2\'b9\'a4\'b3\'cc\'a1\'a3\'ca\'dc\'d0\'ed\'bf\'c9\'c8\'cb\'cd\'ac\'d2\'e2\'d0\'ed\'bf\'c9\'b5\'c4\'c8\'ed\'bc\'fe\'b2\'a2\'b7\'c7\'c9\'e8\'bc\'c6\'bb\'f2\'d6\'bc\'d4\'da\'d3\'c3\'d3\'da\'c8\'ce\'ba\'ce\'ba\'cb\'c9\'e8\'ca\'a9\'b5\'c4\'c9\'e8\'bc\'c6\'a1\'a2\'bd\'a8\'d4\'ec\'a1\'a2\'b2\'d9\'d7\'f7\'bb\'f2\'ce\'ac\'bb\'a4\'a1\'a3Sun Microsystems, Inc. \'b2\'bb\'b6\'d4\'b4\'cb\'c0\'e0\'d3\'a6\'d3\'c3\'b5\'c4\'ca\'ca\'d3\'c3\'d0\'d4\'d7\'f7\'c8\'ce\'ba\'ce\'c3\'f7\'ca\'be\'bb\'f2\'c4\'ac\'ca\'be\'b5\'c4\'b5\'a3\'b1\'a3\'a1\'a3\'b6\'d4\'d3\'da Sun \'bb\'f2\'c6\'e4\'d0\'ed\'bf\'c9\'b7\'bd\'b5\'c4\'c8\'ce\'ba\'ce\'c9\'cc\'b1\'ea\'a1\'a2\'b7\'fe\'ce\'f1\'b1\'ea\'bc\'c7\'a1\'a2\'b1\'ea\'ca\'b6\'bb\'f2\'c9\'cc\'ba\'c5\'b5\'c4\'c8\'ce\'ba\'ce\'c8\'a8\'c0\'fb\'a1\'a2\'cb\'f9\'d3\'d0\'c8\'a8\'bb\'f2\'c8\'a8\'d2\'e6\'a3\'ac\'b1\'be\'d0\'ad\'d2\'e9\'be\'f9\'b2\'bb\'d7\'f7\'c8\'ce\'ba\'ce\'ca\'da\'c8\'a8\'a1\'a3\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\'b6\'d4\'bf\'aa\'b7\'a2\'c9\'cc\'ba\'cd/\'bb\'f2\'b3\'f6\'b0\'e6\'c9\'cc\'d0\'ed\'bf\'c9\'d6\'a4\'d3\'d0\'c6\'e4\'cb\'fb\'cf\'de\'d6\'c6\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 4.\tab\'d3\'d0\'cf\'de\'b5\'a3\'b1\'a3\b0\'a1\'a3Sun \'cf\'f2\'c4\'fa\'b5\'a3\'b1\'a3\'a3\'ac\'d7\'d4\'b9\'ba\'c2\'f2\'d6\'ae\'c8\'d5\'c6\'f0\'be\'c5\'ca\'ae (90) \'cc\'ec\'c4\'da (\'d2\'d4\'ca\'d5\'be\'dd\'b8\'b1\'b1\'be\'ce\'aa\'c6\'be\'d6\'a4) , \'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'b4\'e6\'b4\'a2\'bd\'e9\'d6\'ca (\'c8\'e7\'b9\'fb\'d3\'d0\'b5\'c4\'bb\'b0) \'d4\'da\'d5\'fd\'b3\'a3\'ca\'b9\'d3\'c3\'b5\'c4\'c7\'e9\'bf\'f6\'cf\'c2\'ce\'de\'b2\'c4\'c1\'cf\'ba\'cd\'b9\'a4\'d2\'d5\'b7\'bd\'c3\'e6\'b5\'c4\'c8\'b1\'cf\'dd\'a1\'a3\'b3\'fd\'c9\'cf\'ca\'f6\'b5\'a3\'b1\'a3\'cd\'e2\'a3\'ac\'b1\'be\'c8\'ed\'bc\'fe\'b0\'b4\ldblquote\'d4\'ad\'d1\'f9\rdblquote\'cc\'e1\'b9\'a9\'a1\'a3\'d4\'da\'b1\'be\'d3\'d0\'cf\'de\'b5\'a3\'b1\'a3\'cf\'ee\'cf\'c2\'a3\'ac\'c4\'fa\'b5\'c4\'cb\'f9\'d3\'d0\'b2\'b9\'b3\'a5\'bc\'b0 Sun \'b5\'c4\'c8\'ab\'b2\'bf\'d4\'f0\'c8\'ce\'ce\'aa\'d3\'c9 Sun \'d1\'a1\'d4\'f1\'b8\'fc\'bb\'bb\'b1\'be\'c8\'ed\'bc\'fe\'bd\'e9\'d6\'ca\'bb\'f2\'cd\'cb\'bb\'b9\'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'b9\'ba\'c2\'f2\'b7\'d1\'d3\'c3\'a1\'a3\'b9\'d8\'d3\'da\'c8\'ed\'bc\'fe\'b5\'c4\'c8\'ce\'ba\'ce\'c4\'ac\'ca\'be\'b5\'c4\'b5\'a3\'b1\'a3\'d6\'bb\'cf\'de\'d3\'da90\'cc\'ec\'a1\'a3\'d3\'d0\'d0\'a9\'d6\'dd\'b2\'bb\'d4\'ca\'d0\'ed\'cf\'de\'d6\'c6\'c4\'ac\'ca\'be\'b5\'a3\'b1\'a3\'b5\'c4\'c6\'da\'cf\'de\'a3\'ac\'d2\'f2\'b4\'cb\'c9\'cf\'ca\'f6\'b9\'e6\'b6\'a8\'bf\'c9\'c4\'dc\'b6\'d4\'c4\'fa\'b2\'bb\'ca\'ca\'d3\'c3\'a1\'a3\'b1\'be\'d3\'d0\'cf\'de\'b5\'a3\'b1\'a3\'ca\'da\'d3\'e8\'c4\'fa\'cc\'d8\'b6\'a8\'b5\'c4\'b7\'a8\'c2\'c9\'c8\'a8\'c0\'fb\'a1\'a3\'c4\'fa\'bf\'c9\'c4\'dc\'bb\'b9\'d3\'d0\'c6\'e4\'cb\'fb\'b7\'a8\'c2\'c9\'c8\'a8\'c0\'fb\'a3\'ac\'d5\'e2\'d0\'a9\'c6\'e4\'cb\'fb\'b7\'a8\'c2\'c9\'c8\'a8\'c0\'fb\'b8\'f7\'d6\'dd\'d3\'d0\'cb\'f9\'b2\'bb\'cd\'ac\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 5.\tab\'b5\'a3\'b1\'a3\'b5\'c4\'c3\'e2\'d4\'f0\'c9\'f9\'c3\'f7\b0\'a1\'a3\'b3\'fd\'b7\'c7\'d4\'da\'b1\'be\'d0\'ad\'d2\'e9\'d6\'d0\'d3\'d0\'c3\'f7\'c8\'b7\'b9\'e6\'b6\'a8\'a3\'ac\'b7\'f1\'d4\'f2\'b6\'d4\'d3\'da\'c8\'ce\'ba\'ce\'c3\'f7\'ca\'be\'bb\'f2\'c4\'ac\'ca\'be\'b5\'c4\'cc\'f5\'bc\'fe\'a1\'a2\'b3\'c2\'ca\'f6\'bc\'b0\'b5\'a3\'b1\'a3\'a3\'ac\'b0\'fc\'c0\'a8\'b6\'d4\'ca\'ca\'cf\'fa\'d0\'d4\'a1\'a2\'cc\'d8\'b6\'a8\'d3\'c3\'cd\'be\'ca\'ca\'d3\'c3\'d0\'d4\'bb\'f2\'b7\'c7\'c7\'d6\'c8\'a8\'d0\'d4\'b5\'c4\'c8\'ce\'ba\'ce\'c4\'ac\'ca\'be\'b5\'c4\'b5\'a3\'b1\'a3\'a3\'ac\'be\'f9\'b2\'bb\'d3\'e8\'b8\'ba\'d4\'f0\'a3\'ac\'b5\'ab\'c9\'cf\'ca\'f6\'c3\'e2\'d4\'f0\'c9\'f9\'c3\'f7\'b1\'bb\'c8\'cf\'b6\'a8\'ce\'aa\'b7\'a8\'c2\'c9\'c9\'cf\'ce\'de\'d0\'a7\'b5\'c4\'c7\'e9\'bf\'f6\'b3\'fd\'cd\'e2\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 6.\tab\'d4\'f0\'c8\'ce\'cf\'de\'d6\'c6\b0\'a1\'a3\'d4\'da\'b7\'a8\'c2\'c9\'ce\'b4\'bd\'fb\'d6\'b9\'b5\'c4\'b7\'b6\'ce\'a7\'c4\'da\'a3\'ac\'ce\'de\'c2\'db\'d4\'da\'ba\'ce\'d6\'d6\'c7\'e9\'bf\'f6\'cf\'c2\'a3\'ac\'ce\'de\'c2\'db\'b2\'c9\'d3\'c3\'ba\'ce\'d6\'d6\'d3\'d0\'b9\'d8\'d4\'f0\'c8\'ce\'b5\'c4\'c0\'ed\'c2\'db\'a3\'ac\'ce\'de\'c2\'db\'d2\'f2\'ba\'ce\'d6\'d6\'b7\'bd\'ca\'bd\'b5\'bc\'d6\'c2\'a3\'ac\'b6\'d4\'d3\'da\'d2\'f2\'ca\'b9\'d3\'c3\'bb\'f2\'ce\'de\'b7\'a8\'ca\'b9\'d3\'c3\'b1\'be\'c8\'ed\'bc\'fe\'d2\'fd\'c6\'f0\'b5\'c4\'bb\'f2\'d3\'eb\'d6\'ae\'cf\'e0\'b9\'d8\'b5\'c4\'c8\'ce\'ba\'ce\'ca\'d5\'d2\'e6\'cb\'f0\'ca\'a7\'a1\'a2\'c0\'fb\'c8\'f3\'bb\'f2\'ca\'fd\'be\'dd\'cb\'f0\'ca\'a7\'a3\'ac\'bb\'f2\'d5\'df\'b6\'d4\'d3\'da\'cc\'d8\'ca\'e2\'b5\'c4\'a1\'a2\'bc\'e4\'bd\'d3\'b5\'c4\'a1\'a2\'ba\'f3\'b9\'fb\'d0\'d4\'b5\'c4\'a1\'a2\'c5\'bc\'b7\'a2\'b5\'c4\'bb\'f2\'b3\'cd\'b7\'a3\'d0\'d4\'b5\'c4\'cb\'f0\'ba\'a6\'a3\'acSUN \'bb\'f2\'c6\'e4\'d0\'ed\'bf\'c9\'b7\'bd\'be\'f9\'b2\'bb\'b3\'d0\'b5\'a3\'c8\'ce\'ba\'ce\'d4\'f0\'c8\'ce (\'bc\'b4\'ca\'b9 Sun \'d2\'d1\'b1\'bb\'b8\'e6\'d6\'aa\'bf\'c9\'c4\'dc\'b3\'f6\'cf\'d6\'c9\'cf\'ca\'f6\'cb\'f0\'ba\'a6\'c5\'e2\'b3\'a5) \'a1\'a3\'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'a3\'ac\'d4\'da\'c8\'ce\'ba\'ce\'c7\'e9\'bf\'f6\'cf\'c2\'a3\'ac\'ce\'de\'c2\'db\'ca\'c7\'d4\'da\'ba\'cf\'cd\'ac\'a1\'a2\'c7\'d6\'c8\'a8\'d0\'d0\'ce\'aa (\'b0\'fc\'c0\'a8\'b9\'fd\'ca\'a7) \'b7\'bd\'c3\'e6\'a3\'ac\'bb\'b9\'ca\'c7\'d4\'da\'c6\'e4\'cb\'fb\'b7\'bd\'c3\'e6\'a3\'acSun \'b6\'d4\'c4\'fa\'b5\'c4\'d4\'f0\'c8\'ce\'bd\'ab\'b2\'bb\'b3\'ac\'b9\'fd\'c4\'fa\'be\'cd\'b1\'be\'c8\'ed\'bc\'fe\'cb\'f9\'d6\'a7\'b8\'b6\'b5\'c4\'bd\'f0\'b6\'ee\'a1\'a3\'bc\'b4\'ca\'b9\'c9\'cf\'ca\'f6\'b5\'a3\'b1\'a3\'ce\'b4\'c4\'dc\'b4\'ef\'b5\'bd\'c6\'e4\'bb\'f9\'b1\'be\'c4\'bf\'b5\'c4\'a3\'ac\'c9\'cf\'ce\'c4\'cb\'f9\'ca\'f6\'b5\'c4\'cf\'de\'d6\'c6\'c8\'d4\'c8\'bb\'ca\'ca\'d3\'c3\'a1\'a3\'d3\'d0\'d0\'a9\'d6\'dd\'b2\'bb\'d4\'ca\'d0\'ed\'c5\'c5\'b3\'fd\'c5\'bc\'b7\'a2\'b5\'c4\'bb\'f2\'ba\'f3\'b9\'fb\'d0\'d4\'cb\'f0\'ba\'a6\'b5\'c4\'c5\'e2\'b3\'a5\'a3\'ac\'d2\'f2\'b4\'cb\'c9\'cf\'ca\'f6\'d3\'d0\'d0\'a9\'b9\'e6\'b6\'a8\'bf\'c9\'c4\'dc\'b6\'d4\'c4\'fa\'b2\'bb\'ca\'ca\'d3\'c3\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 7.\tab\'d6\'d5\'d6\'b9\b0\'a1\'a3\'b1\'be\'d0\'ad\'d2\'e9\'d4\'da\'d6\'d5\'d6\'b9\'d6\'ae\'c7\'b0\'ca\'bc\'d6\'d5\'d3\'d0\'d0\'a7\'a1\'a3\'c4\'fa\'bf\'c9\'d2\'d4\'cb\'e6\'ca\'b1\'d6\'d5\'d6\'b9\'b1\'be\'d0\'ad\'d2\'e9\'a3\'ac\'b5\'ab\'b1\'d8\'d0\'eb\'cf\'fa\'bb\'d9\'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'c8\'ab\'b2\'bf\'d5\'fd\'b1\'be\'ba\'cd\'b8\'b1\'b1\'be\'a1\'a3\'c8\'e7\'b9\'fb\'c4\'fa\'ce\'b4\'d7\'f1\'ca\'d8\'b1\'be\'d0\'ad\'d2\'e9\'b5\'c4\'c8\'ce\'ba\'ce\'b9\'e6\'b6\'a8\'a3\'ac\'d4\'f2\'b1\'be\'d0\'ad\'d2\'e9\'bd\'ab\'b2\'bb\'be\'ad Sun \'b7\'a2\'b3\'f6\'cd\'a8\'d6\'aa\'b6\'f8\'c1\'a2\'bc\'b4\'d6\'d5\'d6\'b9\'a1\'a3\'c8\'e7\'b9\'fb\'c8\'ed\'bc\'fe\'b3\'c9\'ce\'aa (\'bb\'f2\'c8\'ce\'d2\'bb\'b7\'bd\'c8\'cf\'ce\'aa\'d3\'d0\'bf\'c9\'c4\'dc\'b3\'c9\'ce\'aa) \'c8\'ce\'ba\'ce\'d6\'aa\'ca\'b6\'b2\'fa\'c8\'a8\'c7\'d6\'b7\'b8\'cb\'f7\'c5\'e2\'b5\'c4\'b1\'ea\'b5\'c4\'a3\'ac\'c8\'ce\'ba\'ce\'d2\'bb\'b7\'bd\'be\'f9\'bf\'c9\'d6\'d5\'d6\'b9\'b1\'be\'d0\'ad\'d2\'e9\'a1\'a3\'d6\'d5\'d6\'b9\'ca\'b1\'a3\'ac\'c4\'fa\'b1\'d8\'d0\'eb\'cf\'fa\'bb\'d9\'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'c8\'ab\'b2\'bf\'d5\'fd\'b1\'be\'ba\'cd\'b8\'b1\'b1\'be\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 8.\tab\'b3\'f6\'bf\'da\'cc\'f5\'c0\'fd\b0\'a1\'a3\'cb\'f9\'d3\'d0\'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'bd\'bb\'b8\'b6\'b5\'c4\'b1\'be\'c8\'ed\'bc\'fe\'ba\'cd\'bc\'bc\'ca\'f5\'ca\'fd\'be\'dd\'a3\'ac\'be\'f9\'ca\'dc\'c3\'c0\'b9\'fa\'b3\'f6\'bf\'da\'bf\'d8\'d6\'c6\'b7\'a8\'c2\'c9\'b5\'c4\'d4\'bc\'ca\'f8\'a3\'ac\'d2\'b2\'bf\'c9\'c4\'dc\'ca\'dc\'c6\'e4\'cb\'fb\'b9\'fa\'bc\'d2\'b5\'c4\'bd\'f8\'b3\'f6\'bf\'da\'cc\'f5\'c0\'fd\'b5\'c4\'d4\'bc\'ca\'f8\'a1\'a3\'c4\'fa\'cd\'ac\'d2\'e2\'d1\'cf\'b8\'f1\'d7\'f1\'ca\'d8\'cb\'f9\'d3\'d0\'b4\'cb\'c0\'e0\'b7\'a8\'c2\'c9\'b7\'a8\'b9\'e6\'a3\'ac\'b2\'a2\'cd\'ac\'d2\'e2\'b3\'d0\'b5\'a3\'bb\'f1\'c8\'a1\'cf\'f2\'c4\'fa\'bd\'bb\'bb\'f5\'ba\'f3\'bf\'c9\'c4\'dc\'d0\'e8\'d2\'aa\'b5\'c4\'b3\'f6\'bf\'da\'a1\'a2\'d7\'aa\'bf\'da\'bb\'f2\'bd\'f8\'bf\'da\'d0\'ed\'bf\'c9\'b5\'c4\'d4\'f0\'c8\'ce\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 9.\tab\'c9\'cc\'b1\'ea\'ba\'cd\'b1\'ea\'ca\'b6\b0\'a1\'a3\'c4\'fa\'b3\'d0\'c8\'cf\'b2\'a2\'d3\'eb Sun \'d3\'d0\'d2\'d4\'cf\'c2\'b9\'b2\'ca\'b6\'a3\'ac\'bc\'b4 Sun \'d3\'b5\'d3\'d0 SUN\'a1\'a2SOLARIS\'a1\'a2JAVA\'a1\'a2JINI\'a1\'a2FORTE\'a1\'a2iPLANET \'c9\'cc\'b1\'ea\'a3\'ac\'d2\'d4\'bc\'b0\'cb\'f9\'d3\'d0\'d3\'eb SUN\'a1\'a2SOLARIS\'a1\'a2JAVA\'a1\'a2JINI\'a1\'a2FORTE\'a1\'a2iPLANET \'cf\'e0\'b9\'d8\'b5\'c4\'c9\'cc\'b1\'ea\'a1\'a2\'b7\'fe\'ce\'f1\'c9\'cc\'b1\'ea\'a1\'a2\'b1\'ea\'ca\'b6\'bc\'b0\'c6\'e4\'cb\'fb\'c6\'b7\'c5\'c6\'b1\'ea\'ca\'b6 (\ldblquote Sun \'b1\'ea\'bc\'c7\rdblquote ) \'a3\'ac\'b6\'f8\'c7\'d2\'c4\'fa\'cd\'ac\'d2\'e2\'d7\'f1\'ca\'d8\'c4\'bf\'c7\'b0\'ce\'bb\'d3\'da http://www.sun.com/policies/trademarks \'cd\'f8\'d6\'b7\'c9\'cf\'b5\'c4 Sun \'c9\'cc\'b1\'ea\'d3\'eb\'b1\'ea\'ca\'b6\'ca\'b9\'d3\'c3\'d2\'aa\'c7\'f3\'a1\'a3\'c4\'fa\'b6\'d4 Sun \'b1\'ea\'bc\'c7\'b5\'c4\'c8\'ce\'ba\'ce\'ca\'b9\'d3\'c3\'b6\'bc\'d3\'a6\'b7\'fb\'ba\'cf Sun \'b5\'c4\'c0\'fb\'d2\'e6\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 10.\'c3\'c0\'b9\'fa\'d5\'fe\'b8\'ae\'b5\'c4\'d3\'d0\'cf\'de\'c8\'a8\'c0\'fb\b0\'a1\'a3\'c8\'e7\'b9\'fb\'b1\'be\'c8\'ed\'bc\'fe\'cf\'b5\'d3\'c9\'c3\'c0\'b9\'fa\'d5\'fe\'b8\'ae\'bb\'f2\'b4\'fa\'b1\'ed\'c3\'c0\'b9\'fa\'d5\'fe\'b8\'ae\'b9\'ba\'c2\'f2\'bb\'f2\'d3\'c9\'c3\'c0\'b9\'fa\'d5\'fe\'b8\'ae\'b5\'c4\'d6\'f7\'b3\'d0\'b0\'fc\'c9\'cc\'bb\'f2\'b7\'d6\'b0\'fc\'c9\'cc (\'c8\'ce\'ba\'ce\'bc\'b6\'b1\'f0) \'b9\'ba\'c2\'f2\'a3\'ac\'d4\'f2\'d5\'fe\'b8\'ae\'b6\'d4\'b1\'be\'c8\'ed\'bc\'fe\'bc\'b0\'b8\'bd\'cb\'e6\'ce\'c4\'b5\'b5\'b5\'c4\'c8\'a8\'c0\'fb\'d6\'bb\'cf\'de\'d3\'da\'b1\'be\'d0\'ad\'d2\'e9\'b9\'e6\'b6\'a8\'b5\'c4\'b2\'bf\'b7\'d6\'a3\'ac\'d2\'d4\'c9\'cf\'b9\'e6\'b6\'a8\'d6\'ae\'d2\'c0\'be\'dd\'ca\'c7\'c3\'c0\'b9\'fa\'b7\'a8\'b5\'e448 CFR 227.7201 \'d6\'c1 227.7202-4 (\'b6\'d4\'b9\'fa\'b7\'c0\'b2\'bf\'b2\'c9\'b9\'ba\'b6\'f8\'d1\'d4) \'d2\'d4\'bc\'b0 48 CFR 2.101 \'ba\'cd 12.212 (\'b6\'d4\'d3\'da\'b7\'c7\'b9\'fa\'b7\'c0\'b2\'bf\'b2\'c9\'b9\'ba\'b6\'f8\'d1\'d4) \'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 11.\'b9\'dc\'cf\'bd\'b7\'a8\'c2\'c9\b0\'a1\'a3\'d3\'eb\'b1\'be\'d0\'ad\'d2\'e9\'cf\'e0\'b9\'d8\'b5\'c4\'c8\'ce\'ba\'ce\'cb\'df\'cb\'cf\'be\'f9\'ca\'dc\'bc\'d3\'c0\'fb\'b8\'a3\'c4\'e1\'d1\'c7\'d6\'dd\'b7\'a8\'c2\'c9\'bc\'b0\'ca\'ca\'d3\'c3\'b5\'c4\'c3\'c0\'b9\'fa\'c1\'aa\'b0\'ee\'b7\'a8\'c2\'c9\'b5\'c4\'b9\'dc\'cf\'bd\'a1\'a3\'c8\'ce\'ba\'ce\'b9\'fa\'bc\'d2\'ba\'cd\'b5\'d8\'c7\'f8\'b5\'c4\'d1\'a1\'d4\'f1\'b7\'a8\'c2\'c9\'b5\'c4\'b9\'e6\'d4\'f2\'b2\'bb\'d3\'e8\'ca\'ca\'d3\'c3\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 12.\'bf\'c9\'b7\'d6\'b8\'ee\'d0\'d4\b0\'a1\'a3\'c8\'e7\'b9\'fb\'b1\'be\'d0\'ad\'d2\'e9\'d6\'d0\'d3\'d0\'c8\'ce\'ba\'ce\'b9\'e6\'b6\'a8\'b1\'bb\'c8\'cf\'b6\'a8\'ce\'aa\'ce\'de\'b7\'a8\'d6\'b4\'d0\'d0\'a3\'ac\'d4\'f2\'c9\'be\'b3\'fd\'cf\'e0\'d3\'a6\'b9\'e6\'b6\'a8\'a3\'ac\'b1\'be\'d0\'ad\'d2\'e9\'c8\'d4\'c8\'bb\'d3\'d0\'d0\'a7\'a3\'ac\'b3\'fd\'b7\'c7\'b4\'cb\'b5\'c8\'c9\'be\'b3\'fd\'b7\'c1\'b0\'ad\'b8\'f7\'b7\'bd\'d4\'b8\'cd\'fb\'b5\'c4\'ca\'b5\'cf\'d6 (\'d4\'da\'d5\'e2\'d6\'d6\'c7\'e9\'bf\'f6\'cf\'c2\'a3\'ac\'b1\'be\'d0\'ad\'d2\'e9\'bd\'ab\'c1\'a2\'bc\'b4\'d6\'d5\'d6\'b9) \'a1\'a3 \par
\pard\nowidctlpar\lang5130\f1\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 13.\'cd\'ea\'d5\'fb\'d0\'d4\b0\'a1\'a3\'b1\'be\'d0\'ad\'d2\'e9\'ca\'c7\'c4\'fa\'d3\'eb Sun \'be\'cd\'c6\'e4\'b1\'ea\'b5\'c4\'b4\'ef\'b3\'c9\'b5\'c4\'cd\'ea\'d5\'fb\'d0\'ad\'d2\'e9\'a1\'a3\'cb\'fc\'c8\'a1\'b4\'fa\'b4\'cb\'c7\'b0\'bb\'f2\'cd\'ac\'c6\'da\'b5\'c4\'cb\'f9\'d3\'d0\'bf\'da\'cd\'b7\'bb\'f2\'ca\'e9\'c3\'e6\'cd\'f9\'c0\'b4\'d0\'c5\'cf\'a2\'a1\'a2\'bd\'a8\'d2\'e9\'a1\'a2\'b3\'c2\'ca\'f6\'ba\'cd\'b5\'a3\'b1\'a3\'a1\'a3\'d4\'da\'b1\'be\'d0\'ad\'d2\'e9\'c6\'da\'bc\'e4\'a3\'ac\'d3\'d0\'b9\'d8\'b1\'a8\'bc\'db\'a1\'a2\'b6\'a9\'b5\'a5\'a1\'a2\'bb\'d8\'d6\'b4\'bb\'f2\'b8\'f7\'b7\'bd\'d6\'ae\'bc\'e4\'be\'cd\'b1\'be\'d0\'ad\'d2\'e9\'b1\'ea\'b5\'c4\'bd\'f8\'d0\'d0\'b5\'c4\'c6\'e4\'cb\'fb\'cd\'f9\'c0\'b4\'cd\'a8\'d0\'c5\'d6\'d0\'b5\'c4\'c8\'ce\'ba\'ce\'b3\'e5\'cd\'bb\'cc\'f5\'bf\'ee\'bb\'f2\'b8\'bd\'bc\'d3\'cc\'f5\'bf\'ee\'a3\'ac\'be\'f9\'d2\'d4\'b1\'be\'d0\'ad\'d2\'e9\'ce\'aa\'d7\'bc\'a1\'a3\'b6\'d4\'b1\'be\'d0\'ad\'d2\'e9\'b5\'c4\'c8\'ce\'ba\'ce\'d0\'de\'b8\'c4\'be\'f9\'ce\'de\'d4\'bc\'ca\'f8\'c1\'a6\'a3\'ac\'b3\'fd\'b7\'c7\'cd\'a8\'b9\'fd\'ca\'e9\'c3\'e6\'bd\'f8\'d0\'d0\'d0\'de\'b8\'c4\'b2\'a2\'d3\'c9\'c3\'bf\'d2\'bb\'b7\'bd\'b5\'c4\'ca\'da\'c8\'a8\'b4\'fa\'b1\'ed\'c7\'a9\'d7\'d6\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\par
\pard\nowidctlpar\qc\lang2052\f0\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\lang5130\f1\par
\pard\nowidctlpar\par
\lang2052\f0\'b4\'cb\'b4\'a6\'cb\'f9\'d4\'d8\'b5\'c4\'d4\'f6\'b2\'b9\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\'cf\'b5\'b2\'b9\'b3\'e4\'bb\'f2\'d0\'de\'b8\'c4\ldblquote\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\rdblquote\'d6\'ae\'cc\'f5\'bf\'ee\'a1\'a3\'d4\'f6\'b2\'b9\'cc\'f5\'bf\'ee\'d6\'d0\'ce\'b4\'b6\'a8\'d2\'e5\'a1\'a2\'b5\'ab\'d4\'da\'d0\'ad\'d2\'e9\'d6\'d0\'d2\'d1\'d3\'d0\'b6\'a8\'d2\'e5\'b5\'c4\'ca\'f5\'d3\'ef\'d3\'a6\'be\'df\'d3\'d0\'d3\'eb\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\'cb\'f9\'b8\'b3\'d3\'e8\'b5\'c4\'cf\'e0\'cd\'ac\'d2\'e2\'d2\'e5\'a1\'a3\'b6\'fe\'bd\'f8\'d6\'c6\'b4\'fa\'c2\'eb\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\'bb\'f2\'c8\'ed\'bc\'fe\'cb\'f9\'b0\'fc\'ba\'ac\'b5\'c4\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\'c8\'f4\'d3\'eb\'b4\'cb\'b4\'a6\'b5\'c4\'d4\'f6\'b2\'b9\'cc\'f5\'bf\'ee\'d3\'d0\'c8\'ce\'ba\'ce\'b2\'bb\'d2\'bb\'d6\'c2\'bb\'f2\'b3\'e5\'cd\'bb\'a3\'ac\'d3\'a6\'d2\'d4\'b4\'cb\'b4\'a6\'b5\'c4\'d4\'f6\'b2\'b9\'cc\'f5\'bf\'ee\'ce\'aa\'d7\'bc\'a1\'a3\lang5130\f1\par
\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 A.\tab\'c8\'ed\'bc\'fe\'b5\'c4\'c4\'da\'b2\'bf\'ca\'b9\'d3\'c3\'ba\'cd\'bf\'aa\'b7\'a2\'d0\'ed\'bf\'c9\'d6\'a4\'ca\'da\'c8\'a8\b0\'a1\'a3 \'b8\'f9\'be\'dd\'b4\'cb\'d0\'ad\'d2\'e9\'b5\'c4\'cc\'f5\'bf\'ee\'ba\'cd\'cc\'f5\'bc\'fe\'d2\'d4\'bc\'b0\'d2\'d4\'d2\'fd\'d3\'c3\'b7\'bd\'ca\'bd\'b2\'a2\'c8\'eb\'b1\'be\'ce\'c4\'d6\'d0\'b5\'c4\'c8\'ed\'bc\'fe\ldblquote README\rdblquote\'ce\'c4\'bc\'fe\'d6\'d0\'cb\'f9\'ca\'f6\'b5\'c4\'d4\'bc\'ca\'f8\'d2\'d4\'bc\'b0\'c0\'fd\'cd\'e2\'c7\'e9\'bf\'f6\'a3\'ac\'b0\'fc\'c0\'a8 (\'b5\'ab\'b2\'bb\'cf\'de\'d3\'da) \'d5\'e2\'d0\'a9\'b2\'b9\'b3\'e4\'cc\'f5\'bf\'ee\'b5\'c4 Java \'bc\'bc\'ca\'f5\'d4\'bc\'ca\'f8\'a3\'acSun \'c3\'e2\'b7\'d1\'ca\'da\'d3\'e8\'c4\'fa\'b7\'c7\'c5\'c5\'cb\'fb\'a1\'a2\'b2\'bb\'bf\'c9\'d7\'aa\'c8\'c3\'b5\'c4\'ca\'dc\'cf\'de\'d0\'ed\'bf\'c9\'a3\'ac\'bf\'c9\'d4\'da\'c4\'da\'b2\'bf\'b8\'b4\'d6\'c6\'ba\'cd\'ca\'b9\'d3\'c3\'d2\'d1\'be\'ad\'cd\'ea\'b3\'c9\'c7\'d2\'ce\'b4\'be\'ad\'d0\'de\'b6\'a9\'b5\'c4\'c8\'ed\'bc\'fe\'d2\'d4\'c9\'e8\'bc\'c6\'a1\'a2\'bf\'aa\'b7\'a2\'ba\'cd\'b2\'e2\'ca\'d4\'c4\'fa\'b5\'c4\'b3\'cc\'d0\'f2\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 B.\tab\'c8\'ed\'bc\'fe\'b7\'d6\'b7\'a2\'d0\'ed\'bf\'c9\'d6\'a4\b0\'a1\'a3\'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'b5\'c4\'cc\'f5\'bf\'ee\'d3\'eb\'cc\'f5\'bc\'fe\'d2\'d4\'bc\'b0\ldblquote README\rdblquote\'ce\'c4\'bc\'fe\'c1\'d0\'b3\'f6\'b5\'c4\'cf\'de\'d6\'c6\'ba\'cd\'b3\'fd\'cd\'e2\'b9\'e6\'b6\'a8\'a3\'ac\'c6\'e4\'d6\'d0\'b0\'fc\'c0\'a8\'b5\'ab\'b2\'bb\'cf\'de\'d3\'da\'b1\'be\'d4\'f6\'b2\'b9\'cc\'f5\'bf\'ee\'b5\'c4\ldblquote Java \'bc\'bc\'ca\'f5\'cf\'de\'d6\'c6\rdblquote\'a3\'acSun \'ca\'da\'d3\'e8\'c4\'fa\'b7\'c7\'c5\'c5\'cb\'fb\'d0\'d4\'a1\'a2\'b2\'bb\'bf\'c9\'d7\'aa\'c8\'c3\'a1\'a2\'b2\'bb\'d0\'e8\'bd\'bb\'c4\'c9\'d0\'ed\'bf\'c9\'b7\'d1\'b5\'c4\'d3\'d0\'cf\'de\'d0\'ed\'bf\'c9\'d6\'a4\'a3\'ac\'d4\'ca\'d0\'ed\'c4\'fa\'b8\'b4\'d6\'c6\'ba\'cd\'b7\'d6\'b7\'a2\'c8\'ed\'bc\'fe\'a3\'ac\'cc\'f5\'bc\'fe\'ca\'c7\'a3\'ba (i) \'c4\'fa\'d6\'bb\'b7\'d6\'b7\'a2\'cd\'ea\'d5\'fb\'b6\'f8\'ce\'b4\'bc\'d3\'d0\'de\'b8\'c4\'b5\'c4\'c8\'ed\'bc\'fe\'a3\'ac\'b6\'f8\'c7\'d2\'d6\'bb\'d7\'f7\'ce\'aa\'c4\'fa\'b5\'c4\'b3\'cc\'d0\'f2\'b5\'c4\'c0\'a6\'b0\'f3\'b2\'bf\'b7\'d6\'b7\'d6\'b7\'a2\'a3\'ac\'b7\'d6\'b7\'a2\'b5\'c4\'c4\'bf\'b5\'c4\'d6\'bb\'cf\'de\'d3\'da\'d4\'cb\'d0\'d0\'c4\'fa\'b5\'c4\ldblquote\'b3\'cc\'d0\'f2\rdblquote\'a3\'bb (ii) \ldblquote\'b3\'cc\'d0\'f2\rdblquote\'d0\'eb\'ce\'aa\'c8\'ed\'bc\'fe\'d4\'f6\'bc\'d3\'d6\'d8\'b4\'f3\'b5\'c4\'bb\'f9\'b1\'be\'b9\'a6\'c4\'dc\'a3\'bb (iii) \'c4\'fa\'b2\'bb\'b7\'d6\'b7\'a2\'d2\'e2\'d4\'da\'c8\'a1\'b4\'fa\'b1\'be\'c8\'ed\'bc\'fe\'b5\'c4\'c8\'ce\'ba\'ce\'d7\'e9\'bc\'fe\'b5\'c4\'c6\'e4\'cb\'fb\'c8\'ed\'bc\'fe\'a3\'bb (iv) \'c4\'fa\'b2\'bb\'d2\'c6\'b3\'fd\'bb\'f2\'b8\'fc\'b8\'c4\'c8\'ed\'bc\'fe\'b0\'fc\'ba\'ac\'b5\'c4\'c8\'ce\'ba\'ce\'d7\'a8\'d3\'d0\'c8\'a8\'b1\'ea\'d6\'be\'bb\'f2\'b8\'e6\'ca\'be\'a3\'bb (v) \'c4\'fa\'d6\'bb\'b8\'f9\'be\'dd\'d4\'da\'b1\'a3\'bb\'a4 Sun \'b5\'c4\'c0\'fb\'d2\'e6\'b7\'bd\'c3\'e6\'d3\'eb\'b1\'be\'d0\'ad\'d2\'e9\'d6\'ae\'cc\'f5\'bf\'ee\'cf\'e0\'d2\'bb\'d6\'c2\'b5\'c4\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\'b7\'d6\'b7\'a2\'c8\'ed\'bc\'fe\'a3\'bb\'b2\'a2\'c7\'d2 (vi) \'c4\'fa\'cd\'ac\'d2\'e2\'a3\'ba\'c8\'e7\'b9\'fb\'d2\'f2\'ca\'b9\'d3\'c3\'bb\'f2\'b7\'d6\'b7\'a2\'c8\'ce\'ba\'ce\'bc\'b0\'cb\'f9\'d3\'d0\ldblquote\'b3\'cc\'d0\'f2\rdblquote\'ba\'cd/\'bb\'f2\'b1\'be\'c8\'ed\'bc\'fe\'b5\'bc\'d6\'c2\'bb\'f2\'d4\'ec\'b3\'c9\'b5\'da\'c8\'fd\'b7\'bd\'cc\'e1\'b3\'f6\'cb\'f7\'c5\'e2\'a1\'a2\'cb\'df\'cb\'cf\'bb\'f2\'b7\'a8\'c2\'c9\'d0\'d0\'b6\'af\'a3\'ac\'b6\'d4\'d3\'da\'d3\'c9\'b4\'cb\'d5\'d0\'d6\'c2\'b5\'c4\'c8\'ce\'ba\'ce\'cb\'f0\'ba\'a6\'a1\'a2\'b7\'d1\'d3\'c3\'a1\'a2\'d4\'f0\'c8\'ce\'a1\'a2\'ba\'cd\'bd\'e2\'bd\'f0\'ba\'cd/\'bb\'f2\'bf\'aa\'cf\'fa (\'b0\'fc\'c0\'a8\'c2\'c9\'ca\'a6\'b7\'d1) \'a3\'ac\'c4\'fa\'bd\'ab\'cf\'f2 Sun \'bc\'b0\'c6\'e4\'d0\'ed\'bf\'c9\'c8\'cb\'cc\'e1\'b9\'a9\'b1\'e7\'bb\'a4\'ba\'cd\'c5\'e2\'b3\'a5\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 C.\tab Java \'bc\'bc\'ca\'f5\'cf\'de\'d6\'c6\b0\'a1\'a3\'c4\'fa\'b2\'bb\'bf\'c9\'b4\'b4\'bd\'a8\'bb\'f2\'d0\'de\'b8\'c4\'d2\'d4\'c8\'ce\'ba\'ce\'b7\'bd\'ca\'bd\'b1\'bb\'b1\'ea\'ca\'be\'ce\'aa\ldblquote java\rdblquote\'a1\'a2\ldblquote javax\rdblquote\'a1\'a2\ldblquote sun\rdblquote\'b5\'c4\'bb\'f2 Sun \'d4\'da\'c8\'ce\'ba\'ce\'c3\'fc\'c3\'fb\'d4\'bc\'b6\'a8\'d6\'d0\'d6\'b8\'c3\'f7\'b5\'c4\'c0\'e0\'cb\'c6\'d4\'bc\'b6\'a8\'b5\'c4\'c0\'e0\'a1\'a2\'bd\'e7\'c3\'e6\'a1\'a2\'d7\'d3\'b0\'fc\'bb\'f2\'b8\'c4\'b1\'e4\'c6\'e4\'d0\'d0\'ce\'aa\'a3\'ac\'d2\'b2\'b2\'bb\'bf\'c9\'ca\'da\'c8\'a8\'c4\'fa\'b5\'c4\'b1\'bb\'d0\'ed\'bf\'c9\'c8\'cb\'b4\'b4\'bd\'a8\'bb\'f2\'d0\'de\'b8\'c4\'b8\'c3\'b5\'c8\'c0\'e0\'a1\'a2\'bd\'e7\'c3\'e6\'a1\'a2\'d7\'d3\'b0\'fc\'bb\'f2\'b8\'c4\'b1\'e4\'c6\'e4\'d0\'d0\'ce\'aa\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 D.\tab\'d4\'b4\'b4\'fa\'c2\'eb\b0\'a1\'a3\ldblquote\'c8\'ed\'bc\'fe\rdblquote\'bf\'c9\'c4\'dc\'b0\'fc\'ba\'ac\'d4\'b4\'b4\'fa\'c2\'eb\'a3\'bb\'b3\'fd\'b7\'c7\'ce\'aa\'c6\'e4\'cb\'fb\'c4\'bf\'b5\'c4\'c3\'f7\'c8\'b7\'b8\'f8\'d3\'e8\'d0\'ed\'bf\'c9\'a3\'ac\'b7\'f1\'d4\'f2\'cc\'e1\'b9\'a9\'d4\'b4\'b4\'fa\'c2\'eb\'b5\'c4\'ce\'a8\'d2\'bb\'c4\'bf\'b5\'c4\'ca\'c7\'b8\'f9\'be\'dd\'b1\'be\'d0\'ad\'d2\'e9\'cc\'f5\'bf\'ee\'b5\'c4\'b9\'e6\'b6\'a8\'d7\'f7\'b2\'ce\'bf\'bc\'d6\'ae\'d3\'c3\'a1\'a3\'d4\'b4\'b4\'fa\'c2\'eb\'b2\'bb\'bf\'c9\'d4\'d9\'b7\'d6\'b7\'a2\'a3\'ac\'b3\'fd\'b7\'c7\'d4\'da\'b1\'be\'d0\'ad\'d2\'e9\'d6\'d0\'d3\'d0\'c3\'f7\'c8\'b7\'b9\'e6\'b6\'a8\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 E.\tab\'b5\'da\'c8\'fd\'b7\'bd\'b4\'fa\'c2\'eb\b0\'a1\'a3THIRDPARTYLICENSEREADME.txt \'ce\'c4\'bc\'fe\'ba\'ac\'d3\'d0\'b9\'d8\'d3\'da\'c8\'ed\'bc\'fe\'c4\'b3\'d0\'a9\'b2\'bf\'b7\'d6\'b5\'c4\'c6\'e4\'cb\'fb\'b0\'e6\'c8\'a8\'cd\'a8\'d6\'aa\'ba\'cd\'d0\'ed\'bf\'c9\'cc\'f5\'bf\'ee\'a1\'a3\'b3\'fd THIRDPARTYLICENSEREADME.txt \'ce\'c4\'bc\'fe\'cb\'f9\'c1\'d0\'b3\'f6\'b5\'c4\'b5\'da\'c8\'fd\'b7\'bd\'bf\'aa\'b7\'c5\'bc\'fe/\'c3\'e2\'b7\'d1\'bc\'fe\'cc\'f5\'bf\'ee\'ba\'cd\'cc\'f5\'bc\'fe\'d6\'ae\'cd\'e2\'a3\'ac\'b6\'fe\'bd\'f8\'d6\'c6\'d0\'ed\'bf\'c9\'d0\'ad\'d2\'e9\'b5\'da5\'bf\'ee\'ba\'cd\'b5\'da6\'bf\'ee\'b5\'c4\'b5\'a3\'b1\'a3\'c3\'e2\'d4\'f0\'c9\'f9\'c3\'f7\'bc\'b0\'d4\'f0\'c8\'ce\'cf\'de\'d6\'c6\'b9\'e6\'b6\'a8\'ca\'ca\'d3\'c3\'d3\'da\'b1\'be\'b4\'ce\'b7\'d6\'b7\'a2\'b5\'c4\'cb\'f9\'d3\'d0\'c8\'ed\'bc\'fe\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 F. \'d6\'d5\'d6\'b9\'c7\'d6\'ba\'a6\b0\'a1\'a3 \'c8\'ce\'ba\'ce\'c8\'ed\'bc\'fe\'b3\'c9\'ce\'aa\'bb\'f2\'c8\'ce\'d2\'bb\'b7\'bd\'b5\'c4\'d6\'f7\'d5\'c5\'bf\'c9\'c4\'dc\'b3\'c9\'ce\'aa\'c8\'ce\'ba\'ce\'d6\'aa\'ca\'b6\'b2\'fa\'c8\'a8\'b5\'c4\'c7\'d6\'c8\'a8\'cb\'f7\'c5\'e2\'b6\'d4\'cf\'f3\'ba\'f3\'a3\'ac\'c8\'ce\'d2\'bb\'b7\'bd\'bf\'c9\'c2\'ed\'c9\'cf\'d6\'d5\'d6\'b9\'b4\'cb\'d0\'ad\'d2\'e9\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\pard\nowidctlpar\fi-360\li720\tx720\lang2052\b\f0 G. \'b0\'b2\'d7\'b0\'ba\'cd\'d7\'d4\'b6\'af\'b8\'fc\'d0\'c2\b0\'a1\'a3 \'c8\'ed\'bc\'fe\'b5\'c4\'b0\'b2\'d7\'b0\'ba\'cd\'d7\'d4\'b6\'af\'b8\'fc\'d0\'c2\'b9\'fd\'b3\'cc\'cf\'f2 Sun (\'bb\'f2\'c6\'e4\'b7\'fe\'ce\'f1\'b9\'a9\'d3\'a6\'c9\'cc) \'b4\'ab\'ca\'e4\'d3\'d0\'b9\'d8\'cc\'d8\'b6\'a8\'b9\'fd\'b3\'cc\'b5\'c4\'d3\'d0\'cf\'de\'b5\'c4\'ca\'fd\'be\'dd\'c1\'bf\'d2\'d4\'b0\'ef\'d6\'fa Sun \'c0\'ed\'bd\'e2\'b2\'a2\'b6\'d4\'c6\'e4\'bd\'f8\'d0\'d0\'d3\'c5\'bb\'af\'a1\'a3 Sun\'ce\'b4\'bd\'ab\'d5\'e2\'d0\'a9\'ca\'fd\'be\'dd\'d3\'eb\'b8\'f6\'c8\'cb\'b5\'c4\'bf\'c9\'ca\'b6\'b1\'f0\'d0\'c5\'cf\'a2\'b9\'d8\'c1\'aa\'a1\'a3 \'c8\'f4\'d2\'aa\'b2\'e9\'d5\'d2\'b8\'fc\'b6\'e0 Sun \'ca\'d5\'bc\'af\'b5\'c4\'b8\'c3\'ca\'fd\'be\'dd\'b5\'c4\'d3\'d0\'b9\'d8\'d0\'c5\'cf\'a2\'a3\'ac\'c7\'eb\'b7\'c3\'ce\'ca http://java.com/data/\'a1\'a3\lang5130\f1\par
\pard\nowidctlpar\par
\lang2052\f0\'c8\'f4\'d3\'d0\'ce\'ca\'cc\'e2\'a3\'ac\'c7\'eb\'d6\'c2\'ba\'af\'a3\'baSun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. \par
}

View File

@@ -0,0 +1,976 @@
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch11\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt MS Gothic};}{\f11\fmodern\fcharset128\fprq1{\*\panose 02020609040205080304}MS Mincho{\*\falt ?l?r ??\'81\'66c};}
{\f14\froman\fcharset136\fprq2{\*\panose 02020300000000000000}PMingLiU{\*\falt !Ps2OcuAe};}{\f81\fmodern\fcharset128\fprq1{\*\panose 02020609040205080304}@MS Mincho;}{\f107\froman\fcharset136\fprq2{\*\panose 02020300000000000000}@PMingLiU;}
{\f255\froman\fcharset238\fprq2 Times New Roman CE{\*\falt MS Gothic};}{\f256\froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt MS Gothic};}{\f258\froman\fcharset161\fprq2 Times New Roman Greek{\*\falt MS Gothic};}
{\f259\froman\fcharset162\fprq2 Times New Roman Tur{\*\falt MS Gothic};}{\f260\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt MS Gothic};}{\f261\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt MS Gothic};}
{\f262\froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt MS Gothic};}{\f263\froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt MS Gothic};}{\f367\fmodern\fcharset0\fprq1 MS Mincho Western{\*\falt ?l?r ??\'81\'66c};}
{\f365\fmodern\fcharset238\fprq1 MS Mincho CE{\*\falt ?l?r ??\'81\'66c};}{\f366\fmodern\fcharset204\fprq1 MS Mincho Cyr{\*\falt ?l?r ??\'81\'66c};}{\f368\fmodern\fcharset161\fprq1 MS Mincho Greek{\*\falt ?l?r ??\'81\'66c};}
{\f369\fmodern\fcharset162\fprq1 MS Mincho Tur{\*\falt ?l?r ??\'81\'66c};}{\f372\fmodern\fcharset186\fprq1 MS Mincho Baltic{\*\falt ?l?r ??\'81\'66c};}{\f397\froman\fcharset0\fprq2 PMingLiU Western{\*\falt !Ps2OcuAe};}
{\f1067\fmodern\fcharset0\fprq1 @MS Mincho Western;}{\f1065\fmodern\fcharset238\fprq1 @MS Mincho CE;}{\f1066\fmodern\fcharset204\fprq1 @MS Mincho Cyr;}{\f1068\fmodern\fcharset161\fprq1 @MS Mincho Greek;}{\f1069\fmodern\fcharset162\fprq1 @MS Mincho Tur;}
{\f1072\fmodern\fcharset186\fprq1 @MS Mincho Baltic;}{\f1327\froman\fcharset0\fprq2 @PMingLiU Western;}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;
\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe2052\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp2052 \snext0 Normal;}{\*\cs10 \additive
\ssemihidden Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv
\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \fs20\lang1024\langfe1024\loch\f0\hich\af0\dbch\af11\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}}
{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\revtbl {Unknown;}}{\*\rsidtbl \rsid292297\rsid3540483\rsid4941877\rsid10429758\rsid14424342}{\*\generator Microsoft Word 11.0.8026;}{\info{\operator llipnik}{\creatim\yr2006\mo10\dy4\hr14\min1}
{\revtim\yr2006\mo10\dy6\hr15\min31}{\version5}{\edmins6}{\nofpages3}{\nofwords656}{\nofchars3179}{\nofcharsws3737}{\vern24609}{\*\password 00000000}}{\*\xmlnstbl }\paperw12240\paperh15840\margl1800\margr1800\margt1440\margb1440\gutter0\ltrsect
\widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\ksulang1041\viewkind4\viewscale100\nolnhtadjtbl\ApplyBrkRules\rsidroot3540483
{\*\fchars !"'),.:\'3b>?]`|\'7d~\'a8\'af\'b7\'bb\'92\'94\'85}{\*\lchars (.<?[\'7b\'ab\'b7\'91\'93}\fet0{\*\wgrffmtfilter 013f}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sectrsid14424342\sftnbj {\*\pnseclvl1
\pnucrm\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta )}}
{\*\pnseclvl5\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8
\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar
\qc \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe2052\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp2052 {\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun Microsystems, Inc.
\par }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69
\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14
\u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qc \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid3540483\charrsid14424342 \hich\af14\dbch\af14\loch\f14 JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SUN MICROSYSTEMS, INC. (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SUN}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12301\'a1\'76}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-26536\'c4\'40\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14
\u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20294\'a6\'fd\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8
\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u24517\'a5\'b2\loch\af14\hich\af14\dbch\f14 \u-26616\'b6\'b7
\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69
\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14
\u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14
\u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u31777\'c2\'b2
\loch\af14\hich\af14\dbch\f14 \u31281\'ba\'d9\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-30005\'bd\'d0\loch\af14\hich\af14\dbch\f14 \u20180\'a5\'4a
\loch\af14\hich\af14\dbch\f14 \u32048\'b2\'d3\loch\af14\hich\af14\dbch\f14 \u-27215\'be\'5c\loch\af14\hich\af14\dbch\f14 \u-29824\'c5\'aa\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14
\u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u-28919\'b8\'fc\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u23433\'a6\'77\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u-30314\'b5\'f8
\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u24050\'a4\'77\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14
\u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8
\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-30005\'bd\'d0\loch\af14\hich\af14\dbch\f14 \u-28552\'bf\'ef\loch\af14\hich\af14\dbch\f14 \u25799\'be\'dc
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26411\'a5\'bd\loch\af14\hich\af14\dbch\f14 \u31471\'ba\'dd\loch\af14\hich\af14\dbch\f14
\u-31147\'b3\'42\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76
\loch\af14\hich\af14\dbch\f14 \u25353\'ab\'f6\loch\af14\hich\af14\dbch\f14 \u-28139\'b6\'73\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u-30616\'aa\'ed
\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14
\u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u22914\'a6\'70\loch\af14\hich\af14\dbch\f14 \u26524\'aa\'47\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-26536\'c4\'40\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc
\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14
\u-30005\'bd\'d0\loch\af14\hich\af14\dbch\f14 \u-28552\'bf\'ef\loch\af14\hich\af14\dbch\f14 \u25799\'be\'dc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9
\loch\af14\hich\af14\dbch\f14 \u26411\'a5\'bd\loch\af14\hich\af14\dbch\f14 \u31471\'ba\'dd\loch\af14\hich\af14\dbch\f14 \u-31147\'b3\'42\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75
\loch\af14\hich\af14\dbch\f14 \u25298\'a9\'da\loch\af14\hich\af14\dbch\f14 \u32085\'b5\'b4\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u25353\'ab\'f6\loch\af14\hich\af14\dbch\f14 \u-28139\'b6\'73
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21063\'ab\'68\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u-28919\'b8\'fc\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14
\u23433\'a6\'77\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7
\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid292297 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 1.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u32681\'b8\'71}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u25351\'ab\'fc\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57
\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b
\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u27231\'be\'f7\loch\af14\hich\af14\dbch\f14
\u22120\'be\'b9\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-29824\'c5\'aa\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d
\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41\loch\af14\hich\af14\dbch\f14 \u20294\'a6\'fd\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3
\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u24235\'ae\'77\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14
\u22987\'a9\'6c\loch\af14\hich\af14\dbch\f14 \u27284\'c0\'c9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u-26548\'c3\'44\loch\af14\hich\af14\dbch\f14 \u27284\'c0\'c9
\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6\loch\af14\hich\af14\dbch\f14 \u27284\'c0\'c9}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u26356\'a7\'f3\loch\af14\hich\af14\dbch\f14 \u26032\'b7\'73\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-27857\'bf\'f9\loch\af14\hich\af14\dbch\f14 \u-30044\'bb\'7e
\loch\af14\hich\af14\dbch\f14 \u31998\'aa\'c8\loch\af14\hich\af14\dbch\f14 \u27491\'a5\'bf\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u21521\'a6\'56\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14
\u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u25163\'a4\'e2
\loch\af14\hich\af14\dbch\f14 \u20874\'a5\'55\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u32232\'bd\'73\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u25351\'ab\'fc\loch\af14\hich\af14\dbch\f14
\u21335\'ab\'6e\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u25991\'a4\'e5
\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14
\u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u25351\'ab\'fc\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u22294\'b9\'cf\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62
\loch\af14\hich\af14\dbch\f14 \u25903\'a4\'e4\loch\af14\hich\af14\dbch\f14 \u25588\'b4\'a9}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21151\'a5\'5c\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26700\'ae\'e0\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u22411\'ab\'ac
\loch\af14\hich\af14\dbch\f14 \u-26885\'b9\'71\loch\af14\hich\af14\dbch\f14 \u-32410\'b8\'a3\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u20282\'a6\'f8\loch\af14\hich\af14\dbch\f14 \u26381\'aa\'41
\loch\af14\hich\af14\dbch\f14 \u22120\'be\'b9\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid292297 \hich\af14\dbch\af14\loch\f14 Java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid3540483\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Platform Standard Edition (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid292297 \hich\af14\dbch\af14\loch\f14 Java SE}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid3540483\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u24179\'a5\'ad\loch\af14\hich\af14\dbch\f14 \u21488\'a5\'78\loch\af14\hich\af14\dbch\f14 \u-28597\'b9\'42
\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23567\'a4\'70\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1
\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u25033\'c0\'b3\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14
\u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 2.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14
\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41\loch\af14\hich\af14\dbch\f14
\u20294\'a6\'fd\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9
\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14
\u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25216\'a7\'de\loch\af14\hich\af14\dbch\f14 \u-30637\'b3\'4e\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21521\'a6\'56\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u23560\'b1\'4d\loch\af14\hich\af14\dbch\f14 \u23660\'c4\'dd\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u31227\'b2\'be\loch\af14\hich\af14\dbch\f14 \u-28855\'c2\'e0\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u20813\'a7\'4b\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-29509\'b6\'4f\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14
\u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u-28597\'b9\'42\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6
\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14
\u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u-30457\'bd\'c6\loch\af14\hich\af14\dbch\f14 \u-30467\'bb\'73\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d
\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u23436\'a7\'b9\loch\af14\hich\af14\dbch\f14 \u25972\'be\'e3\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3
\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u-29814\'c5\'dc\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u21547\'a7\'74\loch\af14\hich\af14\dbch\f14
\u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u21521\'a6\'56\loch\af14\hich\af14\dbch\f14 \u-27253\'b6\'7d\loch\af14\hich\af14\dbch\f14 \u30332\'b5\'6f\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 /}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u29256\'aa\'a9
\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14
\u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 3.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57
\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u23660\'c4\'dd\loch\af14\hich\af14\dbch\f14 \u29151\'c0\'e7
\loch\af14\hich\af14\dbch\f14 \u26989\'b7\'7e\loch\af14\hich\af14\dbch\f14 \u31192\'af\'b5\loch\af14\hich\af14\dbch\f14 \u23494\'b1\'4b\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14
\u-31657\'b5\'db\loch\af14\hich\af14\dbch\f14 \u20316\'a7\'40\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u-29833\'c5\'40\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u30041\'af\'64\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u26234\'b4\'bc\loch\af14\hich\af14\dbch\f14 \u24935\'bc\'7a\loch\af14\hich\af14\dbch\f14 \u-29535\'b0\'5d
\loch\af14\hich\af14\dbch\f14 \u29986\'b2\'a3\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14
\u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6
\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u31105\'b8\'54\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u23526\'b9\'ea\loch\af14\hich\af14\dbch\f14
\u26045\'ac\'49\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21542\'a7\'5f\loch\af14\hich\af14\dbch\f14 \u21063\'ab\'68\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3
\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9
\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u-30237\'b8\'d1\loch\af14\hich\af14\dbch\f14 \u32232\'bd\'73\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u21453\'a4\'cf\loch\af14\hich\af14\dbch\f14 \u21521\'a6\'56
\loch\af14\hich\af14\dbch\f14 \u24037\'a4\'75\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20154\'a4\'48\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44
\loch\af14\hich\af14\dbch\f14 \u-30163\'b3\'5d\loch\af14\hich\af14\dbch\f14 \u-30200\'ad\'70\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u22294\'b9\'cf
\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u-30163\'b3\'5d\loch\af14\hich\af14\dbch\f14 \u-30200\'ad\'70\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u24314\'ab\'d8\loch\af14\hich\af14\dbch\f14 \u-28640\'b3\'79\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u25805\'be\'de\loch\af14\hich\af14\dbch\f14 \u20316\'a7\'40
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u32173\'ba\'fb\loch\af14\hich\af14\dbch\f14 \u-29833\'c5\'40\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u26680\'ae\'d6\loch\af14\hich\af14\dbch\f14 \u23376\'a4\'6c\loch\af14\hich\af14\dbch\f14 \u-30163\'b3\'5d\loch\af14\hich\af14\dbch\f14 \u26045\'ac\'49\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun Microsystems, Inc.}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u21542\'a7\'5f\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf
\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14
\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u26263\'b7\'74
\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14
\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3
\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14
\u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u26381\'aa\'41\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14
\u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31456\'b3\'b9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u21517\'a6\'57\loch\af14\hich\af14\dbch\f14 \u31281\'ba\'d9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14
\u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u30410\'af\'71\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14
\u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u-27253\'b6\'7d\loch\af14\hich\af14\dbch\f14 \u30332\'b5\'6f\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 /}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u29256\'aa\'a9
\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14
\u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u-28919\'b8\'fc\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3
\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8
\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 4.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1
\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21521\'a6\'56\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1
\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-32278\'a6\'db\loch\af14\hich\af14\dbch\f14 \u-29444\'c1\'ca\loch\af14\hich\af14\dbch\f14 \u-29513\'b6\'52
\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u26085\'a4\'e9\loch\af14\hich\af14\dbch\f14 \u-29321\'b0\'5f\loch\af14\hich\af14\dbch\f14 \u20061\'a4\'45\loch\af14\hich\af14\dbch\f14 \u21313\'a4\'51}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (90) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22825\'a4\'d1\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u25910\'a6\'ac\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da
\loch\af14\hich\af14\dbch\f14 \u21103\'b0\'c6\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u24977\'be\'cc}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20786\'c0\'78\loch\af14\hich\af14\dbch\f14 \u23384\'a6\'73\loch\af14\hich\af14\dbch\f14 \u20171\'a4\'b6
\loch\af14\hich\af14\dbch\f14 \u-29462\'bd\'e8}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32027\'ad\'59\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14
\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-30095\'b8\'dc}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u27491\'a5\'bf
\loch\af14\hich\af14\dbch\f14 \u24120\'b1\'60\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u24773\'b1\'a1\loch\af14\hich\af14\dbch\f14
\u27841\'aa\'70\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u28961\'b5\'4c\loch\af14\hich\af14\dbch\f14 \u26448\'a7\'f7\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6
\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u-30467\'bb\'73\loch\af14\hich\af14\dbch\f14 \u20316\'a7\'40\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1
\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u29781\'b7\'e5\loch\af14\hich\af14\dbch\f14 \u30133\'b2\'ab\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3
\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba\loch\af14\hich\af14\dbch\f14 \u23481\'ae\'65\loch\af14\hich\af14\dbch\f14 \u22806\'a5\'7e
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25353\'ab\'f6
\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14 \u27171\'bc\'cb\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14
\u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14
\u21807\'b0\'df\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25937\'b1\'cf\loch\af14\hich\af14\dbch\f14 \u28639\'c0\'d9\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20840\'a5\'fe\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1
\loch\af14\hich\af14\dbch\f14 \u32681\'b8\'71\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28552\'bf\'ef\loch\af14\hich\af14\dbch\f14 \u25799\'be\'dc\loch\af14\hich\af14\dbch\f14 \u26356\'a7\'f3
\loch\af14\hich\af14\dbch\f14 \u25563\'b4\'ab\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20171\'a4\'b6
\loch\af14\hich\af14\dbch\f14 \u-29462\'bd\'e8\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-28672\'b0\'68\loch\af14\hich\af14\dbch\f14 \u22238\'a6\'5e\loch\af14\hich\af14\dbch\f14 \u-29444\'c1\'ca
\loch\af14\hich\af14\dbch\f14 \u-29513\'b6\'52\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u-29509\'b6\'4f\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u26263\'b7\'74\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14
\u21482\'a5\'75\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 90}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22825\'a4\'d1\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u24030\'a6\'7b\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u20801\'a4\'b9\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u26263\'b7\'74\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca
\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26399\'b4\'c1\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14
\u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u29305\'af\'53\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14
\u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u-28540\'c1\'d9\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4
\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14
\u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14 \u21508\'a6\'55\loch\af14\hich\af14\dbch\f14 \u24030\'a6\'7b\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df
\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u30064\'b2\'a7\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li360\ri0\sb100\sa100\sl120\slmult1\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin360\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \hich\af14\dbch\af14\loch\f14 5.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25298\'a9\'da\loch\af14\hich\af14\dbch\f14 \u32085\'b5\'b4\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1
\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14 \u-26619\'b6\'b5}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u-30206\'ad\'71}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21542\'a7\'5f\loch\af14\hich\af14\dbch\f14 \u21063\'ab\'68}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25298\'a9\'da\loch\af14\hich\af14\dbch\f14 \u32085\'b5\'b4\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef
\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14
\u26263\'b7\'74\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u-27021\'b3\'af\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f
\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-29524\'b3\'64\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4
\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u26263\'b7\'74\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u21806\'b0\'e2\loch\af14\hich\af14\dbch\f14
\u24615\'a9\'ca\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u29305\'af\'53\loch\af14\hich\af14\dbch\f14 \u27530\'ae\'ed
\loch\af14\hich\af14\dbch\f14 \u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u20405\'ab\'49\loch\af14\hich\af14\dbch\f14
\u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u-29879\'c3\'d2}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20294\'a6\'fd\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a
\loch\af14\hich\af14\dbch\f14 \u25298\'a9\'da\loch\af14\hich\af14\dbch\f14 \u32085\'b5\'b4\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df
\loch\af14\hich\af14\dbch\f14 \u23459\'ab\'c5\loch\af14\hich\af14\dbch\f14 \u21578\'a7\'69\loch\af14\hich\af14\dbch\f14 \u28961\'b5\'4c\loch\af14\hich\af14\dbch\f14 \u25928\'ae\'c4\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \hich\af14\dbch\af14\loch\f14 6.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-29524\'b3\'64\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u31105\'b8\'54\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u31684\'bd\'64\loch\af14\hich\af14\dbch\f14
\u22285\'b3\'f2\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4
\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u24773\'b1\'a1\loch\af14\hich\af14\dbch\f14 \u27841\'aa\'70\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \hich\af14\dbch\af14\loch\f14 SUN}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u26371\'b7\'7c
\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14
\u28961\'b5\'4c\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u24341\'a4\'de\loch\af14\hich\af14\dbch\f14 \u-29321\'b0\'5f\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u25910\'a6\'ac\loch\af14\hich\af14\dbch\f14 \u20837\'a4\'4a\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u28516\'bc\'ed\loch\af14\hich\af14\dbch\f14
\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c\loch\af14\hich\af14\dbch\f14 \u22833\'a5\'a2
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u29305\'af\'53\loch\af14\hich\af14\dbch\f14 \u21029\'a7\'4f\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14
\u-27245\'b6\'a1\loch\af14\hich\af14\dbch\f14 \u25509\'b1\'b5\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-27068\'aa\'fe\loch\af14\hich\af14\dbch\f14 \u-26968\'c0\'48\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u-30643\'ad\'6c\loch\af14\hich\af14\dbch\f14 \u29983\'a5\'cd\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u25074\'c3\'67
\loch\af14\hich\af14\dbch\f14 \u32624\'bb\'40\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u-29536\'ad\'74
\loch\af14\hich\af14\dbch\f14 \u-29524\'b3\'64}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-29994\'bd\'d7
\loch\af14\hich\af14\dbch\f14 \u-28647\'b3\'6f\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c\loch\af14\hich\af14\dbch\f14 \u22833\'a5\'a2\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u22914\'a6\'70\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14
\u29986\'b2\'a3\loch\af14\hich\af14\dbch\f14 \u29983\'a5\'cd}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20063\'a4\'5d\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3
\loch\af14\hich\af14\dbch\f14 \u-29994\'bd\'d7\loch\af14\hich\af14\dbch\f14 \u26159\'ac\'4f\loch\af14\hich\af14\dbch\f14 \u21542\'a7\'5f\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u20661\'b6\'c5
\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14 \u29702\'b2\'7a\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u29986\'b2\'a3
\loch\af14\hich\af14\dbch\f14 \u29983\'a5\'cd}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21363\'a7\'59\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid292297 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14 \u21069\'ab\'65\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51
\loch\af14\hich\af14\dbch\f14 \u21578\'a7\'69\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u-26619\'b6\'b5\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c
\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca
\loch\af14\hich\af14\dbch\f14 \u20134\'a5\'e7\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14
\u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u24773\'b1\'a1\loch\af14\hich\af14\dbch\f14 \u27841\'aa\'70\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-29524\'b3\'64
\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-26547\'c3\'42\loch\af14\hich\af14\dbch\f14 \u24230\'ab\'d7\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14
\u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-29994\'bd\'d7\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u22865\'ab\'b4\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u20405\'ab\'49\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u21547\'a7\'74\loch\af14\hich\af14\dbch\f14 \u-28594\'b9\'4c
\loch\af14\hich\af14\dbch\f14 \u22833\'a5\'a2}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182
\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3
\loch\af14\hich\af14\dbch\f14 \u26371\'b7\'7c\loch\af14\hich\af14\dbch\f14 \u-29307\'b6\'57\loch\af14\hich\af14\dbch\f14 \u-28594\'b9\'4c\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0
\loch\af14\hich\af14\dbch\f14 \u-29444\'c1\'ca\loch\af14\hich\af14\dbch\f14 \u-29513\'b6\'52\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9
\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u25903\'a4\'e4\loch\af14\hich\af14\dbch\f14 \u20184\'a5\'49\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-28207\'aa\'f7
\loch\af14\hich\af14\dbch\f14 \u-26547\'c3\'42\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u21363\'a7\'59\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u21069\'ab\'65
\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0
\loch\af14\hich\af14\dbch\f14 \u-28588\'b9\'46\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u28982\'b5\'4d\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41
\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u24030\'a6\'7b\loch\af14\hich\af14\dbch\f14
\u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u20801\'a4\'b9\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c\loch\af14\hich\af14\dbch\f14 \u25490\'b1\'c6\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u-27068\'aa\'fe
\loch\af14\hich\af14\dbch\f14 \u-26968\'c0\'48\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-30643\'ad\'6c\loch\af14\hich\af14\dbch\f14 \u29983\'a5\'cd\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca
\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-29472\'bd\'df\loch\af14\hich\af14\dbch\f14 \u20767\'c0\'76
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14
\u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0
\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce
\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 7.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7
\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14
\u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u21069\'ab\'65\loch\af14\hich\af14\dbch\f14 \u25345\'ab\'f9\loch\af14\hich\af14\dbch\f14 \u32396\'c4\'f2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u25928\'ae\'c4
\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u-31287\'c2\'c7\loch\af14\hich\af14\dbch\f14 \u-27977\'be\'50
\loch\af14\hich\af14\dbch\f14 \u27584\'b7\'b4\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2
\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u27491\'a5\'bf\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u21103\'b0\'c6\loch\af14\hich\af14\dbch\f14
\u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-32027\'ad\'59\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc
\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u-28555\'bf\'ed\loch\af14\hich\af14\dbch\f14 \u23432\'a6\'75\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57
\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14
\u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u30332\'b5\'6f\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71
\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u31435\'a5\'df\loch\af14\hich\af14\dbch\f14 \u21363\'a7\'59\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7
\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u22914\'a6\'70\loch\af14\hich\af14\dbch\f14 \u26524\'aa\'47\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40
\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69
\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u26234\'b4\'bc
\loch\af14\hich\af14\dbch\f14 \u24935\'bc\'7a\loch\af14\hich\af14\dbch\f14 \u-29535\'b0\'5d\loch\af14\hich\af14\dbch\f14 \u29986\'b2\'a3\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20405\'ab\'49
\loch\af14\hich\af14\dbch\f14 \u29359\'a5\'c7\loch\af14\hich\af14\dbch\f14 \u32034\'af\'c1\loch\af14\hich\af14\dbch\f14 \u-29472\'bd\'df\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0
\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21063\'ab\'68\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14
\u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u22343\'a7\'a1\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14
\u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u24460\'ab\'e1\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u24517\'a5\'b2\loch\af14\hich\af14\dbch\f14 \u-26880\'bb\'dd\loch\af14\hich\af14\dbch\f14 \u-27977\'be\'50\loch\af14\hich\af14\dbch\f14 \u27584\'b7\'b4\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u27491\'a5\'bf
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u21103\'b0\'c6\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 8.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57
\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14
\u20132\'a5\'e6\loch\af14\hich\af14\dbch\f14 \u20184\'a5\'49\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u25216\'a7\'de\loch\af14\hich\af14\dbch\f14 \u-30637\'b3\'4e\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea
\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6\loch\af14\hich\af14\dbch\f14 \u22343\'a7\'a1\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14
\u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u31649\'ba\'de\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14
\u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u23478\'ae\'61\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57
\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50
\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u22196\'c4\'59\loch\af14\hich\af14\dbch\f14 \u26684\'ae\'e6\loch\af14\hich\af14\dbch\f14 \u-28555\'bf\'ed\loch\af14\hich\af14\dbch\f14 \u23432\'a6\'75
\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-28647\'b3\'6f\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b
\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14
\u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20132\'a5\'e6\loch\af14\hich\af14\dbch\f14 \u20184\'a5\'49\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u24460\'ab\'e1\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14
\u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u32681\'b8\'71\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14 \u21462\'a8\'fa\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2
\loch\af14\hich\af14\dbch\f14 \u-26880\'bb\'dd\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u20877\'a6\'41\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69
\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 9.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50
\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u19988\'a5\'42
\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u24444\'a9\'bc\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u-27245\'b6\'a1
\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14
\u-26619\'b6\'b5\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21363\'a7\'59}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25793\'be\'d6\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SUN}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SOLARIS}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 JAVA}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 JINI}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 FORTE}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32249\'bb\'50}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 iPLANET}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0
\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SUN}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 SOLARIS}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 JAVA}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 JINI}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12289\'a1\'42}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 FORTE}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32249\'bb\'50}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 iPLANET}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6
\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u26381\'aa\'41\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14
\u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31456\'b3\'b9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50
\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u21697\'ab\'7e\loch\af14\hich\af14\dbch\f14 \u29260\'b5\'50\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14
\u-30184\'b0\'4f}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u31281\'ba\'d9\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31456\'b3\'b9\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u19988\'a5\'42\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a
\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u-28555\'bf\'ed\loch\af14\hich\af14\dbch\f14 \u23432\'a6\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0
\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce
\loch\af14\hich\af14\dbch\f14 \u-30335\'ad\'6e\loch\af14\hich\af14\dbch\f14 \u27714\'a8\'44\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3\loch\af14\hich\af14\dbch\f14 \u-30335\'ad\'6e
\loch\af14\hich\af14\dbch\f14 \u27714\'a8\'44\loch\af14\hich\af14\dbch\f14 \u29694\'b2\'7b\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u32178\'ba\'f4\loch\af14\hich\af14\dbch\f14
\u22336\'a7\'7d}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 http://www.sun.com/policies/trademarks}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u26597\'ac\'64\loch\af14\hich\af14\dbch\f14 \u-30110\'b8\'df
\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31456\'b3\'b9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u22343\'a7\'a1\loch\af14\hich\af14\dbch\f14
\u-26616\'b6\'b7\loch\af14\hich\af14\dbch\f14 \u31526\'b2\'c5\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u30410\'af\'71
\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 10.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u25919\'ac\'46
\loch\af14\hich\af14\dbch\f14 \u24220\'a9\'b2\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u-32027\'ad\'59\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20418\'ab\'59
\loch\af14\hich\af14\dbch\f14 \u30001\'a5\'d1\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u25919\'ac\'46\loch\af14\hich\af14\dbch\f14 \u24220\'a9\'b2\loch\af14\hich\af14\dbch\f14
\u21462\'a8\'fa\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u30001\'a5\'d1\loch\af14\hich\af14\dbch\f14 \u20195\'a5\'4e
\loch\af14\hich\af14\dbch\f14 \u-30616\'aa\'ed\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u25919\'ac\'46\loch\af14\hich\af14\dbch\f14 \u24220\'a9\'b2
\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u21462\'a8\'fa\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u30001\'a5\'d1\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u25919\'ac\'46\loch\af14\hich\af14\dbch\f14 \u24220\'a9\'b2\loch\af14\hich\af14\dbch\f14
\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20027\'a5\'44\loch\af14\hich\af14\dbch\f14 \u25215\'a9\'d3\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u-28855\'c2\'e0\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u23652\'bc\'68
\loch\af14\hich\af14\dbch\f14 \u32026\'af\'c5}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21462\'a8\'fa\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u-244
\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u29031\'b7\'d3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 48 CFR 227.7201}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21040\'a8\'ec}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 227.7202-4 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3
\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u-27086\'a8\'be\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21462\'a8\'fa
\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32249\'bb\'50}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 48 CFR 2.101}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 12.212 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3
\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u30001\'a5\'d1\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u-27086\'a8\'be\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1
\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21462\'a8\'fa\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u25919\'ac\'46\loch\af14\hich\af14\dbch\f14 \u24220\'a9\'b2\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14
\u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u-26968\'c0\'48\loch\af14\hich\af14\dbch\f14 \u-27068\'aa\'fe\loch\af14\hich\af14\dbch\f14 \u25991\'a4\'e5
\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14
\u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77
\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 11.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u28310\'b7\'c7\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u-30156\'b6\'44\loch\af14\hich\af14\dbch\f14 \u-30177\'b3\'5e\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e
\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u21152\'a5\'5b
\loch\af14\hich\af14\dbch\f14 \u24030\'a6\'7b\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db\loch\af14\hich\af14\dbch\f14
\u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u32654\'ac\'fc\loch\af14\hich\af14\dbch\f14 \u22283\'b0\'ea\loch\af14\hich\af14\dbch\f14 \u-32657\'c1\'70\loch\af14\hich\af14\dbch\f14 \u-28506\'a8\'b9
\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14
\u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u21496\'a5\'71\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u31649\'ba\'de\loch\af14\hich\af14\dbch\f14 \u-28860\'c1\'d2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u-28552\'bf\'ef
\loch\af14\hich\af14\dbch\f14 \u25799\'be\'dc\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 12.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u29544\'bf\'57\loch\af14\hich\af14\dbch\f14 \u31435\'a5\'df\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-32027\'ad\'59
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14
\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b
\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u28961\'b5\'4c\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u22519\'b0\'f5\loch\af14\hich\af14\dbch\f14
\u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u26178\'ae\'c9\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9
\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u21435\'a5\'68\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1
\loch\af14\hich\af14\dbch\f14 \u20998\'a4\'c0\loch\af14\hich\af14\dbch\f14 \u24460\'ab\'e1\loch\af14\hich\af14\dbch\f14 \u20173\'a4\'b4\loch\af14\hich\af14\dbch\f14 \u28982\'b5\'4d\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14
\u25928\'ae\'c4\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u24799\'b1\'a9\loch\af14\hich\af14\dbch\f14 \u21034\'a7\'52\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3
\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u20998\'a4\'c0\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u30070\'b7\'ed
\loch\af14\hich\af14\dbch\f14 \u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14 \u20154\'a4\'48\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u22833\'a5\'a2\loch\af14\hich\af14\dbch\f14
\u21435\'a5\'68\loch\af14\hich\af14\dbch\f14 \u32224\'bd\'6c\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26178\'ae\'c9
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14
\u31435\'a5\'df\loch\af14\hich\af14\dbch\f14 \u21363\'a7\'59\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 13.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23436\'a7\'b9\loch\af14\hich\af14\dbch\f14 \u25972\'be\'e3\loch\af14\hich\af14\dbch\f14 \u24615\'a9\'ca}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20418\'ab\'59\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23601\'b4\'4e\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9
\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u19978\'a4\'57\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20840\'a5\'fe\loch\af14\hich\af14\dbch\f14
\u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u23427\'a5\'a6\loch\af14\hich\af14\dbch\f14 \u21462\'a8\'fa
\loch\af14\hich\af14\dbch\f14 \u20195\'a5\'4e\loch\af14\hich\af14\dbch\f14 \u20808\'a5\'fd\loch\af14\hich\af14\dbch\f14 \u21069\'ab\'65\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14
\u26178\'ae\'c9\loch\af14\hich\af14\dbch\f14 \u23384\'a6\'73\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u21475\'a4\'66\loch\af14\hich\af14\dbch\f14 \u-26579\'c0\'59\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u26360\'ae\'d1\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1
\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71\loch\af14\hich\af14\dbch\f14 \u-30198\'b0\'54\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u24314\'ab\'d8\loch\af14\hich\af14\dbch\f14 \u-29840\'c4\'b3
\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-27021\'b3\'af\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1
\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u20778\'c0\'75\loch\af14\hich\af14\dbch\f14 \u20808\'a5\'fd\loch\af14\hich\af14\dbch\f14
\u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26399\'b4\'c1\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba\loch\af14\hich\af14\dbch\f14 \u30070\'b7\'ed\loch\af14\hich\af14\dbch\f14 \u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14 \u20154\'a4\'48\loch\af14\hich\af14\dbch\f14 \u-26919\'c2\'f9
\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-27245\'b6\'a1\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14
\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u22577\'b3\'f8\loch\af14\hich\af14\dbch\f14 \u20729\'bb\'f9\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-30206\'ad\'71
\loch\af14\hich\af14\dbch\f14 \u-29444\'c1\'ca\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-30067\'bb\'7b\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50
\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71\loch\af14\hich\af14\dbch\f14 \u-30198\'b0\'54\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u-30627\'bd\'c4\loch\af14\hich\af14\dbch\f14 \u31361\'ac\'f0\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14
\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u-26919\'c2\'f9\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u20195\'a5\'4e\loch\af14\hich\af14\dbch\f14 \u-30616\'aa\'ed\loch\af14\hich\af14\dbch\f14 \u26360\'ae\'d1\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1
\loch\af14\hich\af14\dbch\f14 \u31805\'c3\'b1\loch\af14\hich\af14\dbch\f14 \u32626\'b8\'70\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21542\'a7\'5f\loch\af14\hich\af14\dbch\f14 \u21063\'ab\'68\loch\af14\hich\af14\dbch\f14
\u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u28961\'b5\'4c\loch\af14\hich\af14\dbch\f14 \u25304\'a9\'eb\loch\af14\hich\af14\dbch\f14
\u26463\'a7\'f4\loch\af14\hich\af14\dbch\f14 \u21147\'a4\'4f\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par
\par }\pard \ltrpar\qc \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-31950\'af\'f7\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9
\loch\af14\hich\af14\dbch\f14 \u20805\'a5\'52\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14
\u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58
\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14
\u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u-30206\'ad\'71
\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14
\u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77
\loch\af14\hich\af14\dbch\f14 \u32681\'b8\'71\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u23560\'b1\'4d\loch\af14\hich\af14\dbch\f14 \u-27264\'aa\'f9\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce
\loch\af14\hich\af14\dbch\f14 \u-30050\'bb\'79\loch\af14\hich\af14\dbch\f14 \u25033\'c0\'b3\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69
\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14
\u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db
\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u-30050\'bb\'79\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db
\loch\af14\hich\af14\dbch\f14 \u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u-30237\'b8\'d1\loch\af14\hich\af14\dbch\f14 \u-28213\'c4\'c0\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u-32027\'ad\'59
\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b
\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14
\u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4
\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u21547\'a7\'74\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14
\u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3
\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u-32268\'ad\'50\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u30683\'a5\'d9\loch\af14\hich\af14\dbch\f14 \u30462\'ac\'de
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u25033\'c0\'b3\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14
\u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u28310\'b7\'c7\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 A.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d
\loch\af14\hich\af14\dbch\f14 \u-27253\'b6\'7d\loch\af14\hich\af14\dbch\f14 \u30332\'b5\'6f\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-29879\'c3\'d2
\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26681\'ae\'da\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9
\loch\af14\hich\af14\dbch\f14 \u21332\'a8\'f3\loch\af14\hich\af14\dbch\f14 \u-29840\'c4\'b3\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da
\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14
\u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u24341\'a4\'de\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u20341\'a8\'d6
\loch\af14\hich\af14\dbch\f14 \u20837\'a4\'4a\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u25991\'a4\'e5\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14
\u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u8220\'a1\'a7}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 README}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u8221\'a1\'a8\loch\af14\hich\af14\dbch\f14 \u27284\'c0\'c9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4
\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u-28688\'ad\'7a\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26463\'a7\'f4
\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u20363\'a8\'d2\loch\af14\hich\af14\dbch\f14 \u22806\'a5\'7e\loch\af14\hich\af14\dbch\f14 \u24773\'b1\'a1\loch\af14\hich\af14\dbch\f14
\u27841\'aa\'70\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20294\'a6\'fd\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28647\'b3\'6f\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14
\u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u20805\'a5\'52\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Java }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25216\'a7\'de\loch\af14\hich\af14\dbch\f14 \u-30637\'b3\'4e\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9
\loch\af14\hich\af14\dbch\f14 \u26463\'a7\'f4\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20813\'a7\'4b
\loch\af14\hich\af14\dbch\f14 \u-29509\'b6\'4f\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44
\loch\af14\hich\af14\dbch\f14 \u25490\'b1\'c6\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14
\u-28855\'c2\'e0\loch\af14\hich\af14\dbch\f14 \u-29805\'c5\'fd\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u21463\'a8\'fc\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c
\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20839\'a4\'ba\loch\af14\hich\af14\dbch\f14
\u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u-30457\'bd\'c6\loch\af14\hich\af14\dbch\f14 \u-30467\'bb\'73\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce
\loch\af14\hich\af14\dbch\f14 \u24050\'a4\'77\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u23436\'a7\'b9\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u19988\'a5\'42\loch\af14\hich\af14\dbch\f14
\u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u-30206\'ad\'71\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u-30163\'b3\'5d\loch\af14\hich\af14\dbch\f14 \u-30200\'ad\'70\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42
\loch\af14\hich\af14\dbch\f14 \u-27253\'b6\'7d\loch\af14\hich\af14\dbch\f14 \u30332\'b5\'6f\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u28204\'b4\'fa\loch\af14\hich\af14\dbch\f14 \u-30106\'b8\'d5
\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 B.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77
\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 README}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang1033\langfe3076\loch\af14\hich\af14\dbch\af14\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12301\'a1\'76}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-29824\'c5\'aa\loch\af14\hich\af14\dbch\f14 \u25105\'a7\'da\loch\af14\hich\af14\dbch\f14 \u27284\'c0\'c9
\loch\af14\hich\af14\dbch\f14 \u21015\'a6\'43\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee
\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u22806\'a5\'7e\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41\loch\af14\hich\af14\dbch\f14 \u20294\'a6\'fd
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57
\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25216\'a7\'de\loch\af14\hich\af14\dbch\f14 \u-30637\'b3\'4e\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u31526\'b2\'c5
\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u19979\'a4\'55\loch\af14\hich\af14\dbch\f14 \u21015\'a6\'43\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14
\u26178\'ae\'c9\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44
\loch\af14\hich\af14\dbch\f14 \u23560\'b1\'4d\loch\af14\hich\af14\dbch\f14 \u23660\'c4\'dd\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14
\u31227\'b2\'be\loch\af14\hich\af14\dbch\f14 \u-28855\'c2\'e0\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u20813\'a7\'4b\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76
\loch\af14\hich\af14\dbch\f14 \u-29509\'b6\'4f\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20934\'ad\'e3\loch\af14\hich\af14\dbch\f14 \u-30159\'b3\'5c\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14
\u-28211\'ad\'ab\loch\af14\hich\af14\dbch\f14 \u-30467\'bb\'73\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-230\'a1\'47}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (i) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47
\loch\af14\hich\af14\dbch\f14 \u23436\'a7\'b9\loch\af14\hich\af14\dbch\f14 \u25972\'be\'e3\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7
\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u19988\'a5\'42\loch\af14\hich\af14\dbch\f14 \u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u20316\'a7\'40\loch\af14\hich\af14\dbch\f14
\u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u-26968\'c0\'48\loch\af14\hich\af14\dbch\f14 \u-27068\'aa\'fe\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u20998\'a4\'c0\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14
\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u22519\'b0\'f5\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6
\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14
\u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u-229\'a1\'46}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (ii) }{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b
\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u-26616\'b6\'b7\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u22686\'bc\'57\loch\af14\hich\af14\dbch\f14 \u21152\'a5\'5b\loch\af14\hich\af14\dbch\f14 \u-26513\'c5\'e3
\loch\af14\hich\af14\dbch\f14 \u-31657\'b5\'db\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u-28211\'ad\'ab\loch\af14\hich\af14\dbch\f14 \u-30335\'ad\'6e\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u21151\'a5\'5c\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u-229\'a1\'46}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (iii) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47
\loch\af14\hich\af14\dbch\f14 \u25836\'c0\'c0\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u26367\'b4\'c0\loch\af14\hich\af14\dbch\f14 \u25563\'b4\'ab\loch\af14\hich\af14\dbch\f14
\u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u20803\'a4\'b8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-27068\'aa\'fe\loch\af14\hich\af14\dbch\f14 \u21152\'a5\'5b
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-229\'a1\'46}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (iv) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26410\'a5\'bc\loch\af14\hich\af14\dbch\f14 \u31227\'b2\'be\loch\af14\hich\af14\dbch\f14 \u-27036\'b0\'a3
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u-29814\'c5\'dc\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u21547\'a7\'74\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4
\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u23560\'b1\'4d\loch\af14\hich\af14\dbch\f14 \u23660\'c4\'dd\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-30038\'bb\'a1
\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20844\'a4\'bd\loch\af14\hich\af14\dbch\f14 \u21578\'a7\'69\loch\af14\hich\af14\dbch\f14 \u-229\'a1\'46}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (v) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20677\'b6\'c8\loch\af14\hich\af14\dbch\f14 \u20381\'a8\'cc\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da
\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u-29833\'c5\'40}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21033\'a7\'51\loch\af14\hich\af14\dbch\f14 \u30410\'af\'71
\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8
\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u-32268\'ad\'50\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14
\u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u-229\'a1\'46\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (vi) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21516\'a6\'50\loch\af14\hich\af14\dbch\f14 \u24847\'b7\'4e\loch\af14\hich\af14\dbch\f14 \u-427\'a1\'52
\loch\af14\hich\af14\dbch\f14 \u-32027\'ad\'59\loch\af14\hich\af14\dbch\f14 \u22240\'a6\'5d\loch\af14\hich\af14\dbch\f14 \u20351\'a8\'cf\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce
\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14
\u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76
\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9
\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u23566\'be\'c9\loch\af14\hich\af14\dbch\f14 \u-32268\'ad\'50\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u-28640\'b3\'79
\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u31532\'b2\'c4\loch\af14\hich\af14\dbch\f14 \u19977\'a4\'54\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14
\u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u27714\'a8\'44\loch\af14\hich\af14\dbch\f14 \u20767\'c0\'76\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-30156\'b6\'44\loch\af14\hich\af14\dbch\f14 \u-30177\'b3\'5e
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u27861\'aa\'6b\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u21205\'b0\'ca
\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u30001\'a5\'d1\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14
\u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u29983\'a5\'cd\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u25613\'b7\'6c
\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u25903\'a4\'e4\loch\af14\hich\af14\dbch\f14
\u20986\'a5\'58\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u-29524\'b3\'64\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d
\loch\af14\hich\af14\dbch\f14 \u-30237\'b8\'d1\loch\af14\hich\af14\dbch\f14 \u-28207\'aa\'f7\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-29509\'b6\'4f\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u25324\'ac\'41\loch\af14\hich\af14\dbch\f14 \u24459\'ab\'df
\loch\af14\hich\af14\dbch\f14 \u24107\'ae\'76\loch\af14\hich\af14\dbch\f14 \u-29509\'b6\'4f}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41
\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u-28753\'c5\'47
\loch\af14\hich\af14\dbch\f14 \u-29833\'c5\'40\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3\loch\af14\hich\af14\dbch\f14 \u32102\'b5\'b9\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u-30500\'b8\'c9
\loch\af14\hich\af14\dbch\f14 \u20767\'c0\'76\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 C.\tab Java }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25216\'a7\'de\loch\af14\hich\af14\dbch\f14 \u-30637\'b3\'4e\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43
\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u24314\'ab\'d8\loch\af14\hich\af14\dbch\f14 \u31435\'a5\'df\loch\af14\hich\af14\dbch\f14
\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u24335\'a6\'a1\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51\loch\af14\hich\af14\dbch\f14 \u27161\'bc\'d0\loch\af14\hich\af14\dbch\f14 \u31034\'a5\'dc
\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 java}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12301\'a1\'76
\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 javax}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12301\'a1\'76
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 sun}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12301\'a1\'76
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u22312\'a6\'62\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u21629\'a9\'52\loch\af14\hich\af14\dbch\f14 \u21517\'a6\'57\loch\af14\hich\af14\dbch\f14 \u21332\'a8\'f3\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u20013\'a4\'a4\loch\af14\hich\af14\dbch\f14
\u25351\'ab\'fc\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u-26530\'c3\'fe\loch\af14\hich\af14\dbch\f14 \u20284\'a6\'fc\loch\af14\hich\af14\dbch\f14 \u21332\'a8\'f3\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77
\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-26530\'c3\'fe\loch\af14\hich\af14\dbch\f14 \u21029\'a7\'4f\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u20171\'a4\'b6
\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u23376\'a4\'6c\loch\af14\hich\af14\dbch\f14 \u22871\'ae\'4d\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u-29814\'c5\'dc
\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \uc1\u29234\'3f\loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20063\'a4\'5d
\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-30549\'b3\'51
\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-32763\'aa\'cc\loch\af14\hich\af14\dbch\f14 \u24314\'ab\'d8\loch\af14\hich\af14\dbch\f14 \u31435\'a5\'df
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20462\'ad\'d7\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3\loch\af14\hich\af14\dbch\f14 \u31561\'b5\'a5
\loch\af14\hich\af14\dbch\f14 \u-26530\'c3\'fe\loch\af14\hich\af14\dbch\f14 \u21029\'a7\'4f\loch\af14\hich\af14\dbch\f14 \u12289\'a1\'42\loch\af14\hich\af14\dbch\f14 \u20171\'a4\'b6\loch\af14\hich\af14\dbch\f14 \u-26782\'ad\'b1
\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u23376\'a4\'6c\loch\af14\hich\af14\dbch\f14 \u22871\'ae\'4d\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u25913\'a7\'ef\loch\af14\hich\af14\dbch\f14 \u-29814\'c5\'dc\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4
\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \uc1\u29234\'3f\loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 D.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14 \u22987\'a9\'6c\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u12300\'a1\'75
\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u12301\'a1\'76\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0
\loch\af14\hich\af14\dbch\f14 \u21253\'a5\'5d\loch\af14\hich\af14\dbch\f14 \u21547\'a7\'74\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14 \u22987\'a9\'6c\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-229\'a1\'46}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-27036\'b0\'a3\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0
\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c\loch\af14\hich\af14\dbch\f14 \u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14
\u30906\'bd\'54\loch\af14\hich\af14\dbch\f14 \u-32756\'a6\'d3\loch\af14\hich\af14\dbch\f14 \u32102\'b5\'b9\loch\af14\hich\af14\dbch\f14 \u20104\'a4\'a9\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76}{\rtlch\fcs1
\af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid292297 \loch\af14\hich\af14\dbch\f14 \uc2\u-244\'a1\'41}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25552\'b4\'a3\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec
\loch\af14\hich\af14\dbch\f14 \u22987\'a9\'6c\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u21807\'b0\'df\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14
\u30446\'a5\'d8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20418\'ab\'59\loch\af14\hich\af14\dbch\f14 \u26681\'ae\'da\loch\af14\hich\af14\dbch\f14 \u25818\'be\'da\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u20316\'a7\'40
\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u24744\'b1\'7a\loch\af14\hich\af14\dbch\f14 \u21443\'b0\'d1\loch\af14\hich\af14\dbch\f14 \u-32765\'a6\'d2\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7
\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14 \u-26786\'ab\'44\loch\af14\hich\af14\dbch\f14 \u32147\'b8\'67\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58
\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u26126\'a9\'fa\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u21407\'ad\'ec\loch\af14\hich\af14\dbch\f14
\u22987\'a9\'6c\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58\loch\af14\hich\af14\dbch\f14 \u19981\'a4\'a3\loch\af14\hich\af14\dbch\f14 \u24471\'b1\'6f\loch\af14\hich\af14\dbch\f14 \u-28211\'ad\'ab\loch\af14\hich\af14\dbch\f14 \u26032\'b7\'73
\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li360\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin360\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \fi-360\li720\ri0\nowidctlpar\tx720\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin720\itap0\pararsid14424342 {\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 E.\tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u31532\'b2\'c4\loch\af14\hich\af14\dbch\f14 \u19977\'a4\'54\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8
\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 THIRDPARTYLICENSEREADME.txt file}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u21547\'a7\'74\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6
\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u26576\'ac\'59\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7
\loch\af14\hich\af14\dbch\f14 \u-28440\'b3\'a1\loch\af14\hich\af14\dbch\f14 \u20998\'a4\'c0\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u20182\'a5\'4c
\loch\af14\hich\af14\dbch\f14 \u29256\'aa\'a9\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u-28646\'b3\'71\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d
\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43\loch\af14\hich\af14\dbch\f14
\u-27036\'b0\'a3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 THIRDPARTYLICENSEREADME.txt file}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang2052\langfe3076\loch\af14\hich\af14\dbch\af14\langnp2052\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u21015\'a6\'43\loch\af14\hich\af14\dbch\f14 \u20986\'a5\'58
\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u31532\'b2\'c4\loch\af14\hich\af14\dbch\f14 \u19977\'a4\'54\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u-27253\'b6\'7d
\loch\af14\hich\af14\dbch\f14 \u25918\'a9\'f1\loch\af14\hich\af14\dbch\f14 \u30908\'bd\'58}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 /}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20849\'a6\'40
\loch\af14\hich\af14\dbch\f14 \u20139\'a8\'c9\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8
\loch\af14\hich\af14\dbch\f14 \u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u26781\'b1\'f8\loch\af14\hich\af14\dbch\f14 \u20214\'a5\'f3\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14
\u22806\'a5\'7e\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20108\'a4\'47\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u20301\'a6\'ec\loch\af14\hich\af14\dbch\f14 \u25480\'b1\'c2
\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u21512\'a6\'58\loch\af14\hich\af14\dbch\f14 \u32004\'ac\'f9\loch\af14\hich\af14\dbch\f14 \u31532\'b2\'c4}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 5}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u31532\'b2\'c4}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 6}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u27454\'b4\'da\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25298\'a9\'da
\loch\af14\hich\af14\dbch\f14 \u32085\'b5\'b4\loch\af14\hich\af14\dbch\f14 \u25812\'be\'e1\loch\af14\hich\af14\dbch\f14 \u20445\'ab\'4f\loch\af14\hich\af14\dbch\f14 \u20107\'a8\'c6\loch\af14\hich\af14\dbch\f14 \u-26619\'b6\'b5
\loch\af14\hich\af14\dbch\f14 \u21450\'a4\'ce\loch\af14\hich\af14\dbch\f14 \u32681\'b8\'71\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14 \u20043\'a4\'a7\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad
\loch\af14\hich\af14\dbch\f14 \u21046\'a8\'ee\loch\af14\hich\af14\dbch\f14 \u-30321\'b3\'57\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u-28567\'be\'41\loch\af14\hich\af14\dbch\f14 \u29992\'a5\'ce
\loch\af14\hich\af14\dbch\f14 \u26044\'a9\'f3\loch\af14\hich\af14\dbch\f14 \u26412\'a5\'bb\loch\af14\hich\af14\dbch\f14 \u27425\'a6\'b8\loch\af14\hich\af14\dbch\f14 \u25955\'b4\'b2\loch\af14\hich\af14\dbch\f14 \u20296\'a7\'47\loch\af14\hich\af14\dbch\f14
\u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u25152\'a9\'d2\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par
\par }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0 \b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 F.}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee\loch\af14\hich\af14\dbch\f14 \u20405\'ab\'49
\loch\af14\hich\af14\dbch\f14 \u23475\'ae\'60}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{
\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3\loch\af14\hich\af14\dbch\f14 \u-28961\'b3\'6e
\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4
\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14 \u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u20027\'a5\'44\loch\af14\hich\af14\dbch\f14 \u24373\'b1\'69\loch\af14\hich\af14\dbch\f14
\u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u-32515\'af\'e0\loch\af14\hich\af14\dbch\f14 \u25104\'a6\'a8\loch\af14\hich\af14\dbch\f14 \u28858\'ac\'b0\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u20309\'a6\'f3
\loch\af14\hich\af14\dbch\f14 \u30693\'aa\'be\loch\af14\hich\af14\dbch\f14 \u-29864\'c3\'d1\loch\af14\hich\af14\dbch\f14 \u29986\'b2\'a3\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u20405\'ab\'49\loch\af14\hich\af14\dbch\f14 \u27402\'c5\'76\loch\af14\hich\af14\dbch\f14 \u32034\'af\'c1\loch\af14\hich\af14\dbch\f14 \u-29472\'bd\'df\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef
\loch\af14\hich\af14\dbch\f14 \u-29599\'b6\'48\loch\af14\hich\af14\dbch\f14 \u24460\'ab\'e1\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u20219\'a5\'f4\loch\af14\hich\af14\dbch\f14 \u19968\'a4\'40\loch\af14\hich\af14\dbch\f14
\u26041\'a4\'e8\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69\loch\af14\hich\af14\dbch\f14 \u31435\'a5\'df\loch\af14\hich\af14\dbch\f14 \u21363\'a7\'59\loch\af14\hich\af14\dbch\f14 \u32066\'b2\'d7\loch\af14\hich\af14\dbch\f14 \u27490\'a4\'ee
\loch\af14\hich\af14\dbch\f14 \u27492\'a6\'b9\loch\af14\hich\af14\dbch\f14 \u21332\'a8\'f3\loch\af14\hich\af14\dbch\f14 \u-29840\'c4\'b3\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par
\par }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0 \b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 G.}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \tab }{\rtlch\fcs1 \ab\af14\afs20 \ltrch\fcs0
\b\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u23433\'a6\'77\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d
\loch\af14\hich\af14\dbch\f14 \u-32278\'a6\'db\loch\af14\hich\af14\dbch\f14 \u21205\'b0\'ca\loch\af14\hich\af14\dbch\f14 \u26356\'a7\'f3\loch\af14\hich\af14\dbch\f14 \u26032\'b7\'73}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-28961\'b3\'6e\loch\af14\hich\af14\dbch\f14 \u-25900\'c5\'e9\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u23433\'a6\'77\loch\af14\hich\af14\dbch\f14 \u-30499\'b8\'cb\loch\af14\hich\af14\dbch\f14 \u21644\'a9\'4d\loch\af14\hich\af14\dbch\f14 \u-32278\'a6\'db\loch\af14\hich\af14\dbch\f14 \u21205\'b0\'ca
\loch\af14\hich\af14\dbch\f14 \u26356\'a7\'f3\loch\af14\hich\af14\dbch\f14 \u26032\'b7\'73\loch\af14\hich\af14\dbch\f14 \u-28594\'b9\'4c\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b\loch\af14\hich\af14\dbch\f14 \u21521\'a6\'56}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun (}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25110\'a9\'ce\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u26381\'aa\'41
\loch\af14\hich\af14\dbch\f14 \u21209\'b0\'c8\loch\af14\hich\af14\dbch\f14 \u20379\'a8\'d1\loch\af14\hich\af14\dbch\f14 \u25033\'c0\'b3\loch\af14\hich\af14\dbch\f14 \u21830\'b0\'d3}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 ) }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u20659\'b6\'c7\loch\af14\hich\af14\dbch\f14 \u-28872\'bf\'e9\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u29305\'af\'53\loch\af14\hich\af14\dbch\f14 \u23450\'a9\'77\loch\af14\hich\af14\dbch\f14 \u-28594\'b9\'4c\loch\af14\hich\af14\dbch\f14 \u31243\'b5\'7b
\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3\loch\af14\hich\af14\dbch\f14 \u-27056\'ad\'ad\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6
\loch\af14\hich\af14\dbch\f14 \u20197\'a5\'48\loch\af14\hich\af14\dbch\f14 \u24171\'c0\'b0\loch\af14\hich\af14\dbch\f14 \u21161\'a7\'55}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u29702\'b2\'7a\loch\af14\hich\af14\dbch\f14 \u-30237\'b8\'d1\loch\af14\hich\af14\dbch\f14 \u20006\'a8\'c3
\loch\af14\hich\af14\dbch\f14 \u23565\'b9\'ef\loch\af14\hich\af14\dbch\f14 \u20854\'a8\'e4\loch\af14\hich\af14\dbch\f14 \u-28622\'b6\'69\loch\af14\hich\af14\dbch\f14 \u-30644\'a6\'e6\loch\af14\hich\af14\dbch\f14 \u20778\'c0\'75
\loch\af14\hich\af14\dbch\f14 \u21270\'a4\'c6\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u26410\'a5\'bc
\loch\af14\hich\af14\dbch\f14 \u23559\'b1\'4e\loch\af14\hich\af14\dbch\f14 \u-28647\'b3\'6f\loch\af14\hich\af14\dbch\f14 \u20123\'a8\'c7\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6
\loch\af14\hich\af14\dbch\f14 \u-32249\'bb\'50\loch\af14\hich\af14\dbch\f14 \u20491\'ad\'d3\loch\af14\hich\af14\dbch\f14 \u20154\'a4\'48\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u21487\'a5\'69
\loch\af14\hich\af14\dbch\f14 \u-29864\'c3\'d1\loch\af14\hich\af14\dbch\f14 \u21029\'a7\'4f\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u-30198\'b0\'54\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6
\loch\af14\hich\af14\dbch\f14 \u-32657\'c1\'70\loch\af14\hich\af14\dbch\f14 \u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32027\'ad\'59
\loch\af14\hich\af14\dbch\f14 \u-30335\'ad\'6e\loch\af14\hich\af14\dbch\f14 \u26597\'ac\'64\loch\af14\hich\af14\dbch\f14 \u25214\'a7\'e4\loch\af14\hich\af14\dbch\f14 \u26356\'a7\'f3\loch\af14\hich\af14\dbch\f14 \u22810\'a6\'68}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \hich\af14\dbch\af14\loch\f14 Sun }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u25910\'a6\'ac\loch\af14\hich\af14\dbch\f14 \u-26938\'b6\'b0\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba
\loch\af14\hich\af14\dbch\f14 \u-30094\'b8\'d3\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u26009\'ae\'c6\loch\af14\hich\af14\dbch\f14 \u30340\'aa\'ba\loch\af14\hich\af14\dbch\f14 \u30456\'ac\'db
\loch\af14\hich\af14\dbch\f14 \u-27172\'c3\'f6\loch\af14\hich\af14\dbch\f14 \u-29497\'b8\'ea\loch\af14\hich\af14\dbch\f14 \u-30198\'b0\'54\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-30005\'bd\'d0
\loch\af14\hich\af14\dbch\f14 \u-30166\'b3\'58\loch\af14\hich\af14\dbch\f14 \u21839\'b0\'dd}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid292297 \hich\af14\dbch\af14\loch\f14
http://java.com/data/}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u12290\'a1\'43}{\rtlch\fcs1 \af14\afs20
\ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }\pard \ltrpar\qj \li0\ri0\nowidctlpar\wrapdefault\toplinepunct\aspalpha\aspnum\faauto\rin0\lin0\itap0\pararsid14424342 {\rtlch\fcs1 \af14\afs20 \ltrch\fcs0
\fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\par }{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342 \loch\af14\hich\af14\dbch\f14 \uc2\u-32027\'ad\'59\loch\af14\hich\af14\dbch\f14 \u26377\'a6\'b3
\loch\af14\hich\af14\dbch\f14 \u21839\'b0\'dd\loch\af14\hich\af14\dbch\f14 \u-26548\'c3\'44\loch\af14\hich\af14\dbch\f14 \u-244\'a1\'41\loch\af14\hich\af14\dbch\f14 \u-30005\'bd\'d0\loch\af14\hich\af14\dbch\f14 \u-32268\'ad\'50
\loch\af14\hich\af14\dbch\f14 \u20989\'a8\'e7\loch\af14\hich\af14\dbch\f14 \u-230\'a1\'47}{\rtlch\fcs1 \af14\afs20 \ltrch\fcs0 \fs20\lang5130\langfe3076\loch\af14\hich\af14\dbch\af14\langnp5130\langfenp3076\insrsid4941877\charrsid14424342
\hich\af14\dbch\af14\loch\f14 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, USA
\par }}

Some files were not shown because too many files have changed in this diff Show More