@trustchex/react-native-sdk 1.161.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +49 -0
- package/README.md +223 -0
- package/TrustchexSDK.podspec +26 -0
- package/android/build.gradle +103 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKModule.kt +40 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKPackage.kt +61 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/barcodescanner/BarcodeScannerFrameProcessorPlugin.kt +301 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/BitmapUtils.kt +205 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/CropperPlugin.kt +72 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/FrameMetadata.kt +4 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/facedetector/FaceDetectorFrameProcessorPlugin.kt +303 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/textrecognition/TextRecognitionFrameProcessorPlugin.kt +115 -0
- package/ios/TrustchexSDK.h +5 -0
- package/ios/TrustchexSDK.mm +28 -0
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.mm +22 -0
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.swift +172 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper-Bridging-Header.h +13 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.h +20 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.mm +22 -0
- package/ios/VisionCameraPlugins/Cropper/Cropper.swift +145 -0
- package/ios/VisionCameraPlugins/Cropper/CropperUtils.swift +49 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin-Bridging-Header.h +4 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.mm +22 -0
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.swift +320 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin-Bridging-Header.h +4 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.mm +27 -0
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.swift +144 -0
- package/lib/module/NativeTrustchexSDK.js +4 -0
- package/lib/module/Screens/Dynamic/ContractAcceptanceScreen.js +141 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentEIDScanningScreen.js +140 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentScanningScreen.js +100 -0
- package/lib/module/Screens/Dynamic/LivenessDetectionScreen.js +596 -0
- package/lib/module/Screens/Static/QrCodeScanningScreen.js +36 -0
- package/lib/module/Screens/Static/ResultScreen.js +627 -0
- package/lib/module/Screens/Static/VerificationSessionCheckScreen.js +381 -0
- package/lib/module/Shared/Animations/face-scan.json +1 -0
- package/lib/module/Shared/Animations/hole.json +76 -0
- package/lib/module/Shared/Animations/hologram-scan.json +1 -0
- package/lib/module/Shared/Animations/id-or-passport.json +1 -0
- package/lib/module/Shared/Animations/light.json +1 -0
- package/lib/module/Shared/Animations/loading.json +1 -0
- package/lib/module/Shared/Animations/nfc-scan.json +1 -0
- package/lib/module/Shared/Animations/nfc.json +1 -0
- package/lib/module/Shared/Animations/scanning.json +1 -0
- package/lib/module/Shared/Animations/success.json +1 -0
- package/lib/module/Shared/Assets/trustchex-logo-black.png +0 -0
- package/lib/module/Shared/Components/EIDScanner.js +372 -0
- package/lib/module/Shared/Components/FaceCamera.js +223 -0
- package/lib/module/Shared/Components/IdentityDocumentCamera.js +968 -0
- package/lib/module/Shared/Components/LanguageSelector.js +53 -0
- package/lib/module/Shared/Components/NativeCircularProgress.js +64 -0
- package/lib/module/Shared/Components/NativeProgressBar.js +53 -0
- package/lib/module/Shared/Components/NavigationManager.js +180 -0
- package/lib/module/Shared/Components/OTPCodeInput.js +74 -0
- package/lib/module/Shared/Components/QrCodeScannerCamera.js +262 -0
- package/lib/module/Shared/Contexts/AppContext.js +27 -0
- package/lib/module/Shared/EIDReader/abstractMRTDCardService.js +4 -0
- package/lib/module/Shared/EIDReader/accessKeySpec.js +1 -0
- package/lib/module/Shared/EIDReader/apduLevelBACCapable.js +1 -0
- package/lib/module/Shared/EIDReader/apduLevelReadBinaryCapable.js +3 -0
- package/lib/module/Shared/EIDReader/bacKey.js +112 -0
- package/lib/module/Shared/EIDReader/bacKeySpec.js +3 -0
- package/lib/module/Shared/EIDReader/cardFileInputStream.js +140 -0
- package/lib/module/Shared/EIDReader/cardService.js +31 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlock.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlockDecoder.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/biometricDataBlockEncoder.js +3 -0
- package/lib/module/Shared/EIDReader/cbeff/cbeffInfo.js +102 -0
- package/lib/module/Shared/EIDReader/cbeff/complexCBEFFInfo.js +46 -0
- package/lib/module/Shared/EIDReader/cbeff/faceDataBlockDecoder.js +8 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611.js +79 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611Decoder.js +141 -0
- package/lib/module/Shared/EIDReader/cbeff/iso781611Encoder.js +53 -0
- package/lib/module/Shared/EIDReader/cbeff/simpleCBEFFInfo.js +21 -0
- package/lib/module/Shared/EIDReader/cbeff/standardBiometricHeader.js +97 -0
- package/lib/module/Shared/EIDReader/cert/cvcPrincipal.js +48 -0
- package/lib/module/Shared/EIDReader/data/country.js +66 -0
- package/lib/module/Shared/EIDReader/data/gender.js +29 -0
- package/lib/module/Shared/EIDReader/data/isoCountry.js +283 -0
- package/lib/module/Shared/EIDReader/data/unicodeCountry.js +278 -0
- package/lib/module/Shared/EIDReader/defaultFileInfo.js +29 -0
- package/lib/module/Shared/EIDReader/defaultFileSystem.js +171 -0
- package/lib/module/Shared/EIDReader/eidReader.js +90 -0
- package/lib/module/Shared/EIDReader/eidService.js +280 -0
- package/lib/module/Shared/EIDReader/fileInfo.js +3 -0
- package/lib/module/Shared/EIDReader/fileSystemCardService.js +4 -0
- package/lib/module/Shared/EIDReader/fragment.js +17 -0
- package/lib/module/Shared/EIDReader/fragmentBuffer.js +130 -0
- package/lib/module/Shared/EIDReader/java/byteArrayInputStream.js +73 -0
- package/lib/module/Shared/EIDReader/java/byteArrayOutputStream.js +55 -0
- package/lib/module/Shared/EIDReader/java/dataInput.js +1 -0
- package/lib/module/Shared/EIDReader/java/dataInputStream.js +167 -0
- package/lib/module/Shared/EIDReader/java/dataOutputStream.js +91 -0
- package/lib/module/Shared/EIDReader/java/filterInputStream.js +134 -0
- package/lib/module/Shared/EIDReader/java/filterOutputStream.js +124 -0
- package/lib/module/Shared/EIDReader/java/inputStream.js +139 -0
- package/lib/module/Shared/EIDReader/java/inputStreamBuffer.js +144 -0
- package/lib/module/Shared/EIDReader/java/objectInputStream.js +39 -0
- package/lib/module/Shared/EIDReader/java/outputStream.js +77 -0
- package/lib/module/Shared/EIDReader/java/positionInputStream.js +50 -0
- package/lib/module/Shared/EIDReader/java/splittableInputStream.js +54 -0
- package/lib/module/Shared/EIDReader/lds/abstractImageInfo.js +137 -0
- package/lib/module/Shared/EIDReader/lds/abstractLDSFile.js +101 -0
- package/lib/module/Shared/EIDReader/lds/abstractLDSInfo.js +29 -0
- package/lib/module/Shared/EIDReader/lds/abstractListInfo.js +66 -0
- package/lib/module/Shared/EIDReader/lds/abstractTaggedLDSFile.js +65 -0
- package/lib/module/Shared/EIDReader/lds/cbeffDataGroup.js +118 -0
- package/lib/module/Shared/EIDReader/lds/cvcaFile.js +89 -0
- package/lib/module/Shared/EIDReader/lds/dataGroup.js +10 -0
- package/lib/module/Shared/EIDReader/lds/icao/comFile.js +101 -0
- package/lib/module/Shared/EIDReader/lds/icao/dg1File.js +33 -0
- package/lib/module/Shared/EIDReader/lds/icao/dg2File.js +42 -0
- package/lib/module/Shared/EIDReader/lds/icao/icaoCountry.js +114 -0
- package/lib/module/Shared/EIDReader/lds/icao/mrzInfo.js +1418 -0
- package/lib/module/Shared/EIDReader/lds/imageInfo.js +3 -0
- package/lib/module/Shared/EIDReader/lds/iso19794/faceImageInfo.js +817 -0
- package/lib/module/Shared/EIDReader/lds/iso19794/faceInfo.js +116 -0
- package/lib/module/Shared/EIDReader/lds/ldsElement.js +1 -0
- package/lib/module/Shared/EIDReader/lds/ldsFile.js +3 -0
- package/lib/module/Shared/EIDReader/nfcManagerCardService.js +44 -0
- package/lib/module/Shared/EIDReader/protocol/bacAPDUSender.js +83 -0
- package/lib/module/Shared/EIDReader/protocol/bacProtocol.js +70 -0
- package/lib/module/Shared/EIDReader/protocol/bacResult.js +32 -0
- package/lib/module/Shared/EIDReader/protocol/readBinaryAPDUSender.js +126 -0
- package/lib/module/Shared/EIDReader/protocol/secureMessagingAPDUSender.js +102 -0
- package/lib/module/Shared/EIDReader/secureMessagingWrapper.js +218 -0
- package/lib/module/Shared/EIDReader/smartcards/apduEvent.js +23 -0
- package/lib/module/Shared/EIDReader/smartcards/apduListener.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/apduWrapper.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/commandAPDU.js +124 -0
- package/lib/module/Shared/EIDReader/smartcards/fileSystemStructured.js +3 -0
- package/lib/module/Shared/EIDReader/smartcards/iso7816.js +107 -0
- package/lib/module/Shared/EIDReader/smartcards/responseAPDU.js +35 -0
- package/lib/module/Shared/EIDReader/tlv/asn1Constants.js +48 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.utils.js +186 -0
- package/lib/module/Shared/EIDReader/tlv/tlvInputState.js +141 -0
- package/lib/module/Shared/EIDReader/tlv/tlvInputStream.js +180 -0
- package/lib/module/Shared/EIDReader/tlv/tlvOutputState.js +186 -0
- package/lib/module/Shared/EIDReader/tlv/tlvOutputStream.js +85 -0
- package/lib/module/Shared/EIDReader/tripleDesSecureMessagingWrapper.js +37 -0
- package/lib/module/Shared/EIDReader/utils/crypto.utils.js +218 -0
- package/lib/module/Shared/EIDReader/utils/random.js +166 -0
- package/lib/module/Shared/EIDReader/wrappedAPDUEvent.js +16 -0
- package/lib/module/Shared/Libs/camera.utils.js +32 -0
- package/lib/module/Shared/Libs/contains.js +40 -0
- package/lib/module/Shared/Libs/crypto.utils.js +35 -0
- package/lib/module/Shared/Libs/debounce.utils.js +35 -0
- package/lib/module/Shared/Libs/deeplink.utils.js +20 -0
- package/lib/module/Shared/Libs/demo.utils.js +57 -0
- package/lib/module/Shared/Libs/http-client.js +104 -0
- package/lib/module/Shared/Libs/mrz.utils.js +99 -0
- package/lib/module/Shared/Libs/native-device-info.utils.js +44 -0
- package/lib/module/Shared/Libs/native-keep-awake.utils.js +85 -0
- package/lib/module/Shared/Libs/opencv.utils.js +21 -0
- package/lib/module/Shared/Libs/promise.utils.js +17 -0
- package/lib/module/Shared/Libs/tts.utils.js +31 -0
- package/lib/module/Shared/Types/identificationInfo.js +3 -0
- package/lib/module/Shared/Types/instruction.js +1 -0
- package/lib/module/Shared/Types/livenessIntructionType.js +1 -0
- package/lib/module/Shared/Types/verificationSession.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.js +66 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.js +46 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.js +34 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/index.js +21 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.js +24 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/types.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.js +197 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.js +101 -0
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.js +60 -0
- package/lib/module/Shared/VisionCameraPlugins/Cropper/index.js +47 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/Camera.js +42 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/detectFaces.js +35 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/index.js +4 -0
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/types.js +3 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/Camera.js +56 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.js +20 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.js +9 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/index.js +6 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/scanText.js +20 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/translateText.js +19 -0
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/types.js +3 -0
- package/lib/module/Translation/Resources/en.js +109 -0
- package/lib/module/Translation/Resources/index.js +4 -0
- package/lib/module/Translation/Resources/tr.js +112 -0
- package/lib/module/Translation/index.js +27 -0
- package/lib/module/Trustchex.js +149 -0
- package/lib/module/index.js +5 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/NativeTrustchexSDK.d.ts +8 -0
- package/lib/typescript/src/NativeTrustchexSDK.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/ContractAcceptanceScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/ContractAcceptanceScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts.map +1 -0
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts +3 -0
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts +12 -0
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts +9 -0
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts +58 -0
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/LanguageSelector.d.ts +3 -0
- package/lib/typescript/src/Shared/Components/LanguageSelector.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NativeCircularProgress.d.ts +13 -0
- package/lib/typescript/src/Shared/Components/NativeCircularProgress.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NativeProgressBar.d.ts +12 -0
- package/lib/typescript/src/Shared/Components/NativeProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/NavigationManager.d.ts +11 -0
- package/lib/typescript/src/Shared/Components/NavigationManager.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts +10 -0
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts +6 -0
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Contexts/AppContext.d.ts +20 -0
- package/lib/typescript/src/Shared/Contexts/AppContext.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/abstractMRTDCardService.d.ts +50 -0
- package/lib/typescript/src/Shared/EIDReader/abstractMRTDCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/accessKeySpec.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/accessKeySpec.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelBACCapable.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelBACCapable.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelReadBinaryCapable.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/apduLevelReadBinaryCapable.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/bacKey.d.ts +65 -0
- package/lib/typescript/src/Shared/EIDReader/bacKey.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/bacKeySpec.d.ts +24 -0
- package/lib/typescript/src/Shared/EIDReader/bacKeySpec.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cardFileInputStream.d.ts +26 -0
- package/lib/typescript/src/Shared/EIDReader/cardFileInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cardService.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/cardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlock.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlock.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.d.ts +7 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.d.ts +6 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/cbeffInfo.d.ts +61 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/cbeffInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/complexCBEFFInfo.d.ts +33 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/complexCBEFFInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611.d.ts +60 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Decoder.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Decoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Encoder.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/iso781611Encoder.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/standardBiometricHeader.d.ts +43 -0
- package/lib/typescript/src/Shared/EIDReader/cbeff/standardBiometricHeader.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/cert/cvcPrincipal.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/cert/cvcPrincipal.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/country.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/data/country.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/gender.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/data/gender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/isoCountry.d.ts +268 -0
- package/lib/typescript/src/Shared/EIDReader/data/isoCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/data/unicodeCountry.d.ts +263 -0
- package/lib/typescript/src/Shared/EIDReader/data/unicodeCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileInfo.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileSystem.d.ts +30 -0
- package/lib/typescript/src/Shared/EIDReader/defaultFileSystem.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/eidReader.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/eidReader.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/eidService.d.ts +150 -0
- package/lib/typescript/src/Shared/EIDReader/eidService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fileInfo.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/fileInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fileSystemCardService.d.ts +28 -0
- package/lib/typescript/src/Shared/EIDReader/fileSystemCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fragment.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/fragment.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/fragmentBuffer.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/fragmentBuffer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayInputStream.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayOutputStream.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/java/byteArrayOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInput.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInput.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInputStream.d.ts +28 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataOutputStream.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/java/dataOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterInputStream.d.ts +103 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterOutputStream.d.ts +83 -0
- package/lib/typescript/src/Shared/EIDReader/java/filterOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStream.d.ts +21 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStreamBuffer.d.ts +32 -0
- package/lib/typescript/src/Shared/EIDReader/java/inputStreamBuffer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/objectInputStream.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/java/objectInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/outputStream.d.ts +64 -0
- package/lib/typescript/src/Shared/EIDReader/java/outputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/positionInputStream.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/java/positionInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/java/splittableInputStream.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/java/splittableInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractImageInfo.d.ts +50 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractImageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSFile.d.ts +71 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSInfo.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractLDSInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractListInfo.d.ts +45 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractListInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractTaggedLDSFile.d.ts +18 -0
- package/lib/typescript/src/Shared/EIDReader/lds/abstractTaggedLDSFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cbeffDataGroup.d.ts +59 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cbeffDataGroup.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cvcaFile.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/lds/cvcaFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/dataGroup.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/lds/dataGroup.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/comFile.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/comFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg1File.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg1File.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg2File.d.ts +14 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/dg2File.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/icaoCountry.d.ts +80 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/icaoCountry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/mrzInfo.d.ts +579 -0
- package/lib/typescript/src/Shared/EIDReader/lds/icao/mrzInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/imageInfo.d.ts +52 -0
- package/lib/typescript/src/Shared/EIDReader/lds/imageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceImageInfo.d.ts +392 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceImageInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceInfo.d.ts +22 -0
- package/lib/typescript/src/Shared/EIDReader/lds/iso19794/faceInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsElement.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsElement.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsFile.d.ts +10 -0
- package/lib/typescript/src/Shared/EIDReader/lds/ldsFile.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/nfcManagerCardService.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/nfcManagerCardService.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacAPDUSender.d.ts +9 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacProtocol.d.ts +17 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacProtocol.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacResult.d.ts +26 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/bacResult.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/readBinaryAPDUSender.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/readBinaryAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.d.ts +19 -0
- package/lib/typescript/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/secureMessagingWrapper.d.ts +30 -0
- package/lib/typescript/src/Shared/EIDReader/secureMessagingWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduEvent.d.ts +15 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduEvent.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduListener.d.ts +5 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduListener.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduWrapper.d.ts +8 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/apduWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/commandAPDU.d.ts +20 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/commandAPDU.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/fileSystemStructured.d.ts +7 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/fileSystemStructured.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/iso7816.d.ts +101 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/iso7816.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/responseAPDU.d.ts +13 -0
- package/lib/typescript/src/Shared/EIDReader/smartcards/responseAPDU.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/asn1Constants.d.ts +36 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/asn1Constants.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts +44 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputState.d.ts +34 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputState.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputStream.d.ts +23 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvInputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputState.d.ts +24 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputState.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputStream.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlvOutputStream.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.d.ts +10 -0
- package/lib/typescript/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/utils/crypto.utils.d.ts +16 -0
- package/lib/typescript/src/Shared/EIDReader/utils/crypto.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/utils/random.d.ts +25 -0
- package/lib/typescript/src/Shared/EIDReader/utils/random.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/wrappedAPDUEvent.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/wrappedAPDUEvent.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/contains.d.ts +14 -0
- package/lib/typescript/src/Shared/Libs/contains.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/crypto.utils.d.ts +9 -0
- package/lib/typescript/src/Shared/Libs/crypto.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/debounce.utils.d.ts +10 -0
- package/lib/typescript/src/Shared/Libs/debounce.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts +5 -0
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/http-client.d.ts +27 -0
- package/lib/typescript/src/Shared/Libs/http-client.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts +9 -0
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts +14 -0
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/native-keep-awake.utils.d.ts +31 -0
- package/lib/typescript/src/Shared/Libs/native-keep-awake.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts +3 -0
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/promise.utils.d.ts +3 -0
- package/lib/typescript/src/Shared/Libs/promise.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts +6 -0
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts +57 -0
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/instruction.d.ts +5 -0
- package/lib/typescript/src/Shared/Types/instruction.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/livenessIntructionType.d.ts +2 -0
- package/lib/typescript/src/Shared/Types/livenessIntructionType.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Types/verificationSession.d.ts +16 -0
- package/lib/typescript/src/Shared/Types/verificationSession.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.d.ts +13 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts +13 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts +6 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts +14 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts +52 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts +62 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts +34 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts +32 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts +23 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts +9 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts +79 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts +6 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts +5 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts +3 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts.map +1 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts +67 -0
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts +109 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/index.d.ts +3 -0
- package/lib/typescript/src/Translation/Resources/index.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/tr.d.ts +112 -0
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -0
- package/lib/typescript/src/Translation/index.d.ts +3 -0
- package/lib/typescript/src/Translation/index.d.ts.map +1 -0
- package/lib/typescript/src/Trustchex.d.ts +18 -0
- package/lib/typescript/src/Trustchex.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +288 -0
- package/src/NativeTrustchexSDK.ts +9 -0
- package/src/Screens/Dynamic/ContractAcceptanceScreen.tsx +165 -0
- package/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx +205 -0
- package/src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx +152 -0
- package/src/Screens/Dynamic/LivenessDetectionScreen.tsx +699 -0
- package/src/Screens/Static/QrCodeScanningScreen.tsx +37 -0
- package/src/Screens/Static/ResultScreen.tsx +877 -0
- package/src/Screens/Static/VerificationSessionCheckScreen.tsx +524 -0
- package/src/Shared/Animations/face-scan.json +1 -0
- package/src/Shared/Animations/hole.json +76 -0
- package/src/Shared/Animations/hologram-scan.json +1 -0
- package/src/Shared/Animations/id-or-passport.json +1 -0
- package/src/Shared/Animations/light.json +1 -0
- package/src/Shared/Animations/loading.json +1 -0
- package/src/Shared/Animations/nfc-scan.json +1 -0
- package/src/Shared/Animations/nfc.json +1 -0
- package/src/Shared/Animations/scanning.json +1 -0
- package/src/Shared/Animations/success.json +1 -0
- package/src/Shared/Assets/trustchex-logo-black.png +0 -0
- package/src/Shared/Components/EIDScanner.tsx +472 -0
- package/src/Shared/Components/FaceCamera.tsx +267 -0
- package/src/Shared/Components/IdentityDocumentCamera.tsx +1377 -0
- package/src/Shared/Components/LanguageSelector.tsx +62 -0
- package/src/Shared/Components/NativeCircularProgress.tsx +76 -0
- package/src/Shared/Components/NativeProgressBar.tsx +74 -0
- package/src/Shared/Components/NavigationManager.tsx +275 -0
- package/src/Shared/Components/OTPCodeInput.tsx +93 -0
- package/src/Shared/Components/QrCodeScannerCamera.tsx +306 -0
- package/src/Shared/Contexts/AppContext.ts +47 -0
- package/src/Shared/EIDReader/abstractMRTDCardService.ts +195 -0
- package/src/Shared/EIDReader/accessKeySpec.ts +16 -0
- package/src/Shared/EIDReader/apduLevelBACCapable.ts +10 -0
- package/src/Shared/EIDReader/apduLevelReadBinaryCapable.ts +15 -0
- package/src/Shared/EIDReader/bacKey.ts +132 -0
- package/src/Shared/EIDReader/bacKeySpec.ts +26 -0
- package/src/Shared/EIDReader/cardFileInputStream.ts +188 -0
- package/src/Shared/EIDReader/cardService.ts +51 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlock.ts +5 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlockDecoder.ts +12 -0
- package/src/Shared/EIDReader/cbeff/biometricDataBlockEncoder.ts +6 -0
- package/src/Shared/EIDReader/cbeff/cbeffInfo.ts +100 -0
- package/src/Shared/EIDReader/cbeff/complexCBEFFInfo.ts +48 -0
- package/src/Shared/EIDReader/cbeff/faceDataBlockDecoder.ts +17 -0
- package/src/Shared/EIDReader/cbeff/iso781611.ts +79 -0
- package/src/Shared/EIDReader/cbeff/iso781611Decoder.ts +242 -0
- package/src/Shared/EIDReader/cbeff/iso781611Encoder.ts +91 -0
- package/src/Shared/EIDReader/cbeff/simpleCBEFFInfo.ts +26 -0
- package/src/Shared/EIDReader/cbeff/standardBiometricHeader.ts +116 -0
- package/src/Shared/EIDReader/cert/cvcPrincipal.ts +63 -0
- package/src/Shared/EIDReader/data/country.ts +76 -0
- package/src/Shared/EIDReader/data/gender.ts +36 -0
- package/src/Shared/EIDReader/data/isoCountry.ts +1251 -0
- package/src/Shared/EIDReader/data/unicodeCountry.ts +1516 -0
- package/src/Shared/EIDReader/defaultFileInfo.ts +41 -0
- package/src/Shared/EIDReader/defaultFileSystem.ts +287 -0
- package/src/Shared/EIDReader/eidReader.ts +113 -0
- package/src/Shared/EIDReader/eidService.ts +349 -0
- package/src/Shared/EIDReader/fileInfo.ts +5 -0
- package/src/Shared/EIDReader/fileSystemCardService.ts +32 -0
- package/src/Shared/EIDReader/fragment.ts +21 -0
- package/src/Shared/EIDReader/fragmentBuffer.ts +191 -0
- package/src/Shared/EIDReader/java/byteArrayInputStream.ts +103 -0
- package/src/Shared/EIDReader/java/byteArrayOutputStream.ts +67 -0
- package/src/Shared/EIDReader/java/dataInput.ts +16 -0
- package/src/Shared/EIDReader/java/dataInputStream.ts +203 -0
- package/src/Shared/EIDReader/java/dataOutputStream.ts +107 -0
- package/src/Shared/EIDReader/java/filterInputStream.ts +138 -0
- package/src/Shared/EIDReader/java/filterOutputStream.ts +126 -0
- package/src/Shared/EIDReader/java/inputStream.ts +186 -0
- package/src/Shared/EIDReader/java/inputStreamBuffer.ts +200 -0
- package/src/Shared/EIDReader/java/objectInputStream.ts +45 -0
- package/src/Shared/EIDReader/java/outputStream.ts +76 -0
- package/src/Shared/EIDReader/java/positionInputStream.ts +64 -0
- package/src/Shared/EIDReader/java/splittableInputStream.ts +69 -0
- package/src/Shared/EIDReader/lds/abstractImageInfo.ts +191 -0
- package/src/Shared/EIDReader/lds/abstractLDSFile.ts +106 -0
- package/src/Shared/EIDReader/lds/abstractLDSInfo.ts +31 -0
- package/src/Shared/EIDReader/lds/abstractListInfo.ts +72 -0
- package/src/Shared/EIDReader/lds/abstractTaggedLDSFile.ts +85 -0
- package/src/Shared/EIDReader/lds/cbeffDataGroup.ts +128 -0
- package/src/Shared/EIDReader/lds/cvcaFile.ts +112 -0
- package/src/Shared/EIDReader/lds/dataGroup.ts +11 -0
- package/src/Shared/EIDReader/lds/icao/comFile.ts +166 -0
- package/src/Shared/EIDReader/lds/icao/dg1File.ts +45 -0
- package/src/Shared/EIDReader/lds/icao/dg2File.ts +54 -0
- package/src/Shared/EIDReader/lds/icao/icaoCountry.ts +253 -0
- package/src/Shared/EIDReader/lds/icao/mrzInfo.ts +1669 -0
- package/src/Shared/EIDReader/lds/imageInfo.ts +58 -0
- package/src/Shared/EIDReader/lds/iso19794/faceImageInfo.ts +948 -0
- package/src/Shared/EIDReader/lds/iso19794/faceInfo.ts +198 -0
- package/src/Shared/EIDReader/lds/ldsElement.ts +8 -0
- package/src/Shared/EIDReader/lds/ldsFile.ts +14 -0
- package/src/Shared/EIDReader/nfcManagerCardService.ts +58 -0
- package/src/Shared/EIDReader/protocol/bacAPDUSender.ts +146 -0
- package/src/Shared/EIDReader/protocol/bacProtocol.ts +121 -0
- package/src/Shared/EIDReader/protocol/bacResult.ts +36 -0
- package/src/Shared/EIDReader/protocol/readBinaryAPDUSender.ts +251 -0
- package/src/Shared/EIDReader/protocol/secureMessagingAPDUSender.ts +170 -0
- package/src/Shared/EIDReader/secureMessagingWrapper.ts +361 -0
- package/src/Shared/EIDReader/smartcards/apduEvent.ts +38 -0
- package/src/Shared/EIDReader/smartcards/apduListener.ts +5 -0
- package/src/Shared/EIDReader/smartcards/apduWrapper.ts +10 -0
- package/src/Shared/EIDReader/smartcards/commandAPDU.ts +172 -0
- package/src/Shared/EIDReader/smartcards/fileSystemStructured.ts +7 -0
- package/src/Shared/EIDReader/smartcards/iso7816.ts +104 -0
- package/src/Shared/EIDReader/smartcards/responseAPDU.ts +44 -0
- package/src/Shared/EIDReader/tlv/asn1Constants.ts +46 -0
- package/src/Shared/EIDReader/tlv/tlv.utils.ts +201 -0
- package/src/Shared/EIDReader/tlv/tlvInputState.ts +186 -0
- package/src/Shared/EIDReader/tlv/tlvInputStream.ts +207 -0
- package/src/Shared/EIDReader/tlv/tlvOutputState.ts +244 -0
- package/src/Shared/EIDReader/tlv/tlvOutputStream.ts +112 -0
- package/src/Shared/EIDReader/tripleDesSecureMessagingWrapper.ts +48 -0
- package/src/Shared/EIDReader/utils/crypto.utils.ts +273 -0
- package/src/Shared/EIDReader/utils/random.ts +198 -0
- package/src/Shared/EIDReader/wrappedAPDUEvent.ts +36 -0
- package/src/Shared/Libs/camera.utils.ts +34 -0
- package/src/Shared/Libs/contains.ts +59 -0
- package/src/Shared/Libs/crypto.utils.ts +47 -0
- package/src/Shared/Libs/debounce.utils.ts +38 -0
- package/src/Shared/Libs/deeplink.utils.ts +19 -0
- package/src/Shared/Libs/demo.utils.ts +82 -0
- package/src/Shared/Libs/http-client.ts +148 -0
- package/src/Shared/Libs/mrz.utils.ts +110 -0
- package/src/Shared/Libs/native-device-info.utils.ts +50 -0
- package/src/Shared/Libs/native-keep-awake.utils.ts +104 -0
- package/src/Shared/Libs/opencv.utils.ts +40 -0
- package/src/Shared/Libs/promise.utils.ts +20 -0
- package/src/Shared/Libs/tts.utils.ts +40 -0
- package/src/Shared/Types/identificationInfo.ts +62 -0
- package/src/Shared/Types/instruction.ts +4 -0
- package/src/Shared/Types/livenessIntructionType.ts +8 -0
- package/src/Shared/Types/verificationSession.ts +17 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/components/BarcodeCamera.tsx +85 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.ts +79 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.ts +45 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/index.ts +64 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.ts +30 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/types.ts +82 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.ts +195 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.ts +135 -0
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.ts +84 -0
- package/src/Shared/VisionCameraPlugins/Cropper/index.ts +78 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/Camera.tsx +63 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.ts +44 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/index.ts +3 -0
- package/src/Shared/VisionCameraPlugins/FaceDetector/types.ts +99 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/Camera.tsx +76 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.ts +18 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.ts +7 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/index.ts +7 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/scanText.ts +27 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/translateText.ts +21 -0
- package/src/Shared/VisionCameraPlugins/TextRecognition/types.ts +141 -0
- package/src/Translation/Resources/en.ts +151 -0
- package/src/Translation/Resources/index.ts +2 -0
- package/src/Translation/Resources/tr.ts +152 -0
- package/src/Translation/index.ts +37 -0
- package/src/Trustchex.tsx +171 -0
- package/src/index.tsx +5 -0
|
@@ -0,0 +1,1251 @@
|
|
|
1
|
+
import { Country } from './country';
|
|
2
|
+
|
|
3
|
+
export class ISOCountry extends Country {
|
|
4
|
+
public static AD = new ISOCountry(32, 'AD', 'AND', 'Andorra', 'Andorran');
|
|
5
|
+
public static AE = new ISOCountry(
|
|
6
|
+
1924,
|
|
7
|
+
'AE',
|
|
8
|
+
'ARE',
|
|
9
|
+
'United Arab Emirates',
|
|
10
|
+
'Emirati, Emirian'
|
|
11
|
+
);
|
|
12
|
+
public static AF = new ISOCountry(4, 'AF', 'AFG', 'Afghanistan', 'Afghan');
|
|
13
|
+
public static AG = new ISOCountry(
|
|
14
|
+
40,
|
|
15
|
+
'AG',
|
|
16
|
+
'ATG',
|
|
17
|
+
'Antigua and Barbuda',
|
|
18
|
+
'Antiguan, Barbudan'
|
|
19
|
+
);
|
|
20
|
+
public static AI = new ISOCountry(1632, 'AI', 'AIA', 'Anguilla', 'Anguillan');
|
|
21
|
+
public static AL = new ISOCountry(8, 'AL', 'ALB', 'Albania', 'Albanian');
|
|
22
|
+
public static AM = new ISOCountry(81, 'AM', 'ARM', 'Armenia', 'Armenian');
|
|
23
|
+
public static AN = new ISOCountry(
|
|
24
|
+
1328,
|
|
25
|
+
'AN',
|
|
26
|
+
'ANT',
|
|
27
|
+
'Netherlands Antilles',
|
|
28
|
+
'Antillean'
|
|
29
|
+
);
|
|
30
|
+
public static AO = new ISOCountry(36, 'AO', 'AGO', 'Angola', 'Angolan');
|
|
31
|
+
public static AQ = new ISOCountry(16, 'AQ', 'ATA', 'Antarctica', 'Antarctic');
|
|
32
|
+
public static AR = new ISOCountry(
|
|
33
|
+
50,
|
|
34
|
+
'AR',
|
|
35
|
+
'ARG',
|
|
36
|
+
'Argentina',
|
|
37
|
+
'Argentine, Argentinean, Argentinian'
|
|
38
|
+
);
|
|
39
|
+
public static AS = new ISOCountry(
|
|
40
|
+
22,
|
|
41
|
+
'AS',
|
|
42
|
+
'ASM',
|
|
43
|
+
'American Samoa',
|
|
44
|
+
'American Samoan'
|
|
45
|
+
);
|
|
46
|
+
public static AT = new ISOCountry(64, 'AT', 'AUT', 'Austria', 'Austrian');
|
|
47
|
+
public static AU = new ISOCountry(54, 'AU', 'AUS', 'Australia', 'Australian');
|
|
48
|
+
public static AW = new ISOCountry(1331, 'AW', 'ABW', 'Aruba', 'Aruban');
|
|
49
|
+
public static AX = new ISOCountry(
|
|
50
|
+
584,
|
|
51
|
+
'AX',
|
|
52
|
+
'ALA',
|
|
53
|
+
'Aland Islands',
|
|
54
|
+
'Åland Island'
|
|
55
|
+
);
|
|
56
|
+
public static AZ = new ISOCountry(
|
|
57
|
+
49,
|
|
58
|
+
'AZ',
|
|
59
|
+
'AZE',
|
|
60
|
+
'Azerbaijan',
|
|
61
|
+
'Azerbaijani, Azeri'
|
|
62
|
+
);
|
|
63
|
+
public static BA = new ISOCountry(
|
|
64
|
+
112,
|
|
65
|
+
'BA',
|
|
66
|
+
'BIH',
|
|
67
|
+
'Bosnia and Herzegovina',
|
|
68
|
+
'Bosnian, Bosniak, Herzegovinian'
|
|
69
|
+
);
|
|
70
|
+
public static BB = new ISOCountry(82, 'BB', 'BRB', 'Barbados', 'Barbadian');
|
|
71
|
+
public static BD = new ISOCountry(
|
|
72
|
+
80,
|
|
73
|
+
'BD',
|
|
74
|
+
'BGD',
|
|
75
|
+
'Bangladesh',
|
|
76
|
+
'Bangladeshi'
|
|
77
|
+
);
|
|
78
|
+
public static BE = new ISOCountry(86, 'BE', 'BEL', 'Belgium', 'Belgian');
|
|
79
|
+
public static BF = new ISOCountry(
|
|
80
|
+
2132,
|
|
81
|
+
'BF',
|
|
82
|
+
'BFA',
|
|
83
|
+
'Burkina Faso',
|
|
84
|
+
'Burkinabe'
|
|
85
|
+
);
|
|
86
|
+
public static BG = new ISOCountry(256, 'BG', 'BGR', 'Bulgaria', 'Bulgarian');
|
|
87
|
+
public static BH = new ISOCountry(72, 'BH', 'BHR', 'Bahrain', 'Bahraini');
|
|
88
|
+
public static BI = new ISOCountry(264, 'BI', 'BDI', 'Burundi', 'Burundian');
|
|
89
|
+
public static BJ = new ISOCountry(516, 'BJ', 'BEN', 'Benin', 'Beninese');
|
|
90
|
+
public static BL = new ISOCountry(
|
|
91
|
+
1618,
|
|
92
|
+
'BL',
|
|
93
|
+
'BLM',
|
|
94
|
+
'Saint Barthlemy',
|
|
95
|
+
'Barthélemois'
|
|
96
|
+
);
|
|
97
|
+
public static BM = new ISOCountry(
|
|
98
|
+
96,
|
|
99
|
+
'BM',
|
|
100
|
+
'BMU',
|
|
101
|
+
'Bermuda',
|
|
102
|
+
'Bermudian, Bermudan'
|
|
103
|
+
);
|
|
104
|
+
public static BN = new ISOCountry(
|
|
105
|
+
150,
|
|
106
|
+
'BN',
|
|
107
|
+
'BRN',
|
|
108
|
+
'Brunei Darussalam',
|
|
109
|
+
'Bruneian'
|
|
110
|
+
);
|
|
111
|
+
public static BO = new ISOCountry(104, 'BO', 'BOL', 'Bolivia', 'Bolivian');
|
|
112
|
+
public static BQ = new ISOCountry(
|
|
113
|
+
1333,
|
|
114
|
+
'BQ',
|
|
115
|
+
'BES',
|
|
116
|
+
'Bonaire, Sint Eustatius and Saba',
|
|
117
|
+
'Bonairean'
|
|
118
|
+
);
|
|
119
|
+
public static BR = new ISOCountry(118, 'BR', 'BRA', 'Brazil', 'Brazilian');
|
|
120
|
+
public static BS = new ISOCountry(68, 'BS', 'BHS', 'Bahamas', 'Bahamian');
|
|
121
|
+
public static BT = new ISOCountry(100, 'BT', 'BTN', 'Bhutan', 'Bhutanese');
|
|
122
|
+
public static BV = new ISOCountry(
|
|
123
|
+
116,
|
|
124
|
+
'BV',
|
|
125
|
+
'BVT',
|
|
126
|
+
'Bouvet Island',
|
|
127
|
+
'Bouvet Island'
|
|
128
|
+
);
|
|
129
|
+
public static BW = new ISOCountry(114, 'BW', 'BWA', 'Botswana', 'Botswanan');
|
|
130
|
+
public static BY = new ISOCountry(274, 'BY', 'BLR', 'Belarus', 'Belarusian');
|
|
131
|
+
public static BZ = new ISOCountry(132, 'BZ', 'BLZ', 'Belize', 'Belizean');
|
|
132
|
+
public static CA = new ISOCountry(292, 'CA', 'CAN', 'Canada', 'Canadian');
|
|
133
|
+
public static CC = new ISOCountry(
|
|
134
|
+
358,
|
|
135
|
+
'CC',
|
|
136
|
+
'CCK',
|
|
137
|
+
'Cocos (Keeling) Islands',
|
|
138
|
+
'Cocos Island'
|
|
139
|
+
);
|
|
140
|
+
public static CD = new ISOCountry(
|
|
141
|
+
384,
|
|
142
|
+
'CD',
|
|
143
|
+
'COD',
|
|
144
|
+
'Congo the Democratic Republic of the',
|
|
145
|
+
'Congolese'
|
|
146
|
+
);
|
|
147
|
+
public static CF = new ISOCountry(
|
|
148
|
+
320,
|
|
149
|
+
'CF',
|
|
150
|
+
'CAF',
|
|
151
|
+
'Central African Republic',
|
|
152
|
+
'Central African'
|
|
153
|
+
);
|
|
154
|
+
public static CG = new ISOCountry(376, 'CG', 'COG', 'Congo', 'Congolese');
|
|
155
|
+
public static CH = new ISOCountry(1878, 'CH', 'CHE', 'Switzerland', 'Swiss');
|
|
156
|
+
public static CI = new ISOCountry(
|
|
157
|
+
900,
|
|
158
|
+
'CI',
|
|
159
|
+
'CIV',
|
|
160
|
+
"Cote d'Ivoire",
|
|
161
|
+
'Ivorian'
|
|
162
|
+
);
|
|
163
|
+
public static CK = new ISOCountry(
|
|
164
|
+
388,
|
|
165
|
+
'CK',
|
|
166
|
+
'COK',
|
|
167
|
+
'Cook Islands',
|
|
168
|
+
'Cook Island'
|
|
169
|
+
);
|
|
170
|
+
public static CL = new ISOCountry(338, 'CL', 'CHL', 'Chile', 'Chilean');
|
|
171
|
+
public static CM = new ISOCountry(
|
|
172
|
+
288,
|
|
173
|
+
'CM',
|
|
174
|
+
'CMR',
|
|
175
|
+
'Cameroon',
|
|
176
|
+
'Cameroonian'
|
|
177
|
+
);
|
|
178
|
+
public static CN = new ISOCountry(342, 'CN', 'CHN', 'China', 'Chinese');
|
|
179
|
+
public static CO = new ISOCountry(368, 'CO', 'COL', 'Colombia', 'Colombian');
|
|
180
|
+
public static CR = new ISOCountry(
|
|
181
|
+
392,
|
|
182
|
+
'CR',
|
|
183
|
+
'CRI',
|
|
184
|
+
'Costa Rica',
|
|
185
|
+
'Costa Rican'
|
|
186
|
+
);
|
|
187
|
+
public static CU = new ISOCountry(402, 'CU', 'CUB', 'Cuba', 'Cuban');
|
|
188
|
+
public static CV = new ISOCountry(
|
|
189
|
+
306,
|
|
190
|
+
'CV',
|
|
191
|
+
'CPV',
|
|
192
|
+
'Cape Verde',
|
|
193
|
+
'Cape Verdean'
|
|
194
|
+
);
|
|
195
|
+
public static CW = new ISOCountry(1329, 'CW', 'CUW', 'Curacao', 'Curacaoan');
|
|
196
|
+
public static CX = new ISOCountry(
|
|
197
|
+
354,
|
|
198
|
+
'CX',
|
|
199
|
+
'CXR',
|
|
200
|
+
'Christmas Island',
|
|
201
|
+
'Christmas Island'
|
|
202
|
+
);
|
|
203
|
+
public static CY = new ISOCountry(406, 'CY', 'CYP', 'Cyprus', 'Cypriot');
|
|
204
|
+
public static CZ = new ISOCountry(
|
|
205
|
+
515,
|
|
206
|
+
'CZ',
|
|
207
|
+
'CZE',
|
|
208
|
+
'Czech Republic',
|
|
209
|
+
'Czech'
|
|
210
|
+
);
|
|
211
|
+
public static DE = new ISOCountry(630, 'DE', 'DEU', 'Germany', 'German');
|
|
212
|
+
public static DJ = new ISOCountry(610, 'DJ', 'DJI', 'Djibouti', 'Djiboutian');
|
|
213
|
+
public static DK = new ISOCountry(520, 'DK', 'DNK', 'Denmark', 'Danish');
|
|
214
|
+
public static DM = new ISOCountry(530, 'DM', 'DMA', 'Dominica', 'Dominican');
|
|
215
|
+
public static DO = new ISOCountry(
|
|
216
|
+
532,
|
|
217
|
+
'DO',
|
|
218
|
+
'DOM',
|
|
219
|
+
'Dominican Republic',
|
|
220
|
+
'Dominican'
|
|
221
|
+
);
|
|
222
|
+
public static DZ = new ISOCountry(18, 'DZ', 'DZA', 'Algeria', 'Algerian');
|
|
223
|
+
public static EC = new ISOCountry(536, 'EC', 'ECU', 'Ecuador', 'Ecuadorian');
|
|
224
|
+
public static EE = new ISOCountry(563, 'EE', 'EST', 'Estonia', 'Estonian');
|
|
225
|
+
public static EG = new ISOCountry(2072, 'EG', 'EGY', 'Egypt', 'Egyptian');
|
|
226
|
+
public static EH = new ISOCountry(
|
|
227
|
+
932,
|
|
228
|
+
'EH',
|
|
229
|
+
'ESH',
|
|
230
|
+
'Western Sahara',
|
|
231
|
+
'Sahrawian, Sahraouian'
|
|
232
|
+
);
|
|
233
|
+
public static ER = new ISOCountry(538, 'ER', 'ERI', 'Eritrea', 'Eritrean');
|
|
234
|
+
public static ES = new ISOCountry(724, 'ES', 'ESP', 'Spain', 'Spanish');
|
|
235
|
+
public static ET = new ISOCountry(246, 'ET', 'ETH', 'Ethiopia', 'Ethiopian');
|
|
236
|
+
public static FI = new ISOCountry(572, 'FI', 'FIN', 'Finland', 'Finnish');
|
|
237
|
+
public static FJ = new ISOCountry(576, 'FJ', 'FJI', 'Fiji', 'Fijian');
|
|
238
|
+
public static FK = new ISOCountry(
|
|
239
|
+
568,
|
|
240
|
+
'FK',
|
|
241
|
+
'FLK',
|
|
242
|
+
'Falkland Islands (Malvinas)',
|
|
243
|
+
'Falkland Island'
|
|
244
|
+
);
|
|
245
|
+
public static FM = new ISOCountry(
|
|
246
|
+
1590,
|
|
247
|
+
'FM',
|
|
248
|
+
'FSM',
|
|
249
|
+
'Micronesia Federated States of',
|
|
250
|
+
'Micronesian'
|
|
251
|
+
);
|
|
252
|
+
public static FO = new ISOCountry(
|
|
253
|
+
1740,
|
|
254
|
+
'FO',
|
|
255
|
+
'FRO',
|
|
256
|
+
'Faroe Islands',
|
|
257
|
+
'Faroese'
|
|
258
|
+
);
|
|
259
|
+
public static FR = new ISOCountry(728, 'FR', 'FRA', 'France', 'French');
|
|
260
|
+
public static GA = new ISOCountry(632, 'GA', 'GAB', 'Gabon', 'Gabonese');
|
|
261
|
+
public static GB = new ISOCountry(
|
|
262
|
+
1016,
|
|
263
|
+
'GB',
|
|
264
|
+
'GBR',
|
|
265
|
+
'United Kingdom',
|
|
266
|
+
'British'
|
|
267
|
+
);
|
|
268
|
+
public static GD = new ISOCountry(336, 'GD', 'GRD', 'Grenada', 'Grenadian');
|
|
269
|
+
public static GE = new ISOCountry(637, 'GE', 'GEO', 'Georgia', 'Georgian');
|
|
270
|
+
public static GF = new ISOCountry(
|
|
271
|
+
730,
|
|
272
|
+
'GF',
|
|
273
|
+
'GUF',
|
|
274
|
+
'French Guiana',
|
|
275
|
+
'French Guianese'
|
|
276
|
+
);
|
|
277
|
+
public static GG = new ISOCountry(
|
|
278
|
+
1441,
|
|
279
|
+
'GG',
|
|
280
|
+
'GGY',
|
|
281
|
+
'Guernsey',
|
|
282
|
+
'Channel Islander'
|
|
283
|
+
);
|
|
284
|
+
public static GH = new ISOCountry(652, 'GH', 'GHA', 'Ghana', 'Ghanaian');
|
|
285
|
+
public static GI = new ISOCountry(
|
|
286
|
+
736,
|
|
287
|
+
'GI',
|
|
288
|
+
'GIB',
|
|
289
|
+
'Gibraltar',
|
|
290
|
+
'Gibraltarian'
|
|
291
|
+
);
|
|
292
|
+
public static GL = new ISOCountry(
|
|
293
|
+
740,
|
|
294
|
+
'GL',
|
|
295
|
+
'GRL',
|
|
296
|
+
'Greenland',
|
|
297
|
+
'Greenlandic'
|
|
298
|
+
);
|
|
299
|
+
public static GM = new ISOCountry(654, 'GM', 'GMB', 'Gambia', 'Gambian');
|
|
300
|
+
public static GN = new ISOCountry(660, 'GN', 'GIN', 'Guinea', 'Guinean');
|
|
301
|
+
public static GP = new ISOCountry(
|
|
302
|
+
742,
|
|
303
|
+
'GP',
|
|
304
|
+
'GLP',
|
|
305
|
+
'Guadeloupe',
|
|
306
|
+
'Guadeloupian'
|
|
307
|
+
);
|
|
308
|
+
public static GQ = new ISOCountry(
|
|
309
|
+
226,
|
|
310
|
+
'GQ',
|
|
311
|
+
'GNQ',
|
|
312
|
+
'Equatorial Guinea',
|
|
313
|
+
'Equatorial Guinean'
|
|
314
|
+
);
|
|
315
|
+
public static GR = new ISOCountry(
|
|
316
|
+
390,
|
|
317
|
+
'GR',
|
|
318
|
+
'GRC',
|
|
319
|
+
'Greece',
|
|
320
|
+
'Greek, Hellenic'
|
|
321
|
+
);
|
|
322
|
+
public static GS = new ISOCountry(
|
|
323
|
+
569,
|
|
324
|
+
'GS',
|
|
325
|
+
'SGS',
|
|
326
|
+
'South Georgia and the South Sandwich Islands',
|
|
327
|
+
'South Georgia and the South Sandwich Islander'
|
|
328
|
+
);
|
|
329
|
+
public static GT = new ISOCountry(
|
|
330
|
+
240,
|
|
331
|
+
'GT',
|
|
332
|
+
'GTM',
|
|
333
|
+
'Guatemala',
|
|
334
|
+
'Guatemalan'
|
|
335
|
+
);
|
|
336
|
+
public static GU = new ISOCountry(860, 'GU', 'GUM', 'Guam', 'Guamanian');
|
|
337
|
+
public static GW = new ISOCountry(
|
|
338
|
+
662,
|
|
339
|
+
'GW',
|
|
340
|
+
'GNB',
|
|
341
|
+
'Guinea-Bissau',
|
|
342
|
+
'Bissau-Guinean'
|
|
343
|
+
);
|
|
344
|
+
public static GY = new ISOCountry(238, 'GY', 'GUY', 'Guyana', 'Guyanese');
|
|
345
|
+
public static HK = new ISOCountry(
|
|
346
|
+
2384,
|
|
347
|
+
'HK',
|
|
348
|
+
'HKG',
|
|
349
|
+
'Hong Kong',
|
|
350
|
+
'Hong Kong Chinese'
|
|
351
|
+
);
|
|
352
|
+
public static HM = new ISOCountry(
|
|
353
|
+
120,
|
|
354
|
+
'HM',
|
|
355
|
+
'HMD',
|
|
356
|
+
'Heard Island and McDonald Islands',
|
|
357
|
+
'Heard and McDonald Islander'
|
|
358
|
+
);
|
|
359
|
+
public static HN = new ISOCountry(248, 'HN', 'HND', 'Honduras', 'Honduran');
|
|
360
|
+
public static HR = new ISOCountry(1913, 'HR', 'HRV', 'Croatia', 'Croatian');
|
|
361
|
+
public static HT = new ISOCountry(540, 'HT', 'HTI', 'Haiti', 'Haitian');
|
|
362
|
+
public static HU = new ISOCountry(578, 'HU', 'HUN', 'Hungary', 'Hungarian');
|
|
363
|
+
public static ID = new ISOCountry(
|
|
364
|
+
580,
|
|
365
|
+
'ID',
|
|
366
|
+
'IDN',
|
|
367
|
+
'Indonesia',
|
|
368
|
+
'Indonesian'
|
|
369
|
+
);
|
|
370
|
+
public static IE = new ISOCountry(372, 'IE', 'IRL', 'Ireland', 'Irish');
|
|
371
|
+
public static IL = new ISOCountry(582, 'IL', 'ISR', 'Israel', 'Israeli');
|
|
372
|
+
public static IM = new ISOCountry(1442, 'IM', 'IMN', 'Isle of Man', 'Manx');
|
|
373
|
+
public static IN = new ISOCountry(584, 'IN', 'IND', 'India', 'Indian');
|
|
374
|
+
public static IO = new ISOCountry(
|
|
375
|
+
186,
|
|
376
|
+
'IO',
|
|
377
|
+
'IOT',
|
|
378
|
+
'British Indian Ocean Territory',
|
|
379
|
+
'Indian'
|
|
380
|
+
);
|
|
381
|
+
public static IQ = new ISOCountry(588, 'IQ', 'IRQ', 'Iraq', 'Iraqi');
|
|
382
|
+
public static IR = new ISOCountry(
|
|
383
|
+
587,
|
|
384
|
+
'IR',
|
|
385
|
+
'IRN',
|
|
386
|
+
'Iran',
|
|
387
|
+
'Iranian, Persian'
|
|
388
|
+
);
|
|
389
|
+
public static IS = new ISOCountry(590, 'IS', 'ISL', 'Iceland', 'Icelandic');
|
|
390
|
+
public static IT = new ISOCountry(594, 'IT', 'ITA', 'Italy', 'Italian');
|
|
391
|
+
public static JE = new ISOCountry(
|
|
392
|
+
1443,
|
|
393
|
+
'JE',
|
|
394
|
+
'JEY',
|
|
395
|
+
'Jersey',
|
|
396
|
+
'Channel Islander'
|
|
397
|
+
);
|
|
398
|
+
public static JM = new ISOCountry(352, 'JM', 'JAM', 'Jamaica', 'Jamaican');
|
|
399
|
+
public static JO = new ISOCountry(598, 'JO', 'JOR', 'Jordan', 'Jordanian');
|
|
400
|
+
public static JP = new ISOCountry(600, 'JP', 'JPN', 'Japan', 'Japanese');
|
|
401
|
+
public static KE = new ISOCountry(652, 'KE', 'KEN', 'Kenya', 'Kenyan');
|
|
402
|
+
public static KG = new ISOCountry(
|
|
403
|
+
634,
|
|
404
|
+
'KG',
|
|
405
|
+
'KGZ',
|
|
406
|
+
'Kyrgyzstan',
|
|
407
|
+
'Kyrgyzstani'
|
|
408
|
+
);
|
|
409
|
+
public static KH = new ISOCountry(612, 'KH', 'KHM', 'Cambodia', 'Cambodian');
|
|
410
|
+
public static KI = new ISOCountry(636, 'KI', 'KIR', 'Kiribati', 'I-Kiribati');
|
|
411
|
+
public static KM = new ISOCountry(
|
|
412
|
+
648,
|
|
413
|
+
'KM',
|
|
414
|
+
'COM',
|
|
415
|
+
'Comoros',
|
|
416
|
+
'Comoran, Comorian'
|
|
417
|
+
);
|
|
418
|
+
public static KN = new ISOCountry(
|
|
419
|
+
517,
|
|
420
|
+
'KN',
|
|
421
|
+
'KNA',
|
|
422
|
+
'Saint Kitts and Nevis',
|
|
423
|
+
'Kittian, Nevisian'
|
|
424
|
+
);
|
|
425
|
+
public static KP = new ISOCountry(
|
|
426
|
+
551,
|
|
427
|
+
'KP',
|
|
428
|
+
'PRK',
|
|
429
|
+
"Korea Democratic People's Republic of",
|
|
430
|
+
'North Korean'
|
|
431
|
+
);
|
|
432
|
+
public static KR = new ISOCountry(
|
|
433
|
+
676,
|
|
434
|
+
'KR',
|
|
435
|
+
'KOR',
|
|
436
|
+
'Korea Republic of',
|
|
437
|
+
'South Korean'
|
|
438
|
+
);
|
|
439
|
+
public static KW = new ISOCountry(678, 'KW', 'KWT', 'Kuwait', 'Kuwaiti');
|
|
440
|
+
public static KY = new ISOCountry(
|
|
441
|
+
1594,
|
|
442
|
+
'KY',
|
|
443
|
+
'CYM',
|
|
444
|
+
'Cayman Islands',
|
|
445
|
+
'Caymanian'
|
|
446
|
+
);
|
|
447
|
+
public static KZ = new ISOCountry(
|
|
448
|
+
683,
|
|
449
|
+
'KZ',
|
|
450
|
+
'KAZ',
|
|
451
|
+
'Kazakhstan',
|
|
452
|
+
'Kazakhstani, Kazakh'
|
|
453
|
+
);
|
|
454
|
+
public static LA = new ISOCountry(
|
|
455
|
+
688,
|
|
456
|
+
'LA',
|
|
457
|
+
'LAO',
|
|
458
|
+
"Lao People's Democratic Republic",
|
|
459
|
+
'Laotian'
|
|
460
|
+
);
|
|
461
|
+
public static LB = new ISOCountry(690, 'LB', 'LBN', 'Lebanon', 'Lebanese');
|
|
462
|
+
public static LC = new ISOCountry(
|
|
463
|
+
748,
|
|
464
|
+
'LC',
|
|
465
|
+
'LCA',
|
|
466
|
+
'Saint Lucia',
|
|
467
|
+
'Saint Lucian'
|
|
468
|
+
);
|
|
469
|
+
public static LI = new ISOCountry(
|
|
470
|
+
694,
|
|
471
|
+
'LI',
|
|
472
|
+
'LIE',
|
|
473
|
+
'Liechtenstein',
|
|
474
|
+
'Liechtenstein'
|
|
475
|
+
);
|
|
476
|
+
public static LK = new ISOCountry(
|
|
477
|
+
696,
|
|
478
|
+
'LK',
|
|
479
|
+
'LKA',
|
|
480
|
+
'Sri Lanka',
|
|
481
|
+
'Sri Lankan'
|
|
482
|
+
);
|
|
483
|
+
public static LR = new ISOCountry(702, 'LR', 'LBR', 'Liberia', 'Liberian');
|
|
484
|
+
public static LS = new ISOCountry(
|
|
485
|
+
704,
|
|
486
|
+
'LS',
|
|
487
|
+
'LSO',
|
|
488
|
+
'Lesotho',
|
|
489
|
+
'Mosotho, Basotho'
|
|
490
|
+
);
|
|
491
|
+
public static LT = new ISOCountry(
|
|
492
|
+
705,
|
|
493
|
+
'LT',
|
|
494
|
+
'LTU',
|
|
495
|
+
'Lithuania',
|
|
496
|
+
'Lithuanian'
|
|
497
|
+
);
|
|
498
|
+
public static LU = new ISOCountry(
|
|
499
|
+
715,
|
|
500
|
+
'LU',
|
|
501
|
+
'LUX',
|
|
502
|
+
'Luxembourg',
|
|
503
|
+
'Luxembourg, Luxembourgish'
|
|
504
|
+
);
|
|
505
|
+
public static LV = new ISOCountry(717, 'LV', 'LVA', 'Latvia', 'Latvian');
|
|
506
|
+
public static LY = new ISOCountry(720, 'LY', 'LBY', 'Libya', 'Libyan');
|
|
507
|
+
public static MA = new ISOCountry(732, 'MA', 'MAR', 'Morocco', 'Moroccan');
|
|
508
|
+
public static MC = new ISOCountry(
|
|
509
|
+
734,
|
|
510
|
+
'MC',
|
|
511
|
+
'MCO',
|
|
512
|
+
'Monaco',
|
|
513
|
+
'Monacan, Monegasque'
|
|
514
|
+
);
|
|
515
|
+
public static MD = new ISOCountry(
|
|
516
|
+
738,
|
|
517
|
+
'MD',
|
|
518
|
+
'MDA',
|
|
519
|
+
'Moldova Republic of',
|
|
520
|
+
'Moldovan'
|
|
521
|
+
);
|
|
522
|
+
public static ME = new ISOCountry(
|
|
523
|
+
1919,
|
|
524
|
+
'ME',
|
|
525
|
+
'MNE',
|
|
526
|
+
'Montenegro',
|
|
527
|
+
'Montenegrin'
|
|
528
|
+
);
|
|
529
|
+
public static MF = new ISOCountry(
|
|
530
|
+
5820,
|
|
531
|
+
'MF',
|
|
532
|
+
'MAF',
|
|
533
|
+
'Saint Martin (French part)',
|
|
534
|
+
'Saint-Martinoise'
|
|
535
|
+
);
|
|
536
|
+
public static MG = new ISOCountry(746, 'MG', 'MDG', 'Madagascar', 'Malagasy');
|
|
537
|
+
public static MH = new ISOCountry(
|
|
538
|
+
750,
|
|
539
|
+
'MH',
|
|
540
|
+
'MHL',
|
|
541
|
+
'Marshall Islands',
|
|
542
|
+
'Marshallese'
|
|
543
|
+
);
|
|
544
|
+
public static MK = new ISOCountry(
|
|
545
|
+
2196,
|
|
546
|
+
'MK',
|
|
547
|
+
'MKD',
|
|
548
|
+
'Macedonia the former Yugoslav Republic of',
|
|
549
|
+
'Macedonian'
|
|
550
|
+
);
|
|
551
|
+
public static ML = new ISOCountry(752, 'ML', 'MLI', 'Mali', 'Malian');
|
|
552
|
+
public static MM = new ISOCountry(
|
|
553
|
+
754,
|
|
554
|
+
'MM',
|
|
555
|
+
'MMR',
|
|
556
|
+
'Myanmar',
|
|
557
|
+
'Myanmarian, Myanmarese'
|
|
558
|
+
);
|
|
559
|
+
public static MN = new ISOCountry(5801, 'MN', 'MNG', 'Mongolia', 'Mongolian');
|
|
560
|
+
public static MO = new ISOCountry(5802, 'MO', 'MAC', 'Macao', 'Macanese');
|
|
561
|
+
public static MP = new ISOCountry(
|
|
562
|
+
2984,
|
|
563
|
+
'MP',
|
|
564
|
+
'MNP',
|
|
565
|
+
'Northern Mariana Islands',
|
|
566
|
+
'Northern Marianan'
|
|
567
|
+
);
|
|
568
|
+
public static MQ = new ISOCountry(
|
|
569
|
+
756,
|
|
570
|
+
'MQ',
|
|
571
|
+
'MTQ',
|
|
572
|
+
'Martinique',
|
|
573
|
+
'Martinican'
|
|
574
|
+
);
|
|
575
|
+
public static MR = new ISOCountry(
|
|
576
|
+
758,
|
|
577
|
+
'MR',
|
|
578
|
+
'MRT',
|
|
579
|
+
'Mauritania',
|
|
580
|
+
'Mauritanian'
|
|
581
|
+
);
|
|
582
|
+
public static MS = new ISOCountry(
|
|
583
|
+
760,
|
|
584
|
+
'MS',
|
|
585
|
+
'MSR',
|
|
586
|
+
'Montserrat',
|
|
587
|
+
'Montserratian'
|
|
588
|
+
);
|
|
589
|
+
public static MT = new ISOCountry(764, 'MT', 'MLT', 'Malta', 'Maltese');
|
|
590
|
+
public static MU = new ISOCountry(768, 'MU', 'MUS', 'Mauritius', 'Mauritian');
|
|
591
|
+
public static MV = new ISOCountry(770, 'MV', 'MDV', 'Maldives', 'Maldivian');
|
|
592
|
+
public static MW = new ISOCountry(772, 'MW', 'MWI', 'Malawi', 'Malawian');
|
|
593
|
+
public static MX = new ISOCountry(774, 'MX', 'MEX', 'Mexico', 'Mexican');
|
|
594
|
+
public static MY = new ISOCountry(776, 'MY', 'MYS', 'Malaysia', 'Malaysian');
|
|
595
|
+
public static MZ = new ISOCountry(
|
|
596
|
+
778,
|
|
597
|
+
'MZ',
|
|
598
|
+
'MOZ',
|
|
599
|
+
'Mozambique',
|
|
600
|
+
'Mozambican'
|
|
601
|
+
);
|
|
602
|
+
public static NA = new ISOCountry(780, 'NA', 'NAM', 'Namibia', 'Namibian');
|
|
603
|
+
public static NC = new ISOCountry(
|
|
604
|
+
1584,
|
|
605
|
+
'NC',
|
|
606
|
+
'NCL',
|
|
607
|
+
'New Caledonia',
|
|
608
|
+
'New Caledonian'
|
|
609
|
+
);
|
|
610
|
+
public static NE = new ISOCountry(790, 'NE', 'NER', 'Niger', 'Nigerien');
|
|
611
|
+
public static NF = new ISOCountry(
|
|
612
|
+
1586,
|
|
613
|
+
'NF',
|
|
614
|
+
'NFK',
|
|
615
|
+
'Norfolk Island',
|
|
616
|
+
'Norfolk Islander'
|
|
617
|
+
);
|
|
618
|
+
public static NG = new ISOCountry(792, 'NG', 'NGA', 'Nigeria', 'Nigerian');
|
|
619
|
+
public static NI = new ISOCountry(
|
|
620
|
+
796,
|
|
621
|
+
'NI',
|
|
622
|
+
'NIC',
|
|
623
|
+
'Nicaragua',
|
|
624
|
+
'Nicaraguan'
|
|
625
|
+
);
|
|
626
|
+
public static NL = new ISOCountry(799, 'NL', 'NLD', 'Netherlands', 'Dutch');
|
|
627
|
+
public static NO = new ISOCountry(802, 'NO', 'NOR', 'Norway', 'Norwegian');
|
|
628
|
+
public static NP = new ISOCountry(806, 'NP', 'NPL', 'Nepal', 'Nepalese');
|
|
629
|
+
public static NR = new ISOCountry(812, 'NR', 'NRU', 'Nauru', 'Nauruan');
|
|
630
|
+
public static NU = new ISOCountry(1588, 'NU', 'NIU', 'Niue', 'Niuean');
|
|
631
|
+
public static NZ = new ISOCountry(
|
|
632
|
+
816,
|
|
633
|
+
'NZ',
|
|
634
|
+
'NZL',
|
|
635
|
+
'New Zealand',
|
|
636
|
+
'New Zealand, New Zealand Maori'
|
|
637
|
+
);
|
|
638
|
+
public static OM = new ISOCountry(818, 'OM', 'OMN', 'Oman', 'Omani');
|
|
639
|
+
public static PA = new ISOCountry(820, 'PA', 'PAN', 'Panama', 'Panamanian');
|
|
640
|
+
public static PE = new ISOCountry(823, 'PE', 'PER', 'Peru', 'Peruvian');
|
|
641
|
+
public static PF = new ISOCountry(
|
|
642
|
+
1606,
|
|
643
|
+
'PF',
|
|
644
|
+
'PYF',
|
|
645
|
+
'French Polynesia',
|
|
646
|
+
'French Polynesian'
|
|
647
|
+
);
|
|
648
|
+
public static PG = new ISOCountry(
|
|
649
|
+
827,
|
|
650
|
+
'PG',
|
|
651
|
+
'PNG',
|
|
652
|
+
'Papua New Guinea',
|
|
653
|
+
'Papua New Guinean, Papuan'
|
|
654
|
+
);
|
|
655
|
+
public static PH = new ISOCountry(
|
|
656
|
+
830,
|
|
657
|
+
'PH',
|
|
658
|
+
'PHL',
|
|
659
|
+
'Philippines',
|
|
660
|
+
'Philippine, Filipino'
|
|
661
|
+
);
|
|
662
|
+
public static PK = new ISOCountry(836, 'PK', 'PAK', 'Pakistan', 'Pakistani');
|
|
663
|
+
public static PL = new ISOCountry(840, 'PL', 'POL', 'Poland', 'Polish');
|
|
664
|
+
public static PM = new ISOCountry(
|
|
665
|
+
1608,
|
|
666
|
+
'PM',
|
|
667
|
+
'SPM',
|
|
668
|
+
'Saint Pierre and Miquelon',
|
|
669
|
+
'Saint-Pierrais, Miquelonnais'
|
|
670
|
+
);
|
|
671
|
+
public static PN = new ISOCountry(
|
|
672
|
+
1610,
|
|
673
|
+
'PN',
|
|
674
|
+
'PCN',
|
|
675
|
+
'Pitcairn',
|
|
676
|
+
'Pitcairn Islander'
|
|
677
|
+
);
|
|
678
|
+
public static PR = new ISOCountry(
|
|
679
|
+
850,
|
|
680
|
+
'PR',
|
|
681
|
+
'PRI',
|
|
682
|
+
'Puerto Rico',
|
|
683
|
+
'Puerto Rican'
|
|
684
|
+
);
|
|
685
|
+
public static PS = new ISOCountry(
|
|
686
|
+
629,
|
|
687
|
+
'PS',
|
|
688
|
+
'PSE',
|
|
689
|
+
'Palestinian Territory Occupied',
|
|
690
|
+
'Palestinian'
|
|
691
|
+
);
|
|
692
|
+
public static PT = new ISOCountry(855, 'PT', 'PRT', 'Portugal', 'Portuguese');
|
|
693
|
+
public static PW = new ISOCountry(858, 'PW', 'PLW', 'Palau', 'Palauan');
|
|
694
|
+
public static PY = new ISOCountry(860, 'PY', 'PRY', 'Paraguay', 'Paraguayan');
|
|
695
|
+
public static QA = new ISOCountry(862, 'QA', 'QAT', 'Qatar', 'Qatari');
|
|
696
|
+
public static RE = new ISOCountry(
|
|
697
|
+
1612,
|
|
698
|
+
'RE',
|
|
699
|
+
'REU',
|
|
700
|
+
'Réunion',
|
|
701
|
+
'Réunionese, Réunionnais'
|
|
702
|
+
);
|
|
703
|
+
public static RO = new ISOCountry(866, 'RO', 'ROU', 'Romania', 'Romanian');
|
|
704
|
+
public static RS = new ISOCountry(1920, 'RS', 'SRB', 'Serbia', 'Serbian');
|
|
705
|
+
public static RU = new ISOCountry(
|
|
706
|
+
870,
|
|
707
|
+
'RU',
|
|
708
|
+
'RUS',
|
|
709
|
+
'Russian Federation',
|
|
710
|
+
'Russian'
|
|
711
|
+
);
|
|
712
|
+
public static RW = new ISOCountry(874, 'RW', 'RWA', 'Rwanda', 'Rwandan');
|
|
713
|
+
public static SA = new ISOCountry(
|
|
714
|
+
876,
|
|
715
|
+
'SA',
|
|
716
|
+
'SAU',
|
|
717
|
+
'Saudi Arabia',
|
|
718
|
+
'Saudi, Saudi Arabian'
|
|
719
|
+
);
|
|
720
|
+
public static SB = new ISOCountry(
|
|
721
|
+
878,
|
|
722
|
+
'SB',
|
|
723
|
+
'SLB',
|
|
724
|
+
'Solomon Islands',
|
|
725
|
+
'Solomon Islander'
|
|
726
|
+
);
|
|
727
|
+
public static SC = new ISOCountry(
|
|
728
|
+
882,
|
|
729
|
+
'SC',
|
|
730
|
+
'SYC',
|
|
731
|
+
'Seychelles',
|
|
732
|
+
'Seychellois'
|
|
733
|
+
);
|
|
734
|
+
public static SD = new ISOCountry(886, 'SD', 'SDN', 'Sudan', 'Sudanese');
|
|
735
|
+
public static SE = new ISOCountry(890, 'SE', 'SWE', 'Sweden', 'Swedish');
|
|
736
|
+
public static SG = new ISOCountry(
|
|
737
|
+
894,
|
|
738
|
+
'SG',
|
|
739
|
+
'SGP',
|
|
740
|
+
'Singapore',
|
|
741
|
+
'Singaporean'
|
|
742
|
+
);
|
|
743
|
+
public static SH = new ISOCountry(
|
|
744
|
+
1925,
|
|
745
|
+
'SH',
|
|
746
|
+
'SHN',
|
|
747
|
+
'Saint Helena Ascension and Tristan da Cunha',
|
|
748
|
+
'Saint Helenian'
|
|
749
|
+
);
|
|
750
|
+
public static SI = new ISOCountry(1927, 'SI', 'SVN', 'Slovenia', 'Slovenian');
|
|
751
|
+
public static SJ = new ISOCountry(
|
|
752
|
+
1928,
|
|
753
|
+
'SJ',
|
|
754
|
+
'SJM',
|
|
755
|
+
'Svalbard and Jan Mayen',
|
|
756
|
+
'Svalbard'
|
|
757
|
+
);
|
|
758
|
+
public static SK = new ISOCountry(1929, 'SK', 'SVK', 'Slovakia', 'Slovak');
|
|
759
|
+
public static SL = new ISOCountry(
|
|
760
|
+
894,
|
|
761
|
+
'SL',
|
|
762
|
+
'SLE',
|
|
763
|
+
'Sierra Leone',
|
|
764
|
+
'Sierra Leonean'
|
|
765
|
+
);
|
|
766
|
+
public static SM = new ISOCountry(
|
|
767
|
+
899,
|
|
768
|
+
'SM',
|
|
769
|
+
'SMR',
|
|
770
|
+
'San Marino',
|
|
771
|
+
'Sammarinese'
|
|
772
|
+
);
|
|
773
|
+
public static SN = new ISOCountry(906, 'SN', 'SEN', 'Senegal', 'Senegalese');
|
|
774
|
+
public static SO = new ISOCountry(909, 'SO', 'SOM', 'Somalia', 'Somali');
|
|
775
|
+
public static SR = new ISOCountry(911, 'SR', 'SUR', 'Suriname', 'Surinamese');
|
|
776
|
+
public static SS = new ISOCountry(
|
|
777
|
+
914,
|
|
778
|
+
'SS',
|
|
779
|
+
'SSD',
|
|
780
|
+
'South Sudan',
|
|
781
|
+
'South Sudanese'
|
|
782
|
+
);
|
|
783
|
+
public static ST = new ISOCountry(
|
|
784
|
+
916,
|
|
785
|
+
'ST',
|
|
786
|
+
'STP',
|
|
787
|
+
'Sao Tome and Principe',
|
|
788
|
+
'Sao Tomean'
|
|
789
|
+
);
|
|
790
|
+
public static SV = new ISOCountry(
|
|
791
|
+
918,
|
|
792
|
+
'SV',
|
|
793
|
+
'SLV',
|
|
794
|
+
'El Salvador',
|
|
795
|
+
'Salvadoran'
|
|
796
|
+
);
|
|
797
|
+
public static SX = new ISOCountry(
|
|
798
|
+
355,
|
|
799
|
+
'SX',
|
|
800
|
+
'SXM',
|
|
801
|
+
'Sint Maarten (Dutch part)',
|
|
802
|
+
'Sint Maarten'
|
|
803
|
+
);
|
|
804
|
+
public static SY = new ISOCountry(
|
|
805
|
+
923,
|
|
806
|
+
'SY',
|
|
807
|
+
'SYR',
|
|
808
|
+
'Syrian Arab Republic',
|
|
809
|
+
'Syrian'
|
|
810
|
+
);
|
|
811
|
+
public static SZ = new ISOCountry(926, 'SZ', 'SWZ', 'Swaziland', 'Swazi');
|
|
812
|
+
public static TC = new ISOCountry(
|
|
813
|
+
1614,
|
|
814
|
+
'TC',
|
|
815
|
+
'TCA',
|
|
816
|
+
'Turks and Caicos Islands',
|
|
817
|
+
'Turks and Caicos Islander'
|
|
818
|
+
);
|
|
819
|
+
public static TD = new ISOCountry(930, 'TD', 'TCD', 'Chad', 'Chadian');
|
|
820
|
+
public static TF = new ISOCountry(
|
|
821
|
+
1616,
|
|
822
|
+
'TF',
|
|
823
|
+
'ATF',
|
|
824
|
+
'French Southern Territories',
|
|
825
|
+
'French Southern Territories'
|
|
826
|
+
);
|
|
827
|
+
public static TG = new ISOCountry(932, 'TG', 'TGO', 'Togo', 'Togolese');
|
|
828
|
+
public static TH = new ISOCountry(934, 'TH', 'THA', 'Thailand', 'Thai');
|
|
829
|
+
public static TJ = new ISOCountry(
|
|
830
|
+
936,
|
|
831
|
+
'TJ',
|
|
832
|
+
'TJK',
|
|
833
|
+
'Tajikistan',
|
|
834
|
+
'Tajikistani'
|
|
835
|
+
);
|
|
836
|
+
public static TK = new ISOCountry(939, 'TK', 'TKL', 'Tokelau', 'Tokelauan');
|
|
837
|
+
public static TL = new ISOCountry(
|
|
838
|
+
947,
|
|
839
|
+
'TL',
|
|
840
|
+
'TLS',
|
|
841
|
+
'Timor-Leste',
|
|
842
|
+
'Timorese'
|
|
843
|
+
);
|
|
844
|
+
public static TM = new ISOCountry(
|
|
845
|
+
949,
|
|
846
|
+
'TM',
|
|
847
|
+
'TKM',
|
|
848
|
+
'Turkmenistan',
|
|
849
|
+
'Turkmen, Turkmenistani'
|
|
850
|
+
);
|
|
851
|
+
public static TN = new ISOCountry(954, 'TN', 'TUN', 'Tunisia', 'Tunisian');
|
|
852
|
+
public static TO = new ISOCountry(956, 'TO', 'TON', 'Tonga', 'Tongan');
|
|
853
|
+
public static TR = new ISOCountry(960, 'TR', 'TUR', 'Turkey', 'Turkish');
|
|
854
|
+
public static TT = new ISOCountry(
|
|
855
|
+
962,
|
|
856
|
+
'TT',
|
|
857
|
+
'TTO',
|
|
858
|
+
'Trinidad and Tobago',
|
|
859
|
+
'Trinidadian, Tobagonian'
|
|
860
|
+
);
|
|
861
|
+
public static TV = new ISOCountry(964, 'TV', 'TUV', 'Tuvalu', 'Tuvaluan');
|
|
862
|
+
public static TW = new ISOCountry(
|
|
863
|
+
344,
|
|
864
|
+
'TW',
|
|
865
|
+
'TWN',
|
|
866
|
+
'Taiwan Province of China',
|
|
867
|
+
'Taiwanese'
|
|
868
|
+
);
|
|
869
|
+
public static TZ = new ISOCountry(
|
|
870
|
+
968,
|
|
871
|
+
'TZ',
|
|
872
|
+
'TZA',
|
|
873
|
+
'Tanzania United Republic of',
|
|
874
|
+
'Tanzanian'
|
|
875
|
+
);
|
|
876
|
+
public static UA = new ISOCountry(972, 'UA', 'UKR', 'Ukraine', 'Ukrainian');
|
|
877
|
+
public static UG = new ISOCountry(976, 'UG', 'UGA', 'Uganda', 'Ugandan');
|
|
878
|
+
public static UM = new ISOCountry(
|
|
879
|
+
1409,
|
|
880
|
+
'UM',
|
|
881
|
+
'UMI',
|
|
882
|
+
'United States Minor Outlying Islands',
|
|
883
|
+
'United States Minor Outlying Islander'
|
|
884
|
+
);
|
|
885
|
+
public static US = new ISOCountry(
|
|
886
|
+
840,
|
|
887
|
+
'US',
|
|
888
|
+
'USA',
|
|
889
|
+
'United States of America',
|
|
890
|
+
'American'
|
|
891
|
+
);
|
|
892
|
+
public static UY = new ISOCountry(858, 'UY', 'URY', 'Uruguay', 'Uruguayan');
|
|
893
|
+
public static UZ = new ISOCountry(
|
|
894
|
+
860,
|
|
895
|
+
'UZ',
|
|
896
|
+
'UZB',
|
|
897
|
+
'Uzbekistan',
|
|
898
|
+
'Uzbekistani, Uzbek'
|
|
899
|
+
);
|
|
900
|
+
public static VA = new ISOCountry(
|
|
901
|
+
1010,
|
|
902
|
+
'VA',
|
|
903
|
+
'VAT',
|
|
904
|
+
'Holy See (Vatican City State)',
|
|
905
|
+
'Vatican'
|
|
906
|
+
);
|
|
907
|
+
public static VC = new ISOCountry(
|
|
908
|
+
841,
|
|
909
|
+
'VC',
|
|
910
|
+
'VCT',
|
|
911
|
+
'Saint Vincent and the Grenadines',
|
|
912
|
+
'Saint Vincentian, Vincentian'
|
|
913
|
+
);
|
|
914
|
+
public static VE = new ISOCountry(
|
|
915
|
+
861,
|
|
916
|
+
'VE',
|
|
917
|
+
'VEN',
|
|
918
|
+
'Venezuela',
|
|
919
|
+
'Venezuelan'
|
|
920
|
+
);
|
|
921
|
+
public static VG = new ISOCountry(
|
|
922
|
+
1024,
|
|
923
|
+
'VG',
|
|
924
|
+
'VGB',
|
|
925
|
+
'Virgin Islands British',
|
|
926
|
+
'British Virgin Islander'
|
|
927
|
+
);
|
|
928
|
+
public static VI = new ISOCountry(
|
|
929
|
+
1030,
|
|
930
|
+
'VI',
|
|
931
|
+
'VIR',
|
|
932
|
+
'Virgin Islands U.S.',
|
|
933
|
+
'U.S. Virgin Islander'
|
|
934
|
+
);
|
|
935
|
+
public static VN = new ISOCountry(978, 'VN', 'VNM', 'Viet Nam', 'Vietnamese');
|
|
936
|
+
public static VU = new ISOCountry(982, 'VU', 'VUT', 'Vanuatu', 'Vanuatuan');
|
|
937
|
+
public static WF = new ISOCountry(
|
|
938
|
+
1618,
|
|
939
|
+
'WF',
|
|
940
|
+
'WLF',
|
|
941
|
+
'Wallis and Futuna',
|
|
942
|
+
'Wallis and Futuna Islander'
|
|
943
|
+
);
|
|
944
|
+
public static WS = new ISOCountry(984, 'WS', 'WSM', 'Samoa', 'Samoan');
|
|
945
|
+
public static YE = new ISOCountry(887, 'YE', 'YEM', 'Yemen', 'Yemeni');
|
|
946
|
+
public static YT = new ISOCountry(1620, 'YT', 'MYT', 'Mayotte', 'Mahoran');
|
|
947
|
+
public static ZA = new ISOCountry(
|
|
948
|
+
990,
|
|
949
|
+
'ZA',
|
|
950
|
+
'ZAF',
|
|
951
|
+
'South Africa',
|
|
952
|
+
'South African'
|
|
953
|
+
);
|
|
954
|
+
public static ZM = new ISOCountry(894, 'ZM', 'ZMB', 'Zambia', 'Zambian');
|
|
955
|
+
public static ZW = new ISOCountry(887, 'ZW', 'ZWE', 'Zimbabwe', 'Zimbabwean');
|
|
956
|
+
public static XK = new ISOCountry(2210, 'XK', 'XKX', 'Kosovo', 'Kosovar');
|
|
957
|
+
|
|
958
|
+
public static VALUES: ISOCountry[] = [
|
|
959
|
+
ISOCountry.AW,
|
|
960
|
+
ISOCountry.AF,
|
|
961
|
+
ISOCountry.AO,
|
|
962
|
+
ISOCountry.AI,
|
|
963
|
+
ISOCountry.AX,
|
|
964
|
+
ISOCountry.AL,
|
|
965
|
+
ISOCountry.AD,
|
|
966
|
+
ISOCountry.AN,
|
|
967
|
+
ISOCountry.AE,
|
|
968
|
+
ISOCountry.AR,
|
|
969
|
+
ISOCountry.AM,
|
|
970
|
+
ISOCountry.AS,
|
|
971
|
+
ISOCountry.AQ,
|
|
972
|
+
ISOCountry.TF,
|
|
973
|
+
ISOCountry.AG,
|
|
974
|
+
ISOCountry.AU,
|
|
975
|
+
ISOCountry.AT,
|
|
976
|
+
ISOCountry.AZ,
|
|
977
|
+
ISOCountry.BI,
|
|
978
|
+
ISOCountry.BE,
|
|
979
|
+
ISOCountry.BJ,
|
|
980
|
+
ISOCountry.BF,
|
|
981
|
+
ISOCountry.BD,
|
|
982
|
+
ISOCountry.BG,
|
|
983
|
+
ISOCountry.BH,
|
|
984
|
+
ISOCountry.BS,
|
|
985
|
+
ISOCountry.BA,
|
|
986
|
+
ISOCountry.BL,
|
|
987
|
+
ISOCountry.BY,
|
|
988
|
+
ISOCountry.BZ,
|
|
989
|
+
ISOCountry.BM,
|
|
990
|
+
ISOCountry.BO,
|
|
991
|
+
ISOCountry.BR,
|
|
992
|
+
ISOCountry.BB,
|
|
993
|
+
ISOCountry.BN,
|
|
994
|
+
ISOCountry.BT,
|
|
995
|
+
ISOCountry.BV,
|
|
996
|
+
ISOCountry.BW,
|
|
997
|
+
ISOCountry.CF,
|
|
998
|
+
ISOCountry.CA,
|
|
999
|
+
ISOCountry.CC,
|
|
1000
|
+
ISOCountry.CH,
|
|
1001
|
+
ISOCountry.CL,
|
|
1002
|
+
ISOCountry.CN,
|
|
1003
|
+
ISOCountry.CI,
|
|
1004
|
+
ISOCountry.CM,
|
|
1005
|
+
ISOCountry.CD,
|
|
1006
|
+
ISOCountry.CG,
|
|
1007
|
+
ISOCountry.CK,
|
|
1008
|
+
ISOCountry.CO,
|
|
1009
|
+
ISOCountry.KM,
|
|
1010
|
+
ISOCountry.CV,
|
|
1011
|
+
ISOCountry.CR,
|
|
1012
|
+
ISOCountry.CU,
|
|
1013
|
+
ISOCountry.CX,
|
|
1014
|
+
ISOCountry.KY,
|
|
1015
|
+
ISOCountry.CY,
|
|
1016
|
+
ISOCountry.CZ,
|
|
1017
|
+
ISOCountry.DE,
|
|
1018
|
+
ISOCountry.DJ,
|
|
1019
|
+
ISOCountry.DM,
|
|
1020
|
+
ISOCountry.DK,
|
|
1021
|
+
ISOCountry.DO,
|
|
1022
|
+
ISOCountry.DZ,
|
|
1023
|
+
ISOCountry.EC,
|
|
1024
|
+
ISOCountry.EG,
|
|
1025
|
+
ISOCountry.ER,
|
|
1026
|
+
ISOCountry.EH,
|
|
1027
|
+
ISOCountry.ES,
|
|
1028
|
+
ISOCountry.EE,
|
|
1029
|
+
ISOCountry.ET,
|
|
1030
|
+
ISOCountry.FI,
|
|
1031
|
+
ISOCountry.FJ,
|
|
1032
|
+
ISOCountry.FK,
|
|
1033
|
+
ISOCountry.FR,
|
|
1034
|
+
ISOCountry.FO,
|
|
1035
|
+
ISOCountry.FM,
|
|
1036
|
+
ISOCountry.GA,
|
|
1037
|
+
ISOCountry.GB,
|
|
1038
|
+
ISOCountry.GE,
|
|
1039
|
+
ISOCountry.GG,
|
|
1040
|
+
ISOCountry.GH,
|
|
1041
|
+
ISOCountry.GI,
|
|
1042
|
+
ISOCountry.GN,
|
|
1043
|
+
ISOCountry.GP,
|
|
1044
|
+
ISOCountry.GM,
|
|
1045
|
+
ISOCountry.GW,
|
|
1046
|
+
ISOCountry.GQ,
|
|
1047
|
+
ISOCountry.GR,
|
|
1048
|
+
ISOCountry.GD,
|
|
1049
|
+
ISOCountry.GL,
|
|
1050
|
+
ISOCountry.GT,
|
|
1051
|
+
ISOCountry.GF,
|
|
1052
|
+
ISOCountry.GU,
|
|
1053
|
+
ISOCountry.GY,
|
|
1054
|
+
ISOCountry.HK,
|
|
1055
|
+
ISOCountry.HM,
|
|
1056
|
+
ISOCountry.HN,
|
|
1057
|
+
ISOCountry.HR,
|
|
1058
|
+
ISOCountry.HT,
|
|
1059
|
+
ISOCountry.HU,
|
|
1060
|
+
ISOCountry.ID,
|
|
1061
|
+
ISOCountry.IM,
|
|
1062
|
+
ISOCountry.IN,
|
|
1063
|
+
ISOCountry.IO,
|
|
1064
|
+
ISOCountry.IE,
|
|
1065
|
+
ISOCountry.IR,
|
|
1066
|
+
ISOCountry.IQ,
|
|
1067
|
+
ISOCountry.IS,
|
|
1068
|
+
ISOCountry.IL,
|
|
1069
|
+
ISOCountry.IT,
|
|
1070
|
+
ISOCountry.JM,
|
|
1071
|
+
ISOCountry.JE,
|
|
1072
|
+
ISOCountry.JO,
|
|
1073
|
+
ISOCountry.JP,
|
|
1074
|
+
ISOCountry.KZ,
|
|
1075
|
+
ISOCountry.KE,
|
|
1076
|
+
ISOCountry.KG,
|
|
1077
|
+
ISOCountry.KH,
|
|
1078
|
+
ISOCountry.KI,
|
|
1079
|
+
ISOCountry.KN,
|
|
1080
|
+
ISOCountry.KR,
|
|
1081
|
+
ISOCountry.KW,
|
|
1082
|
+
ISOCountry.LA,
|
|
1083
|
+
ISOCountry.LB,
|
|
1084
|
+
ISOCountry.LR,
|
|
1085
|
+
ISOCountry.LY,
|
|
1086
|
+
ISOCountry.LC,
|
|
1087
|
+
ISOCountry.LI,
|
|
1088
|
+
ISOCountry.LK,
|
|
1089
|
+
ISOCountry.LS,
|
|
1090
|
+
ISOCountry.LT,
|
|
1091
|
+
ISOCountry.LU,
|
|
1092
|
+
ISOCountry.LV,
|
|
1093
|
+
ISOCountry.MO,
|
|
1094
|
+
ISOCountry.MF,
|
|
1095
|
+
ISOCountry.MA,
|
|
1096
|
+
ISOCountry.MC,
|
|
1097
|
+
ISOCountry.MD,
|
|
1098
|
+
ISOCountry.MG,
|
|
1099
|
+
ISOCountry.MV,
|
|
1100
|
+
ISOCountry.MX,
|
|
1101
|
+
ISOCountry.MH,
|
|
1102
|
+
ISOCountry.MK,
|
|
1103
|
+
ISOCountry.ML,
|
|
1104
|
+
ISOCountry.MT,
|
|
1105
|
+
ISOCountry.MM,
|
|
1106
|
+
ISOCountry.ME,
|
|
1107
|
+
ISOCountry.MN,
|
|
1108
|
+
ISOCountry.MP,
|
|
1109
|
+
ISOCountry.MZ,
|
|
1110
|
+
ISOCountry.MR,
|
|
1111
|
+
ISOCountry.MS,
|
|
1112
|
+
ISOCountry.MQ,
|
|
1113
|
+
ISOCountry.MU,
|
|
1114
|
+
ISOCountry.MW,
|
|
1115
|
+
ISOCountry.MY,
|
|
1116
|
+
ISOCountry.YT,
|
|
1117
|
+
ISOCountry.NA,
|
|
1118
|
+
ISOCountry.NC,
|
|
1119
|
+
ISOCountry.NE,
|
|
1120
|
+
ISOCountry.NF,
|
|
1121
|
+
ISOCountry.NG,
|
|
1122
|
+
ISOCountry.NI,
|
|
1123
|
+
ISOCountry.NU,
|
|
1124
|
+
ISOCountry.NL,
|
|
1125
|
+
ISOCountry.NO,
|
|
1126
|
+
ISOCountry.NP,
|
|
1127
|
+
ISOCountry.NR,
|
|
1128
|
+
ISOCountry.NZ,
|
|
1129
|
+
ISOCountry.OM,
|
|
1130
|
+
ISOCountry.PK,
|
|
1131
|
+
ISOCountry.PA,
|
|
1132
|
+
ISOCountry.PN,
|
|
1133
|
+
ISOCountry.PE,
|
|
1134
|
+
ISOCountry.PH,
|
|
1135
|
+
ISOCountry.PW,
|
|
1136
|
+
ISOCountry.PG,
|
|
1137
|
+
ISOCountry.PL,
|
|
1138
|
+
ISOCountry.PR,
|
|
1139
|
+
ISOCountry.KP,
|
|
1140
|
+
ISOCountry.PT,
|
|
1141
|
+
ISOCountry.PY,
|
|
1142
|
+
ISOCountry.PS,
|
|
1143
|
+
ISOCountry.PF,
|
|
1144
|
+
ISOCountry.QA,
|
|
1145
|
+
ISOCountry.RE,
|
|
1146
|
+
ISOCountry.RO,
|
|
1147
|
+
ISOCountry.RU,
|
|
1148
|
+
ISOCountry.RW,
|
|
1149
|
+
ISOCountry.SA,
|
|
1150
|
+
ISOCountry.SD,
|
|
1151
|
+
ISOCountry.SN,
|
|
1152
|
+
ISOCountry.SG,
|
|
1153
|
+
ISOCountry.GS,
|
|
1154
|
+
ISOCountry.SH,
|
|
1155
|
+
ISOCountry.SJ,
|
|
1156
|
+
ISOCountry.SB,
|
|
1157
|
+
ISOCountry.SL,
|
|
1158
|
+
ISOCountry.SV,
|
|
1159
|
+
ISOCountry.SM,
|
|
1160
|
+
ISOCountry.SO,
|
|
1161
|
+
ISOCountry.PM,
|
|
1162
|
+
ISOCountry.RS,
|
|
1163
|
+
ISOCountry.ST,
|
|
1164
|
+
ISOCountry.SR,
|
|
1165
|
+
ISOCountry.SK,
|
|
1166
|
+
ISOCountry.SI,
|
|
1167
|
+
ISOCountry.SE,
|
|
1168
|
+
ISOCountry.SZ,
|
|
1169
|
+
ISOCountry.SC,
|
|
1170
|
+
ISOCountry.SY,
|
|
1171
|
+
ISOCountry.TC,
|
|
1172
|
+
ISOCountry.TD,
|
|
1173
|
+
ISOCountry.TG,
|
|
1174
|
+
ISOCountry.TH,
|
|
1175
|
+
ISOCountry.TJ,
|
|
1176
|
+
ISOCountry.TK,
|
|
1177
|
+
ISOCountry.TM,
|
|
1178
|
+
ISOCountry.TL,
|
|
1179
|
+
ISOCountry.TO,
|
|
1180
|
+
ISOCountry.TT,
|
|
1181
|
+
ISOCountry.TN,
|
|
1182
|
+
ISOCountry.TR,
|
|
1183
|
+
ISOCountry.TV,
|
|
1184
|
+
ISOCountry.TW,
|
|
1185
|
+
ISOCountry.TZ,
|
|
1186
|
+
ISOCountry.UG,
|
|
1187
|
+
ISOCountry.UA,
|
|
1188
|
+
ISOCountry.UM,
|
|
1189
|
+
ISOCountry.UY,
|
|
1190
|
+
ISOCountry.US,
|
|
1191
|
+
ISOCountry.UZ,
|
|
1192
|
+
ISOCountry.VA,
|
|
1193
|
+
ISOCountry.VC,
|
|
1194
|
+
ISOCountry.VE,
|
|
1195
|
+
ISOCountry.VG,
|
|
1196
|
+
ISOCountry.VI,
|
|
1197
|
+
ISOCountry.VN,
|
|
1198
|
+
ISOCountry.VU,
|
|
1199
|
+
ISOCountry.WF,
|
|
1200
|
+
ISOCountry.WS,
|
|
1201
|
+
ISOCountry.YE,
|
|
1202
|
+
ISOCountry.ZA,
|
|
1203
|
+
ISOCountry.ZM,
|
|
1204
|
+
ISOCountry.ZW,
|
|
1205
|
+
];
|
|
1206
|
+
|
|
1207
|
+
private code: number;
|
|
1208
|
+
private alpha2Code: string;
|
|
1209
|
+
private alpha3Code: string;
|
|
1210
|
+
private name: string;
|
|
1211
|
+
private nationality: string;
|
|
1212
|
+
|
|
1213
|
+
constructor(
|
|
1214
|
+
code: number,
|
|
1215
|
+
alpha2Code: string,
|
|
1216
|
+
alpha3Code: string,
|
|
1217
|
+
name: string,
|
|
1218
|
+
nationality: string
|
|
1219
|
+
) {
|
|
1220
|
+
super();
|
|
1221
|
+
this.code = code;
|
|
1222
|
+
this.alpha2Code = alpha2Code;
|
|
1223
|
+
this.alpha3Code = alpha3Code;
|
|
1224
|
+
this.name = name;
|
|
1225
|
+
this.nationality = nationality;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
public valueOf(): number {
|
|
1229
|
+
return this.code;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
public getName(): string {
|
|
1233
|
+
return this.name;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
public getNationality(): string {
|
|
1237
|
+
return this.nationality;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
public toString(): string {
|
|
1241
|
+
return this.alpha2Code;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
public toAlpha2Code(): string {
|
|
1245
|
+
return this.alpha2Code;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
public toAlpha3Code(): string {
|
|
1249
|
+
return this.alpha3Code;
|
|
1250
|
+
}
|
|
1251
|
+
}
|