mirror of
https://github.com/sstent/Scripts.git
synced 2026-03-13 16:35:46 +00:00
added scripts and SUPERMICRO
This commit is contained in:
30
ChangeDNS-WINS-NJ.ps1
Normal file
30
ChangeDNS-WINS-NJ.ps1
Normal 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
25
EnableKerbLog.vbs
Normal 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
102
EnumSites.vbs
Normal 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
|
||||
226
SFTP File Manager-Listings.vbs
Normal file
226
SFTP File Manager-Listings.vbs
Normal 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
|
||||
265
SFTP File Manager-Listings_arrayzip.vbs
Normal file
265
SFTP File Manager-Listings_arrayzip.vbs
Normal 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
|
||||
225
SFTP File Manager-Listings_folderzip.vbs
Normal file
225
SFTP File Manager-Listings_folderzip.vbs
Normal 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
|
||||
BIN
SUPERMICRO/IPMIView/DrvRedirNative.dll
Normal file
BIN
SUPERMICRO/IPMIView/DrvRedirNative.dll
Normal file
Binary file not shown.
93
SUPERMICRO/IPMIView/IPMIView.properties
Normal file
93
SUPERMICRO/IPMIView/IPMIView.properties
Normal 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
|
||||
BIN
SUPERMICRO/IPMIView/IPMIView20.exe
Normal file
BIN
SUPERMICRO/IPMIView/IPMIView20.exe
Normal file
Binary file not shown.
1
SUPERMICRO/IPMIView/IPMIView20.ja
Normal file
1
SUPERMICRO/IPMIView/IPMIView20.ja
Normal file
@@ -0,0 +1 @@
|
||||
%IF_EXISTS%("MAX_JAVA_HEAP", "@MAX_JAVA_HEAP@256m")
|
||||
BIN
SUPERMICRO/IPMIView/IPMIView20.jar
Normal file
BIN
SUPERMICRO/IPMIView/IPMIView20.jar
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/IPMIView20.pdf
Normal file
BIN
SUPERMICRO/IPMIView/IPMIView20.pdf
Normal file
Binary file not shown.
1
SUPERMICRO/IPMIView/IPMIView20.sp
Normal file
1
SUPERMICRO/IPMIView/IPMIView20.sp
Normal file
@@ -0,0 +1 @@
|
||||
java.library.path=.
|
||||
BIN
SUPERMICRO/IPMIView/IPMIViewSuperBlade.pdf
Normal file
BIN
SUPERMICRO/IPMIView/IPMIViewSuperBlade.pdf
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/Ipmitrap.ico
Normal file
BIN
SUPERMICRO/IPMIView/Ipmitrap.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
SUPERMICRO/IPMIView/Ipmiview.ico
Normal file
BIN
SUPERMICRO/IPMIView/Ipmiview.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
SUPERMICRO/IPMIView/JViewerX9.exe
Normal file
BIN
SUPERMICRO/IPMIView/JViewerX9.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/JViewerX9.jar
Normal file
BIN
SUPERMICRO/IPMIView/JViewerX9.jar
Normal file
Binary file not shown.
2
SUPERMICRO/IPMIView/JViewerX9.sp
Normal file
2
SUPERMICRO/IPMIView/JViewerX9.sp
Normal file
@@ -0,0 +1,2 @@
|
||||
java.library.path=.
|
||||
|
||||
1261
SUPERMICRO/IPMIView/ReleaseNote.txt
Normal file
1261
SUPERMICRO/IPMIView/ReleaseNote.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
SUPERMICRO/IPMIView/SharedLibrary32.dll
Normal file
BIN
SUPERMICRO/IPMIView/SharedLibrary32.dll
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/SharedLibrary64.dll
Normal file
BIN
SUPERMICRO/IPMIView/SharedLibrary64.dll
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/TrapReceiver.exe
Normal file
BIN
SUPERMICRO/IPMIView/TrapReceiver.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/TrapView.jar
Normal file
BIN
SUPERMICRO/IPMIView/TrapView.jar
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/Updater.exe
Normal file
BIN
SUPERMICRO/IPMIView/Updater.exe
Normal file
Binary file not shown.
52
SUPERMICRO/IPMIView/_jvm/COPYRIGHT
Normal file
52
SUPERMICRO/IPMIView/_jvm/COPYRIGHT
Normal file
@@ -0,0 +1,52 @@
|
||||
Copyright © 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 © 2007 Sun Microsystems, Inc., 4150
|
||||
Network Circle, Santa Clara, California 95054, Etats-Unis.
|
||||
Tous droits réservés.L'utilisation est soumise aux termes du
|
||||
contrat de licence.
|
||||
|
||||
Cette distribution peut comprendre des
|
||||
composants développé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ées de Sun
|
||||
Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Ce
|
||||
produit est soumis à la législation américaine en matière de
|
||||
contrôle des exportations et peut être soumis à la
|
||||
règlementation en vigueur dans d'autres pays dans le domaine
|
||||
des exportations et importations. Les utilisations, ou
|
||||
utilisateurs finaux, pour des armes nucléaires, des missiles,
|
||||
des armes biologiques et chimiques ou du nucléaire maritime,
|
||||
directement ou indirectement, sont strictement interdites.
|
||||
|
||||
Les exportations ou réexportations vers les pays sous
|
||||
embargo américain, ou vers des entités figurant sur les
|
||||
listes d'exclusion d'exportation américaines, y compris,
|
||||
mais de manière non exhaustive, la liste de personnes qui
|
||||
font objet d'un ordre de ne pas participer, d'une façon
|
||||
directe ou indirecte, aux exportations des produits ou des
|
||||
services qui sont régis par la législation américaine en
|
||||
matière de contrôle des exportations et la liste de
|
||||
ressortissants spécifiquement désignés, sont rigoureusement
|
||||
interdites.
|
||||
1
SUPERMICRO/IPMIView/_jvm/JVMCount
Normal file
1
SUPERMICRO/IPMIView/_jvm/JVMCount
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
273
SUPERMICRO/IPMIView/_jvm/LICENSE
Normal file
273
SUPERMICRO/IPMIView/_jvm/LICENSE
Normal 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.
|
||||
122
SUPERMICRO/IPMIView/_jvm/LICENSE.rtf
Normal file
122
SUPERMICRO/IPMIView/_jvm/LICENSE.rtf
Normal 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 }
|
||||
685
SUPERMICRO/IPMIView/_jvm/README.html
Normal file
685
SUPERMICRO/IPMIView/_jvm/README.html
Normal 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 & 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 &
|
||||
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 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_<version> directory, where
|
||||
<version> 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><java-home>/lib/security/local_policy.jar</code><br>
|
||||
<code><java-home>/lib/security/US_export_policy.jar</code><br>
|
||||
<br>
|
||||
where <code><java-home></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><java-home>/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 © 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>
|
||||
440
SUPERMICRO/IPMIView/_jvm/README_ja.html
Normal file
440
SUPERMICRO/IPMIView/_jvm/README_ja.html
Normal 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>目次</h2>
|
||||
<ul>
|
||||
<li><a href="#introduction">はじめに</a> </li>
|
||||
<li><a href="#install">システム要件およびインストール</a> </li>
|
||||
<li><a href="#docs">JDK ドキュメント</a> </li>
|
||||
<li><a href="#relnotes">リリースノート</a> </li>
|
||||
<li><a href="#compatibility">互換性</a> </li>
|
||||
<li><a href="#bugs">バグ報告とフィードバック</a> </li>
|
||||
<li><a href="#contents">JDK の内容</a> </li>
|
||||
<li><a href="#jre">Java Runtime Environment</a> </li>
|
||||
<li><a href="#redistribution">再配布</a> </li>
|
||||
<li><a href="#endorsed">推奨規格オーバーライド機構</a></li>
|
||||
<li><a href="#javadb">Java DB</a></li>
|
||||
<li><a href="#webpages">Web ページ</a>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="introduction">
|
||||
<h2>はじめに</h2>
|
||||
</a>
|
||||
<blockquote>Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition Development Kit (JDK<sup><font size="-2">TM</font></sup>) のこのリリースをダウンロードいただきありがとうございます。 JDK は、Java プログラミング言語を使用してアプリケーション、アプレット、およびコンポーネントを構築するための開発環境です。
|
||||
<p>JDK には、Java プログラミング言語で記述されたプログラムの開発とテスト、および Java<sup><font size="-2">TM</font></sup> プラットフォームでの実行に使用できる各種ツールが付属しています。
|
||||
<!--
|
||||
これらのツールは、コマンド行から使用するように設計されています。
|
||||
グラフィカルユーザーインタフェースを備えているのは appletviewer だけです。
|
||||
-->
|
||||
</p>
|
||||
<p></p>
|
||||
</blockquote>
|
||||
<a name="install">
|
||||
<h2>システム要件およびインストール</h2>
|
||||
</a>
|
||||
<blockquote>システム要件、インストール手順、およびトラブルシューティングのヒントについては、次の Java Software
|
||||
Web サイトを参照してください。
|
||||
<ul>
|
||||
<li><a href="install/index.html">JDK 6 インストール手順</a>
|
||||
</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<a name="docs">
|
||||
<h2>JDK<sup><font size="-2">TM</font></sup> ドキュメント</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) のオンラインドキュメント</a>には、API 仕様、機能説明、開発者ガイド、JDK<sup><font size="-2">TM</font></sup> ツールおよびユーティリティーのリファレンスページ、デモ、および関連情報へのリンクが含まれています。 JDK
|
||||
ドキュメントは、使用しているマシンにインストール可能なダウンロードバンドルでも入手できます。 ドキュメントバンドルを入手するには、<a
|
||||
href="../6/download.html">ダウンロードページ</a>を参照してくださ
|
||||
い。 API については、<a href="http://java.sun.com/javase/6/docs/api/index.html">Java<sup><font size="-2">TM</font></sup>
|
||||
Platform, Standard Edition の API 仕様</a>を参照してください。API
|
||||
について、コード例よりも仕様に重点をおいた簡単な説明を読むことができます。
|
||||
</blockquote>
|
||||
<p>
|
||||
<a name="relnotes">
|
||||
<h2>リリースノート</h2>
|
||||
</a></p>
|
||||
<blockquote>このリリースに関する追加情報については、Java Software Web サイトの<a
|
||||
href="6/index.html">Java SE 6 リリースノート</a>を参照してください。
|
||||
オンライン版のリリースノートは随時更新されるので、定期的にアクセスして最新の情報を確認してください。
|
||||
</blockquote>
|
||||
<a name="compatibility">
|
||||
<h2>互換性</h2>
|
||||
</a>
|
||||
<blockquote>
|
||||
<p>互換性に関する既知の問題については、Java Software Web サイトで<a href="compatibility.html">以前のリリースとの互換性</a>を
|
||||
参照してください。 以前のバージョンの Java<sup><font size="-2">TM</font></sup> プラットフォーム用に記述されたプログラムのサポートについては万全を期しています。
|
||||
互換性を失う変更が必要な箇所もありましたが、ほとんどのソフトウェアはプログラミングをやり直すことなく現在のバージョンに移行できます。
|
||||
互換性に関する Web
|
||||
ページで説明しているような意図的に互換性を排除したわずかな場合を除いて、プログラミングをやり直さないと移行できない場合はバグであるとみなされま
|
||||
す。 潜在的なセキュリティーホールをふさぐため、または実装や設計上のバグを修正するために必要な変更によって、一部の互換性が失われています。
|
||||
</p>
|
||||
</blockquote>
|
||||
<h2><a name="bugs"></a>バグ報告とフィードバック</h2>
|
||||
<blockquote>
|
||||
<a href="http://bugs.sun.com/bugdatabase/index.jsp">バグデータベース</a> Web
|
||||
サイトでは、既存のバグ報告の検索と調査、バグ報告の送信、バグ修正の重要度の報告を行うことができます。
|
||||
バグ報告や機能に関する要望を直接送信するには、次のフォームに記入してください。
|
||||
<blockquote><code><a
|
||||
href="http://bugs.sun.com/services/bugreport/index.jsp">http://bugs.sun.com/services/bugreport/index.jsp</a></code>
|
||||
</blockquote>
|
||||
フィードバックは、<a href="http://java.sun.com/docs/forms/sendusmail.html">Java
|
||||
SE ドキュメントチーム</a>に送信してください。 また、<a href="http://java.sun.com/mail/">Java
|
||||
Software エンジニアリングチームの電子メールアドレス</a>にコメントを直接送信していただくこともできます。
|
||||
<p><b>注</b> - Bug Database や弊社開発チームからテクニカルサポートを受けることはできません。
|
||||
サポートオプションについては、Java Software Web サイトの<a
|
||||
href="http://java.sun.com/support/">サポートとサービス</a>を参照してください。
|
||||
</p>
|
||||
</blockquote>
|
||||
<a name="contents">
|
||||
<h2>JDK<sup><font size="-2">TM</font></sup> の内容</h2>
|
||||
</a>
|
||||
<blockquote>ここでは、JDK<sup><font size="-2">TM</font></sup> のファイルとディレクトリの概要を説明します。 ファイルとディレクトリの詳細については、お使いのプラットフォームの Java SE ドキュメントの「<a href="http://java.sun.com/javase/6/docs/technotes/tools/index.html#general">JDK File Structure</a>」を参照してください。
|
||||
<dl>
|
||||
<dt><b>開発ツール</b> </dt>
|
||||
<dd><code>bin</code> サブディレクトリに格納されています。 Java<sup><font size="-2">TM</font></sup>
|
||||
プログラミング言語で記述されたプログラムの開発、実行、デバッグ、およびドキュメント作成を支援するツールとユーティリティーです。 詳細については、<a
|
||||
href="http://java.sun.com/javase/6/docs/technotes/tools/index.html">各ツールのマニュアル</a>を
|
||||
参照してください。
|
||||
<p> </p>
|
||||
</dd>
|
||||
<dt><b>Runtime Environment</b> </dt>
|
||||
<dd><code>jre</code> サブディレクトリに格納されています。 JDK で使用される Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)
|
||||
実行環境の実装です。 JREには、Java<sup><font size="-2">TM</font></sup> 仮想マシン、クラスライブラリ、および Java<sup><font size="-2">TM</font></sup>
|
||||
プログラミング言語で記述されたプログラムの実行をサポートするその他のファイルが含まれます。
|
||||
<p> </p>
|
||||
</dd>
|
||||
<dt><b>追加ライブラリ</b> </dt>
|
||||
<dd><code>lib</code> サブディレクトリに格納されています。
|
||||
開発ツールに必要な追加のクラスライブラリとサポートファイルです。
|
||||
<p> </p>
|
||||
</dd>
|
||||
<dt><b>デモアプレットとデモアプリケーション</b> </dt>
|
||||
<dd><code>demo</code> サブディレクトリに格納されています。 Java<sup><font size="-2">TM</font></sup>
|
||||
プラットフォーム用のプログラミング例で、ソースコードが含まれます。 Swing やその他の Java<sup><font size="-2">TM</font></sup> Foundation
|
||||
Classes、および Java<sup><font size="-2">TM</font></sup> Platform Debugger Architecture を使用する例も含まれます。
|
||||
<p> </p>
|
||||
</dd>
|
||||
<dt><b>サンプルコード</b></dt>
|
||||
|
||||
<dd><code>sample</code> サブディレクトリに格納されています。 特定の Java API のプログラミングのソースコード付きサンプルです。
|
||||
<br>
|
||||
<br></dd>
|
||||
<dt><b>C ヘッダーファイル</b> </dt>
|
||||
<dd><code>include</code> サブディレクトリに格納されています。 <a
|
||||
href="http://java.sun.com/javase/6/docs/technotes/guides/jni/index.html">Java
|
||||
Native Interface</a>、<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>、およびその他の Java<sup><font size="-2">TM</font></sup> Platform の機能を使用するネイティブコードプログラミングをサポートするヘッダーファイルです。
|
||||
<p> </p>
|
||||
</dd>
|
||||
<dt><b>ソースコード</b> </dt>
|
||||
<dd><code>src.zip</code> に格納されています。 Java コア API
|
||||
を構成するすべてのクラスに対する Java<sup><font size="-2">TM</font></sup> プログラミング言語のソースファイルです。つまり、java.*、javax.*、および一部の
|
||||
org.* パッケージのソースファイルであり、com.sun.* パッケージのソースファイルは含まれません。
|
||||
このソースコードは情報提供のみを目的としており、開発者が Java<sup><font size="-2">TM</font></sup> プログラミング言語を理解し活用するのに役立ちます。
|
||||
これらのファイルには、プラットフォーム固有の実装コードは含まれません。これらのファイルを使用して、クラスライブラリを再構築することはできません。
|
||||
これらのファイルを展開するには、一般的な zip ユーティリティーを使用します。 また、次のように、JDK の <tt>bin</tt>
|
||||
ディレクトリに用意されている Jar ユーティリティーを使用することもできます。
|
||||
<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>) は、単独でダウンロードできる製品として提供されています。 <a
|
||||
href="../6/download.html">ダウンロード Web サイト</a>を参照
|
||||
してください。
|
||||
<p> JRE を使用すると、Java<sup><font size="-2">TM</font></sup>
|
||||
プログラミング言語で記述されたアプリケーションを実行できます。 JDK<sup><font size="-2">TM</font></sup> と同様に、Java<sup><font size="-2">TM</font></sup> 仮想マシン、Java<sup><font size="-2">TM</font></sup> プラットフォーム API
|
||||
を構成するクラス、およびサポートファイルが含まれます。 JDK とは異なり、コンパイラやデバッガなどの開発ツールは含まれません。 </p>
|
||||
<p> JRE は、JRE のライセンス条項に従って、独自に開発したアプリケーションとともに自由に再配布することができます。 JDK
|
||||
を使用してアプリケーションを開発したのち、エンドユーザーがそのソフトウェアを Java<sup><font size="-2">TM</font></sup> プラットフォームで実行できるように、JRE とともに出荷することができます。
|
||||
</p>
|
||||
</blockquote>
|
||||
<a name="redistribution">
|
||||
<h2>再配布</h2>
|
||||
</a>
|
||||
<blockquote>
|
||||
<blockquote>
|
||||
<hr> 注 - このソフトウェアのライセンスは、ベータ版およびその他のプレリリース版の再配布を許可するものではありません。
|
||||
<hr></blockquote>
|
||||
ソフトウェアライセンス契約の条項、および以下で規定される義務、制限、および例外事項に従い、ソフトウェア
|
||||
(および以下で再配布可能と見なされる、ソフトウェアの一部) を複製および配布できます。
|
||||
<ol type="a">
|
||||
<li> ソフトウェアを完全な改変されていない状態で、かつアプレットおよびアプリケーション (「プログラム」)
|
||||
の一部としてバンドルされた状態でのみ配布する。
|
||||
</li>
|
||||
<li> プログラムが重要かつ主要な機能をソフトウェアに追加する。
|
||||
</li>
|
||||
<li> プログラムが Java 対応の汎用デスクトップコンピュータおよびサーバーで実行されることのみを目的とする。
|
||||
</li>
|
||||
<li> プログラムの実行のみを目的として、ソフトウェアを配布する。
|
||||
</li>
|
||||
<li> ソフトウェアのコンポーネントと置き換えることを目的として追加のソフトウェアを配布しない。
|
||||
</li>
|
||||
<li> ソフトウェアに記載されているいかなる所有権表示や告知も除去または変更しない。
|
||||
</li>
|
||||
<li> 本契約に含まれる条項と合致した、Sun の利益を保護するライセンス契約に従ってのみソフトウェアを配布する。
|
||||
</li>
|
||||
<li>
|
||||
プログラムおよびソフトウェアの一部またはすべての使用あるいは配布に起因した第三者からの請求、訴訟、または措置に関連して生じるいかなる損害、費用、
|
||||
債務、和解金、および出費 (弁護士費用を含む) から、Sun とそのライセンサを擁護し、補償することに同意する。
|
||||
</li>
|
||||
</ol>
|
||||
ここで使用されている「ベンダー」という用語は、自らのプログラムとともに Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) をライセンス供与および配布するライセンシ、開発者、および独立系ソフトウェアベンダー (ISV) を指します。
|
||||
<p>ベンダーは、Java Development Kit バイナリコードライセンス契約の条項に従う必要があります。
|
||||
</p>
|
||||
<h3>必須ファイルとオプションファイル</h3>
|
||||
Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) を構成するファイルは、必須とオプションの 2 つに分類されます。
|
||||
オプションファイルは、ベンダーの判断により JDK の再配布から除外することができます。
|
||||
<p>JDK の再配布から任意で除外できるファイルおよびディレクトリを次に示します。
|
||||
これらのオプションファイル一覧に含まれないファイルは、すべて JDK の再配布に含める必要があります。
|
||||
</p>
|
||||
<h3>オプションのファイルとディレクトリ</h3>
|
||||
次のファイルは再配布から任意に除外できます。 これらのファイルは jdk1.6.0_<version>
|
||||
ディレクトリに格納されています。<version> は、アップデートバージョン番号です。 Solaris<sup><font size="-2">TM</font></sup> および Linux
|
||||
のファイル名と区切り記号が示されています。 Windows の実行可能ファイルには末尾に「.exe」が付きます。 名前に <code>_g</code>
|
||||
が付く対応するファイルも除外できます。除外された実行可能ファイル(Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステムおよび Linux の場合、以下の一覧でパスが bin/ から始まる) に対応するマニュアルページは除外する必要があります。
|
||||
<dl>
|
||||
<dt><tt>jre/lib/charsets.jar</tt> </dt>
|
||||
<dd>文字変換クラス
|
||||
</dd>
|
||||
<dt><tt>jre/lib/ext/</tt> </dt>
|
||||
<dd><tt>sunjce_provider.jar</tt> - Java 暗号化 API の SunJCE プロバイダ<br>
|
||||
<tt>localedata.jar</tt> - 米国英語以外のロケールに必要なリソースの多くを含む<br>
|
||||
<tt>ldapsec.jar</tt> - LDAP サービスプロバイダがサポートするセキュリティー機能を含む<br>
|
||||
<tt>dnsns.jar</tt> - JNDI DNS プロバイダの InetAddress ラッパー用
|
||||
</dd>
|
||||
<dt><tt>bin/rmid</tt> および <tt>jre/bin/rmid</tt> </dt>
|
||||
<dd>Java RMI 起動システムデーモン
|
||||
</dd>
|
||||
<dt><tt>bin/rmiregistry</tt> および <tt>jre/bin/rmiregistry</tt> </dt>
|
||||
<dd>Java リモートオブジェクトレジストリ
|
||||
</dd>
|
||||
<dt><tt>bin/tnameserv</tt> および <tt>jre/bin/tnameserv</tt> </dt>
|
||||
<dd>Java IDL ネームサーバー
|
||||
</dd>
|
||||
<dt><tt>bin/keytool</tt> および <tt>jre/bin/keytool</tt> </dt>
|
||||
<dd>鍵および証明書の管理ツール
|
||||
</dd>
|
||||
<dt><tt>bin/kinit</tt> および <tt>jre/bin/kinit</tt> </dt>
|
||||
<dd>Kerberos チケット認可チケットの取得およびキャッシュに使用
|
||||
</dd>
|
||||
<dt><tt>bin/klist</tt> および <tt>jre/bin/klist</tt> </dt>
|
||||
<dd>資格キャッシュおよびキータブ内の Kerberos 表示エントリ
|
||||
</dd>
|
||||
<dt><tt>bin/ktab</tt> および <tt>jre/bin/ktab</tt> </dt>
|
||||
<dd>Kerberos キーテーブルマネージャー
|
||||
</dd>
|
||||
<dt><tt>bin/policytool</tt> および <tt>jre/bin/policytool</tt> </dt>
|
||||
<dd>ポリシーファイルの作成および管理ツール
|
||||
</dd>
|
||||
<dt><tt>bin/orbd</tt> および <tt>jre/bin/orbd</tt> </dt>
|
||||
<dd>Object Request Broker Daemon
|
||||
</dd>
|
||||
<dt><tt>bin/servertool</tt> および <tt>jre/bin/servertool</tt> </dt>
|
||||
<dd>Java IDL サーバーツール
|
||||
</dd>
|
||||
<dt><tt>bin/javaws</tt>、<tt>jre/bin/javaws</tt>、<tt>jre/lib/javaws/</tt>
|
||||
および <tt>jre/lib/javaws.jar</tt> </dt>
|
||||
<dd>Java Web Start </dd>
|
||||
|
||||
|
||||
<dt><code>demo/</code></dt>
|
||||
|
||||
<dd>デモアプレットとアプリケーション</dd>
|
||||
|
||||
<dt><code>sample/</code></dt>
|
||||
|
||||
<dd>サンプルコード</dd>
|
||||
<dt><tt>src.zip</tt> </dt>
|
||||
<dd>ソースファイルのアーカイブ
|
||||
</dd>
|
||||
</dl>
|
||||
<p>
|
||||
<a name="redistributablejdkfiles"></a></p>
|
||||
<h3>再配布可能な JDK<sup><font size="-2">TM</font></sup> ファイル</h3>
|
||||
次に示す JDK のファイル/ディレクトリセットは、ベンダーの提供する Java<sup><font size="-2">TM</font></sup> Runtime Environment (JRE<sup><font size="-2">TM</font></sup>)
|
||||
の再配布に含めることができます。 これらを個別に再配布することはできません。JRE とともに配布する必要があります。 次のパスは、すべて
|
||||
JDK の最上位ディレクトリからの相対パスです。含められる実行可能ファイル(Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステムおよび Linux の場合、以下の一覧でパスが bin/ から始まる) に対応するマニュアルページは含める必要があります。
|
||||
<dl>
|
||||
<dt><tt>jre/lib/cmm/PYCC.pf</tt> </dt>
|
||||
<dd>カラープロファイル。 このファイルは、PYCC カラー領域とその他のカラー領域の間で変換を行う場合にのみ必要です。
|
||||
</dd>
|
||||
<dt><tt>jre/lib/fonts</tt> ディレクトリ内のすべての <tt>.ttf</tt> フォントファイル </dt>
|
||||
<dd>LucidaSansRegular.ttf フォントはすでに JRE
|
||||
に含まれているため、JDK から取得する必要はありません。
|
||||
</dd>
|
||||
<dt><tt>jre/lib/audio/soundbank.gm</tt> </dt>
|
||||
<dd>この MIDI サウンドバンクは JDK に含まれますが、JRE
|
||||
から削除されています。これは JRE のダウンロードバンドルのサイズを減らすことが目的です。
|
||||
ただし、サウンドバンクファイルは MIDI の再生に必要なため、ベンダーの判断で JDK の <tt>soundbank.gm</tt>
|
||||
ファイルを JRE の再配布に含めることができます。 拡張 MIDI サウンドバンクのいくつかのバージョンを
|
||||
Java Sound Web サイト <a
|
||||
href="http://java.sun.com/products/java-media/sound/">http://java.sun.com/products/java-media/sound/</a>
|
||||
で入手できます。 これらの代替のサウンドバンクはどれも、JRE の再配布に含めることができます。
|
||||
</dd>
|
||||
<dt>javac バイトコードコンパイラ。以下のファイルで構成されます。 </dt>
|
||||
<dd><tt>bin/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステムおよび Linux]<br>
|
||||
<tt>bin/sparcv9/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステム (SPARC(R)
|
||||
プラットフォーム版)]<br>
|
||||
<tt>bin/amd64/javac</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステム (AMD)]<br>
|
||||
<tt>bin/javac.exe</tt> [Microsoft Windows]<br>
|
||||
<tt>lib/tools.jar</tt> [すべてのプラットフォーム]
|
||||
</dd>
|
||||
<dt>Annotation Processing Tool。以下のファイルで構成されます。<br>
|
||||
</dt>
|
||||
<dd><tt>bin/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステムおよび Linux]<br>
|
||||
<tt>bin/sparcv9/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステム (SPARC(R)
|
||||
プラットフォーム版)]<br>
|
||||
<tt>bin/amd64/apt</tt> [Solaris<sup><font size="-2">TM</font></sup> オペレーティングシステム (AMD)]<br>
|
||||
<tt>bin/apt.exe</tt> [Microsoft Windows]
|
||||
</dd>
|
||||
<dt><code>lib/jconsole.jar</code></dt>
|
||||
|
||||
<dd>Jconsole アプリケーション</dd>
|
||||
|
||||
<dt><tt>jre\bin\server\</tt> </dt>
|
||||
<dd>Microsoft Windows プラットフォームでは、JDK に Java HotSpot<sup><font size="-2">TM</font></sup> Server VM と
|
||||
Java HotSpot<sup><font size="-2">TM</font></sup> Client VM の両方が含まれます。 ただし、Microsoft Windows プラットフォーム版の JRE には Java HotSpot<sup><font size="-2">TM</font></sup> Client VM しか含まれていません。 Java
|
||||
HotSpot<sup><font size="-2">TM</font></sup> Server VM を JRE で使用する場合は、JDK の <tt>jre\bin\server</tt>
|
||||
フォルダを JRE の <tt>bin\server</tt>
|
||||
ディレクトリにコピーしてください。 ソフトウェアベンダーは、JRE の再配布の際に、Java HotSpot<sup><font size="-2">TM</font></sup> Server VM を再配布することができます。
|
||||
</dd>
|
||||
</dl>
|
||||
<h3>無制限強度 Java 暗号化拡張機能</h3>
|
||||
一部の国の輸入規制に対応するため、JDK および JRE とともに出荷される Java 暗号化拡張機能 (JCE)
|
||||
のポリシーファイルは、強力ではあっても制限付きの暗号方式の使用しか許可していません。 これらのファイルは次の場所に格納されています。
|
||||
<blockquote>
|
||||
<pre><java-home>/lib/security/local_policy.jar<br><java-home>/lib/security/US_export_policy.jar<br></pre>
|
||||
</blockquote>
|
||||
<tt><java-home></tt> は、JDK の <tt>jre</tt> ディレクトリまたは JRE の最上位ディレクトリです。
|
||||
<p>規制を受けない国のユーザーのために、暗号化強度に制限のない無制限強度バージョンのファイルが JDK Web
|
||||
サイトに用意されています。 これらの国のユーザーは、無制限強度バージョンをダウンロードし、強力暗号化 jar
|
||||
ファイルを無制限強度ファイルで置き換えることができます。 </p>
|
||||
|
||||
<h3>cacerts 証明書ファイル</h3>
|
||||
|
||||
<blockquote>
|
||||
以下にある Java SE 証明書ファイルでルート認証局証明書を追加または削除することができます。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<code><java-home>/lib/security/cacerts</code>
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
詳細は keytool ドキュメントの <a href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">The cacerts Certificates File</a> を参照してください。
|
||||
</blockquote>
|
||||
|
||||
</blockquote>
|
||||
<!--
|
||||
<h3>jconsole</h3>
|
||||
<dl>
|
||||
<dt><tt>jconsole.jar</tt>
|
||||
</dt>
|
||||
<dd>jconsole は JDK とは別に再配布できますが、Sun の JRE とともに配布する必要があります。
|
||||
</dd>
|
||||
</dl>
|
||||
-->
|
||||
<a name="endorsed">
|
||||
<h2>Java 推奨規格オーバーライド機構</h2>
|
||||
|
||||
Java プラットフォームは、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>) 以外で作成された標準 (推奨標準) の最新バージョンを組み込むため、またはプラットフォームに含まれるテクノロジーのバージョンを、そのテクノロジーの新しいスタンドアロンバージョン (標準テクノロジー) に対応させるため、適宜更新が必要です。
|
||||
<p>
|
||||
推奨規格オーバーライド機構を使用すれば、Java プラットフォームに組み込まれる可能性のある推奨標準やスタンドアロンテクノロジーを実装する、新しいバージョンのクラスやインタフェースを提供できます。
|
||||
|
||||
<p>推奨規格オーバーライド機構の詳細については、次のサイトを参照してください。優先指定に使用できるプラットフォームパッケージの一覧も掲載されています。
|
||||
</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>
|
||||
この配布は、Sun Microsystems が配布する Apache Derby pure Java データベーステクノロジーである Java DB をバンドルしています。
|
||||
デフォルトでは以下にインストールされます。
|
||||
|
||||
<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>
|
||||
ユーザードキュメントや API ドキュメント、Java DB の機能やその他リソースなどの Java DB と Derby の情報については、上記ディレクトリの index.html ファイルを参照してください。
|
||||
</p></blockquote>
|
||||
|
||||
<!--
|
||||
<p>
|
||||
この Web ページに掲載されているパッケージのクラスを置き換えることができるのは、適切な標準団体によって定義された API
|
||||
の最新バージョンを実装するクラスだけです。
|
||||
</p>
|
||||
<p>Sun の Java SE リファレンス実装の再配布者は、上記の URL のドキュメントに掲載されているパッケージ (Java
|
||||
Platform, Standard Edition (Java SE) の仕様の一部) 以外に、これらの推奨標準パッケージで定義される
|
||||
public API が提供する機能の実装のみが目的のクラスを置き換えることができます。 また、<tt>org.w3c.dom.*</tt>
|
||||
パッケージのクラスや、これらの API の実装のみを目的とするその他のクラスを置き換えることもできます。
|
||||
</p>
|
||||
<h3>cacerts 証明書ファイル<br>
|
||||
</h3>
|
||||
<code><java-home>/lib/security/cacerts</code> にある Java SE
|
||||
証明書ファイルでルート認証局証明書を追加または削除することができます。 詳細については、keytool ドキュメントの「<a
|
||||
href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">The
|
||||
cacerts Certificates File</a>」を参照してください。
|
||||
</blockquote>
|
||||
-->
|
||||
|
||||
|
||||
<a name="webpages">
|
||||
<h2>Web ページ</h2>
|
||||
</a>
|
||||
<blockquote>詳細については、次の Sun Microsystems の Web ページを参照してください。
|
||||
<dl>
|
||||
<dt><a href="http://java.sun.com/">http://java.sun.com/</a> </dt>
|
||||
<dd>Java Software Web サイト。Java
|
||||
テクノロジ、製品情報、ニュース、および機能についての最新情報が掲載されています。 </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> プラットフォームのドキュメント。ホワイトペーパーや Java チュートリアルなどのドキュメントにアクセスできます。 </dd>
|
||||
<dt><a href="http://developer.java.sun.com">http://developer.java.sun.com</a>
|
||||
</dt>
|
||||
<dd>Developer Services Web サイト。 (無料の登録が必要。)
|
||||
技術情報、ニュース、および機能の詳細情報、ユーザーフォーラム、サポート情報などが提供されています。 </dd>
|
||||
<dt><a href="http://developers.sun.com/downloads/">http://developers.sun.com/downloads/</a>
|
||||
</dt>
|
||||
<dd>テクノロジーダウンロード
|
||||
</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>) は Sun Microsystems<sup><small>TM</small></sup>, Inc. の製品です。<br>
|
||||
|
||||
<p>Copyright © 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>
|
||||
435
SUPERMICRO/IPMIView/_jvm/README_zh_CN.html
Normal file
435
SUPERMICRO/IPMIView/_jvm/README_zh_CN.html
Normal 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>自述文件 -- Java Platform, Standard Edition Development Kit</title>
|
||||
</head>
|
||||
|
||||
<body lang="en-US" bgcolor="#FFFFFF">
|
||||
<h1 align="center">自述文件</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">简介</a></li>
|
||||
|
||||
<li><a href="#install">系统要求与安装</a></li>
|
||||
|
||||
<li><a href="#docs">JDK 文档</a></li>
|
||||
|
||||
<li><a href="#relnotes">发行说明</a></li>
|
||||
|
||||
<li><a href="#compatibility">兼容性</a></li>
|
||||
|
||||
<li><a href="#bugs">错误报告与反馈</a></li>
|
||||
|
||||
<li><a href="#contents">JDK 的内容</a></li>
|
||||
|
||||
<li><a href="#jre">Java Runtime Environment</a></li>
|
||||
|
||||
<li><a href="#redistribution">再分发</a></li>
|
||||
|
||||
<li><a href="#endorsed">Java 签名标准覆盖机制</a></li>
|
||||
|
||||
<li><a href="#webpages">Web 页</a></li>
|
||||
</ul>
|
||||
|
||||
<h2><a name="introduction" id="introduction"></a>简介</h2>
|
||||
|
||||
<blockquote>
|
||||
感谢您下载此版本的 Java<sup><font size=
|
||||
"-2">TM</font></sup> Platform, Standard Edition Development Kit (JDK<sup><font size="-2">TM</font></sup>)。JDK 是一种开发环境,用于使用 Java 编程语言生成应用程序、applet 和组件。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
JDK 包含的工具可用于开发和测试以 Java 编程语言编写并在 Java<sup><font size=
|
||||
"-2">TM</font></sup> 平台上运行的程序。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="install" id="install"></a>系统要求与安装</h2>
|
||||
|
||||
<blockquote>
|
||||
系统要求、安装说明和故障排除提示位于 Java 软件 Web 站点上的以下位置:
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<a href="http://java.sun.com/javase/6/webnotes/install/">JDK 6 安装说明</a>
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="docs" id="docs"></a>JDK<sup><font size="-2">TM</font></sup> 文档</h2>
|
||||
|
||||
<blockquote>
|
||||
联机 <a href=
|
||||
"http://java.sun.com/javase/6/docs/">Java<sup><font size=
|
||||
"-2">TM</font></sup> Platform, Standard Edition (Java SE) 文档</a>包含 API 说明、功能介绍、开发者指南、JDK<sup><font size=
|
||||
"-2">TM</font></sup> 工具和实用程序的参考页面、演示程序以及指向相关信息的链接。此文档还以下载包的形式提供,您可以将此包安装在计算机上。要获得该文档包,请参见<a href="http://java.sun.com/javase/downloads/index.jsp">下载页面</a>。有关 API 文档的信息,请参阅 <a href=
|
||||
"http://java.sun.com/javase/6/docs/api/index.html">Java<sup><font size="-2">TM</font></sup> Platform, Standard Edition API 说明</a>。该页面提供了 API 的简要介绍,其中重点介绍了 API 说明而非代码示例。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="relnotes" id="relnotes"></a>发行说明</h2>
|
||||
|
||||
<blockquote>
|
||||
有关此版本的其他信息,请参见 Java 软件 Web 站点上的 <a href="http://java.sun.com/javase/6/webnotes/">Java SE 6 发行说明</a>。由于联机发行说明将根据需要进行更新,因此请不定期查看联机发行说明以了解最新信息。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="compatibility" id="compatibility"></a>兼容性</h2>
|
||||
|
||||
<blockquote>
|
||||
有关已知的兼容性问题列表,请参见 Java 软件 Web 站点上<a href=
|
||||
"http://java.sun.com/javase/6/webnotes/compatibility.html">与早期版本的兼容性</a>。我们已尽力支持为早期版本的 Java<sup><font size=
|
||||
"-2">TM</font></sup> 平台编写的程序。尽管必然会有某些不兼容的更改,但大部分软件都能够在不重新编程的情况下迁移到当前版本。除了在极少数情况下有意不保持兼容(如我们的兼容性 Web 页中所述)以外,如果做不到这一点,将被认为是一个错误。之所以存在一些破坏兼容性的更改,是因为需要弥补潜在的安全漏洞或修复实现或设计错误。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="bugs" id="bugs"></a>错误报告与反馈</h2>
|
||||
|
||||
<blockquote>
|
||||
<a href="http://bugs.sun.com/bugdatabase/index.jsp">错误数据库</a> Web 站点使您可以搜索和检查现有的错误报告、提交您自己的错误报告以及通知我们您最希望修复哪些错误。要直接提交错误或请求功能,请填写以下表单:
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<a href=
|
||||
"http://bugs.sun.com/services/bugreport/index.jsp">http://bugs.sun.com/services/bugreport/index.jsp</a>
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
您可以向 <a href=
|
||||
"http://java.sun.com/docs/forms/sendusmail.html">Java SE 文档小组</a>发送反馈,也可以直接向 <a href=
|
||||
"http://developers.sun.com/contact/index.jsp">Java 软件工程小组的电子邮件地址</a>发送意见。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<b>注</b> - 请不要通过错误数据库或我们的开发团队寻求技术支持。有关可以选择的支持方式,请参见 Java 软件 Web 站点上的<a href=
|
||||
"http://java.sun.com/developer/support/">支持与服务</a>。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="contents" id="contents"></a>JDK<sup><font size= "-2">TM</font></sup> 的内容</h2>
|
||||
|
||||
<blockquote>
|
||||
本部分概括介绍了 JDK<sup><font size="-2">TM</font></sup> 中的文件和目录。有关这些文件和目录的详细信息,请参见适用于您的平台的 Java SE 文档的 <a href=
|
||||
"http://java.sun.com/javase/6/docs/technotes/tools/index.html#general">JDK 文件结构</a>部分。
|
||||
</blockquote>
|
||||
|
||||
<dl>
|
||||
<dd>
|
||||
<dl>
|
||||
<dt><b>开发工具</b></dt>
|
||||
|
||||
<dd>(位于 <code>bin/</code> 子目录中)指工具和实用程序,可帮助您开发、执行、调试和保存以 Java<sup><font size="-2">TM</font></sup> 编程语言编写的程序。有关详细信息,请参见<a href=
|
||||
"http://java.sun.com/javase/6/docs/technotes/tools/index.html">工具文档</a>。<br> <br></dd>
|
||||
|
||||
<dt><b>运行时环境</b></dt>
|
||||
|
||||
<dd>(位于 <code>jre/</code> 子目录中)由 JDK 使用的 Java Runtime Environment (JRE<sup><font size="-2">TM</font></sup>) 的实现。JRE 包括 Java<sup><font size=
|
||||
"-2">TM</font></sup> 虚拟机 (JVM<sup><font size=
|
||||
"-2">TM</font></sup>)、类库以及其他支持执行以 Java<sup><font size=
|
||||
"-2">TM</font></sup> 编程语言编写的程序的文件。<br> <br></dd>
|
||||
|
||||
<dt><b>附加库</b></dt>
|
||||
|
||||
<dd>(位于 <code>lib/</code> 子目录中)开发工具所需的其他类库和支持文件。<br> <br></dd>
|
||||
|
||||
<dt><b>演示 applet 和应用程序</b></dt>
|
||||
|
||||
<dd>(位于 <code>demo/</code> 子目录中)Java<sup><font size="-2">TM</font></sup> 平台的编程示例(带源代码)。这些示例包括使用 Swing 和其他 Java<sup><font size="-2">TM</font></sup> 基类以及 Java<sup><font size="-2">TM</font></sup> 平台调试器体系结构的示例。<br> <br></dd>
|
||||
|
||||
<dt><b>样例代码</b></dt>
|
||||
|
||||
<dd>(位于 <code>sample</code> 子目录中)某些 Java API 的编程样例(带源代码)。<br> <br></dd>
|
||||
|
||||
<dt><b>C 头文件</b></dt>
|
||||
|
||||
<dd>(位于 <code>include/</code> 子目录中)支持使用 <a href=
|
||||
"http://java.sun.com/javase/6/docs/technotes/guides/jni/">Java 本机界面</a>、<a href=
|
||||
"http://java.sun.com/javase/6/docs/technotes/guides/jvmti/">JVM<sup><font size="-2">TM</font></sup> 工具界面</a>以及 Java<sup><font size="-2">TM</font></sup> 平台的其他功能进行本机代码编程的头文件。<br> <br></dd>
|
||||
|
||||
<dt><b>源代码</b></dt>
|
||||
|
||||
<dd>(位于 <code>src.zip</code> 中)组成 Java 核心 API 的所有类的 Java<sup><font size="-2">TM</font></sup> 编程语言源文件(即,java.*、javax.* 和某些 org.* 包的源文件,但不包括 com.sun.* 包的源文件)。此源代码仅供参考,以便帮助开发者学习和使用 Java<sup><font size="-2">TM</font></sup> 编程语言。这些文件不包含特定于平台的实现代码,且不能用于重新生成类库。要对这些文件进行解压,请使用任一常用的 zip 实用程序;或者也可以使用位于 JDK 的 <code>bin/</code> 目录中的 Jar 实用程序:<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>) 是一款可单独下载的产品。请参见<a href=
|
||||
"http://java.sun.com/javase/downloads/index.jsp">下载 Web 站点</a>。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
通过 JRE,您可以运行以 Java<sup><font size=
|
||||
"-2">TM</font></sup> 编程语言编写的应用程序。与 JDK<sup><font size=
|
||||
"-2">TM</font></sup> 相似,JRE 包含 Java<sup><font size=
|
||||
"-2">TM</font></sup> 虚拟机 (JVM<sup><font size=
|
||||
"-2">TM</font></sup>)、组成 Java<sup><font size=
|
||||
"-2">TM</font></sup> 平台 API 的类及支持文件。与 JDK 不同的是,它不包含诸如编译器和调试器这样的开发工具。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
依照 JRE 许可证条款,您可以随意地将 JRE 随应用程序一起进行再分发。使用 JDK 开发应用程序后,可将其与 JRE 一起发行,以便最终用户具有可运行软件的 Java<sup><font size="-2">TM</font></sup> 平台。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="redistribution" id="redistribution"></a>再分发</h2>
|
||||
|
||||
<blockquote>
|
||||
<blockquote>
|
||||
<hr>
|
||||
注 - 本软件的许可证不允许再分发测试版和其他预发行版本。
|
||||
<hr>
|
||||
</blockquote>
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
必须遵守软件许可协议的条款和条件以及下面提出的义务、限制和例外。在下列情况下,您可以复制和分发本软件(以及在下面标识为“可再分发”的软件部分):
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<ol type="a">
|
||||
<li>您将完整地分发软件而不能进行修改,并仅作为您的 applet 和应用程序(程序)的一部分打包;</li>
|
||||
|
||||
<li>您的程序将向本软件添加重要的主要功能;</li>
|
||||
|
||||
<li>您的程序仅用于在启用了 Java 的普通桌面计算机和服务器上运行;</li>
|
||||
|
||||
<li>您分发软件只是为了运行您的程序;</li>
|
||||
|
||||
<li>您不分发其他软件来替换本软件的任何组件;</li>
|
||||
|
||||
<li>您不删除或更改本软件中包含的任何专用图例或声明;</li>
|
||||
|
||||
<li>您只按照旨在保护 Sun 的利益的许可协议中的条款来分发本软件;</li>
|
||||
|
||||
<li>您同意维护和保障 Sun 及其许可方的利益,不使其承担因第三方使用或分发任意和全部程序和/或软件而引起的赔偿、诉讼或冲突所导致的赔偿金、诉讼费、债务和/或调解费(包括律师费)。</li>
|
||||
</ol>
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
此处使用的“供应商”一词是指许可证持有人、开发者以及将 Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) 与其程序一起许可和分发的独立软件供应商 (ISV)。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
供应商必须遵守 Java Development Kit 二进制代码许可协议的条款。
|
||||
</blockquote>
|
||||
|
||||
<h3>必要文件与可选文件</h3>
|
||||
|
||||
<blockquote>
|
||||
组成 Java<sup><font size="-2">TM</font></sup> Development Kit (JDK<sup><font size="-2">TM</font></sup>) 的文件分为两类:必要的和可选的。可选文件可以不包含在 JDK 的再分发中(由供应商决定)。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
下面一节列出了可以选择从 JDK 的再分发中省略的文件和目录。没有列为可选文件的所有文件都必须包含在 JDK 的再分发中。
|
||||
</blockquote>
|
||||
|
||||
<h3>可选文件和目录</h3>
|
||||
|
||||
<blockquote>
|
||||
下列文件可以从再分发中排除。这些文件位于 jdk1.6.0_<版本> 目录中,其中 <版本> 是最新的版本号。将显示 Solaris<sup><font size="-2">TM</font></sup> 和 Linux 的文件名和分隔符。Windows 可执行文件具有 ".exe" 后缀。还可以排除名称中带有 <code>_g</code> 的相应文件。对于任何已排除的可执行文件,应排除相应的手册页(包含下面列出的以 <code>bin/</code> 开头的路径,适用于 Solaris<sup><font size="-2">TM</font></sup> 操作系统和 Linux)。
|
||||
</blockquote>
|
||||
|
||||
<dl>
|
||||
<dd>
|
||||
<dl>
|
||||
<dt><code>jre/lib/charsets.jar</code></dt>
|
||||
|
||||
<dd>字符转换类</dd>
|
||||
|
||||
<dt><code>jre/lib/ext/</code></dt>
|
||||
|
||||
<dd><code>sunjce_provider.jar</code> - SunJCE 的 Java 加密法 API 提供者<br> <code>localedata.jar</code> - 包含非美式英语语言环境所需的许多资源<br> <code>ldapsec.jar</code> - 包含 LDAP 服务提供者所支持的安全特征<br> <code>dnsns.jar</code> - 用于 JNDI DNS 提供者的 InetAddress 包装</dd>
|
||||
|
||||
<dt><code>bin/rmid</code> 和 <code>jre/bin/rmid</code></dt>
|
||||
|
||||
<dd>Java RMI 活化系统守护进程</dd>
|
||||
|
||||
<dt><code>bin/rmiregistry</code> 和 <code>jre/bin/rmiregistry</code></dt>
|
||||
|
||||
<dd>Java 远程对象注册表</dd>
|
||||
|
||||
<dt><code>bin/tnameserv</code> 和 <code>jre/bin/tnameserv</code></dt>
|
||||
|
||||
<dd>Java IDL 名称服务器</dd>
|
||||
|
||||
<dt><code>bin/keytool</code> 和 <code>jre/bin/keytool</code></dt>
|
||||
|
||||
<dd>密钥和证书管理工具</dd>
|
||||
|
||||
<dt><code>bin/kinit</code> 和 <code>jre/bin/kinit</code></dt>
|
||||
|
||||
<dd>用于获取和高速缓存 Kerberos 票证的授予票证</dd>
|
||||
|
||||
<dt><code>bin/klist</code> 和 <code>jre/bin/klist</code></dt>
|
||||
|
||||
<dd>凭据高速缓存和密钥表中的 Kerberos 显示条目</dd>
|
||||
|
||||
<dt><code>bin/ktab</code> 和 <code>jre/bin/ktab</code></dt>
|
||||
|
||||
<dd>Kerberos 密钥表管理器</dd>
|
||||
|
||||
<dt><code>bin/policytool</code> 和 <code>jre/bin/policytool</code></dt>
|
||||
|
||||
<dd>策略文件创建和管理工具</dd>
|
||||
|
||||
<dt><code>bin/orbd</code> 和 <code>jre/bin/orbd</code></dt>
|
||||
|
||||
<dd>对象请求代理守护进程</dd>
|
||||
|
||||
<dt><code>bin/servertool</code> 和 <code>jre/bin/servertool</code></dt>
|
||||
|
||||
<dd>Java IDL 服务器工具</dd>
|
||||
|
||||
<dt><code>bin/javaws</code>、<code>jre/bin/javaws</code>、<code>jre/lib/javaws/</code> 和 <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,Sun Microsystems 的 Apache Derby 数据库技术分发。</dd>
|
||||
|
||||
<dt><code>demo/</code></dt>
|
||||
|
||||
<dd>演示 applet 和应用程序</dd>
|
||||
|
||||
<dt><code>sample/</code></dt>
|
||||
|
||||
<dd>样例代码</dd>
|
||||
|
||||
<dt><code>src.zip</code></dt>
|
||||
|
||||
<dd>源文件归档</dd>
|
||||
</dl>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<h3><a name="redistributablejdkfiles" id=
|
||||
"redistributablejdkfiles"></a>可再分发的 JDK<sup><font size=
|
||||
"-2">TM</font></sup> 文件</h3>
|
||||
|
||||
<blockquote>
|
||||
下面列出了有限几组 JDK 文件和目录,供应商在再分发 Java<sup><font size=
|
||||
"-2">TM</font></sup> Runtime Environment (JRE<sup><font size=
|
||||
"-2">TM</font></sup>) 时,可能会将这些文件和目录随附其中。这些文件不能单独再分发,而必须随 JRE 一起分发。所有路径都是相对 JDK 的顶层目录而言的。对于任何已包含的可执行文件,应包含相应的手册页(包含下面列出的以 <code>bin/</code> 开头的路径,适用于 Solaris<sup><font size="-2">TM</font></sup> 操作系统和 Linux)。
|
||||
</blockquote>
|
||||
|
||||
<dl>
|
||||
<dd>
|
||||
<dl>
|
||||
<dt><code>jre/lib/cmm/PYCC.pf</code></dt>
|
||||
|
||||
<dd>颜色配置文件。仅当用户希望在 PYCC 颜色区间与另一个颜色区间之间进行转换时才需要用到此文件。</dd>
|
||||
|
||||
<dt>位于 <code>jre/lib/fonts/</code> 目录中的所有 <code>.ttf</code> 字体文件。</dt>
|
||||
|
||||
<dd>请注意,JRE 中已包含 LucidaSansRegular.ttf 字体,因此无需从 JDK 中引入该文件。</dd>
|
||||
|
||||
<dt><code>jre/lib/audio/soundbank.gm</code></dt>
|
||||
|
||||
<dd>JDK 中具有该 MIDI 声音库,但为了减小 JRE 下载包所占的空间,已从 JRE 中删除该库。但是,对于 MIDI 回放,声音库文件是必需的,因此在再分发 JRE 时可能将 JDK 的 <code>soundbank.gm</code> 文件随附其中(由供应商决定)。可从 Java Sound Web 站点获得若干加强的 MIDI 声音库版本,该站点如下:<a href=
|
||||
"http://java.sun.com/products/java-media/sound/">http://java.sun.com/products/java-media/sound/</a>。在再分发 JRE 时,可能将这些备用声音库随附其中。</dd>
|
||||
|
||||
<dt>javac 字节码编译器由下列文件组成:</dt>
|
||||
|
||||
<dd><code>bin/javac</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统和 Linux]<br> <code>bin/sparcv9/javac</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统(SPARC(R) 平台版)]<br> <code>bin/amd64/javac</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统 (AMD)]<br> <code>bin/javac.exe</code> [Microsoft Windows]<br> <code>lib/tools.jar</code> [所有平台]</dd>
|
||||
|
||||
<dt>注释处理工具由下列文件组成:</dt>
|
||||
|
||||
<dd><code>bin/apt</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统和 Linux]<br> <code>bin/sparcv9/apt</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统(SPARC(R) 平台版)]<br> <code>bin/amd64/apt</code> [Solaris<sup><font size="-2">TM</font></sup> 操作系统 (AMD)]<br> <code>bin/apt.exe</code> [Microsoft Windows]</dd>
|
||||
|
||||
<dt><code>lib/jconsole.jar</code></dt>
|
||||
|
||||
<dd>Jconsole 应用程序。</dd>
|
||||
|
||||
<dt><code>jre\bin\server\</code></dt>
|
||||
|
||||
<dd>在 Microsoft Windows 平台上,JDK 同时包含 Java HotSpot<sup><font size="-2">TM</font></sup> 服务器 VM 和 Java HotSpot<sup><font size="-2">TM</font></sup> 客户机 VM。但是,Microsoft Windows 平台上的 JRE 仅包含 Java HotSpot<sup><font size="-2">TM</font></sup> 客户机 VM。如果用户希望和 JRE 一起使用 Java HotSpot<sup><font size="-2">TM</font></sup> 服务器 VM,可以将 JDK 的 <code>jre\bin\server</code> 文件夹复制到 JRE 的 <code>bin\server</code> 目录中。软件供应商可将 Java HotSpot<sup><font size="-2">TM</font></sup> 服务器 VM 随 JRE 一起再分发。</dd>
|
||||
</dl>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<h3>无限加强的 Java 加密法扩展</h3>
|
||||
|
||||
<blockquote>
|
||||
由于某些国家/地区存在进口控制限制,因此 JDK 和 JRE 随附的 Java 加密法扩展 (JCE) 策略文件允许使用强大但有限的加密法。这些文件位于<br> <br> <code><java-home>/lib/security/local_policy.jar</code><br> <code><java-home>/lib/security/US_export_policy.jar</code><br> <br>其中 <code><java-home></code> 是 JDK 的 <code>jre</code> 目录或 JRE 的顶层目录。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
对于那些位于符合条件的国家/地区的用户,可以从 JDK Web 站点获取不对加密技术的强度指定任何限制的无限加强版文件。位于符合条件的国家/地区的用户可以下载无限加强版文件,并用这些文件替换强度有限的 jar 文件。
|
||||
</blockquote>
|
||||
|
||||
<h3>Cacerts 证书文件</h3>
|
||||
|
||||
<blockquote>
|
||||
可以在位于以下位置的 Java SE 证书文件中添加或删除根 CA 证书
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<code><java-home>/lib/security/cacerts</code>
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
有关详细信息,请参见 keytool 文档中的 <a href=
|
||||
"http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html#cacerts">cacerts 证书文件</a>一节。
|
||||
</blockquote>
|
||||
|
||||
<h2><a name="endorsed" id="endorsed"></a>Java 签名标准覆盖机制</h2>
|
||||
|
||||
<blockquote>
|
||||
需时常更新 Java 平台,以便并入在 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>签名标准</i>),或将该平台中所包含的技术版本更新为该技术相应的较新的独立版本(<i>独立技术</i>)。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
<i>签名标准覆盖机制</i>提供了一种方法,可将执行签名标准或独立技术的较新版本的类和界面并入 Java 平台中。
|
||||
</blockquote>
|
||||
|
||||
<blockquote>
|
||||
有关签名标准覆盖机制的详细信息,包括该机制进行覆盖时可能用到的平台包的列表,请参见
|
||||
</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>
|
||||
有关详细信息,请参阅万维网上的下列 Sun Microsystems 页面:
|
||||
</blockquote>
|
||||
|
||||
<dl>
|
||||
<dd>
|
||||
<dl>
|
||||
<dt><a href="http://java.sun.com/">http://java.sun.com/</a></dt>
|
||||
|
||||
<dd>Java 软件 Web 站点,包含有关 Java 技术、产品信息、新闻和软件特性的最新信息。</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> 平台文档,包含白皮书、Java 教程以及其他文档。</dd>
|
||||
|
||||
<dt><a href=
|
||||
"http://developer.java.sun.com/">http://developer.java.sun.com</a></dt>
|
||||
|
||||
<dd>开发者服务 Web 站点(需要进行免费注册)。其他技术信息、新闻和软件特性;用户论坛;支持信息等等。</dd>
|
||||
|
||||
<dt><a href=
|
||||
"http://java.sun.com/products/">http://java.sun.com/products/</a></dt>
|
||||
|
||||
<dd>Java 技术产品和 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>) 是 Sun Microsystems<sup><font size="-2">TM</font></sup>, Inc. 的产品。<br> <br> 版权所有 (C) 2007 Sun Microsystems, Inc.<br> 4150 Network Circle, Santa Clara, California 95054, U.S.A.<br> 保留所有权利。</font></p>
|
||||
</body>
|
||||
</html>
|
||||
2080
SUPERMICRO/IPMIView/_jvm/THIRDPARTYLICENSEREADME.txt
Normal file
2080
SUPERMICRO/IPMIView/_jvm/THIRDPARTYLICENSEREADME.txt
Normal file
File diff suppressed because one or more lines are too long
BIN
SUPERMICRO/IPMIView/_jvm/bin/HtmlConverter.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/HtmlConverter.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/appletviewer.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/appletviewer.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/apt.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/apt.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/beanreg.dll
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/beanreg.dll
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/extcheck.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/extcheck.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/idlj.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/idlj.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jar.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jar.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jarsigner.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jarsigner.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/java-rmi.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/java-rmi.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/java.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/java.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javac.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javac.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javadoc.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javadoc.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javah.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javah.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javap.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javap.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javaw.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javaw.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/javaws.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/javaws.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jconsole.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jconsole.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jdb.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jdb.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jhat.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jhat.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jinfo.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jinfo.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jli.dll
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jli.dll
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jmap.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jmap.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jps.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jps.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jrunscript.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jrunscript.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstack.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstack.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstat.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstat.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstatd.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/jstatd.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/keytool.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/keytool.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/kinit.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/kinit.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/klist.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/klist.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/ktab.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/ktab.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/msvcr71.dll
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/msvcr71.dll
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/native2ascii.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/native2ascii.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/orbd.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/orbd.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/pack200.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/pack200.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/packager.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/packager.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/policytool.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/policytool.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmic.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmic.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmid.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmid.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmiregistry.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/rmiregistry.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/schemagen.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/schemagen.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/serialver.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/serialver.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/servertool.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/servertool.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/tnameserv.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/tnameserv.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/unpack200.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/unpack200.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/wsgen.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/wsgen.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/wsimport.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/wsimport.exe
Normal file
Binary file not shown.
BIN
SUPERMICRO/IPMIView/_jvm/bin/xjc.exe
Normal file
BIN
SUPERMICRO/IPMIView/_jvm/bin/xjc.exe
Normal file
Binary file not shown.
523
SUPERMICRO/IPMIView/_jvm/include/classfile_constants.h
Normal file
523
SUPERMICRO/IPMIView/_jvm/include/classfile_constants.h
Normal 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 */
|
||||
278
SUPERMICRO/IPMIView/_jvm/include/jawt.h
Normal file
278
SUPERMICRO/IPMIView/_jvm/include/jawt.h
Normal 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_ */
|
||||
237
SUPERMICRO/IPMIView/_jvm/include/jdwpTransport.h
Normal file
237
SUPERMICRO/IPMIView/_jvm/include/jdwpTransport.h
Normal 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 */
|
||||
|
||||
1944
SUPERMICRO/IPMIView/_jvm/include/jni.h
Normal file
1944
SUPERMICRO/IPMIView/_jvm/include/jni.h
Normal file
File diff suppressed because it is too large
Load Diff
2504
SUPERMICRO/IPMIView/_jvm/include/jvmti.h
Normal file
2504
SUPERMICRO/IPMIView/_jvm/include/jvmti.h
Normal file
File diff suppressed because it is too large
Load Diff
41
SUPERMICRO/IPMIView/_jvm/include/win32/jawt_md.h
Normal file
41
SUPERMICRO/IPMIView/_jvm/include/win32/jawt_md.h
Normal 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_ */
|
||||
19
SUPERMICRO/IPMIView/_jvm/include/win32/jni_md.h
Normal file
19
SUPERMICRO/IPMIView/_jvm/include/win32/jni_md.h
Normal 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_ */
|
||||
52
SUPERMICRO/IPMIView/_jvm/jre/COPYRIGHT
Normal file
52
SUPERMICRO/IPMIView/_jvm/jre/COPYRIGHT
Normal file
@@ -0,0 +1,52 @@
|
||||
Copyright © 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 © 2007 Sun Microsystems, Inc., 4150
|
||||
Network Circle, Santa Clara, California 95054, Etats-Unis.
|
||||
Tous droits réservés.L'utilisation est soumise aux termes du
|
||||
contrat de licence.
|
||||
|
||||
Cette distribution peut comprendre des
|
||||
composants développé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ées de Sun
|
||||
Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Ce
|
||||
produit est soumis à la législation américaine en matière de
|
||||
contrôle des exportations et peut être soumis à la
|
||||
règlementation en vigueur dans d'autres pays dans le domaine
|
||||
des exportations et importations. Les utilisations, ou
|
||||
utilisateurs finaux, pour des armes nucléaires, des missiles,
|
||||
des armes biologiques et chimiques ou du nucléaire maritime,
|
||||
directement ou indirectement, sont strictement interdites.
|
||||
|
||||
Les exportations ou réexportations vers les pays sous
|
||||
embargo américain, ou vers des entités figurant sur les
|
||||
listes d'exclusion d'exportation américaines, y compris,
|
||||
mais de manière non exhaustive, la liste de personnes qui
|
||||
font objet d'un ordre de ne pas participer, d'une façon
|
||||
directe ou indirecte, aux exportations des produits ou des
|
||||
services qui sont régis par la législation américaine en
|
||||
matière de contrôle des exportations et la liste de
|
||||
ressortissants spécifiquement désignés, sont rigoureusement
|
||||
interdites.
|
||||
235
SUPERMICRO/IPMIView/_jvm/jre/LICENSE
Normal file
235
SUPERMICRO/IPMIView/_jvm/jre/LICENSE
Normal 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.
|
||||
101
SUPERMICRO/IPMIView/_jvm/jre/LICENSE.rtf
Normal file
101
SUPERMICRO/IPMIView/_jvm/jre/LICENSE.rtf
Normal 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 }
|
||||
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_de.rtf
Normal file
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_de.rtf
Normal 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
|
||||
}
|
||||
54
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_es.rtf
Normal file
54
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_es.rtf
Normal 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
|
||||
}
|
||||
55
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_fr.rtf
Normal file
55
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_fr.rtf
Normal 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
|
||||
}
|
||||
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_it.rtf
Normal file
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_it.rtf
Normal 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
|
||||
}
|
||||
613
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_ja.rtf
Normal file
613
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_ja.rtf
Normal 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 }}
|
||||
61
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_ko.rtf
Normal file
61
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_ko.rtf
Normal 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
|
||||
}
|
||||
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_sv.rtf
Normal file
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_sv.rtf
Normal 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
|
||||
}
|
||||
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_zh_CN.rtf
Normal file
56
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_zh_CN.rtf
Normal 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
|
||||
}
|
||||
976
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_zh_TW.rtf
Normal file
976
SUPERMICRO/IPMIView/_jvm/jre/LICENSE_zh_TW.rtf
Normal 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
Reference in New Issue
Block a user